]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
quickly, before anyone notices ... minor speed enhancement (aka, thinko)
[Evergreen.git] / Open-ILS / src / sql / Pg / 1.6.1-2.0-upgrade-db.sql
1 -- Before starting the transaction: drop some constraints that
2 -- may or may not exist.
3
4 CREATE OR REPLACE FUNCTION oils_text_as_bytea (TEXT) RETURNS BYTEA AS $_$
5     SELECT CAST(REGEXP_REPLACE(UPPER($1), $$\\$$, $$\\\\$$, 'g') AS BYTEA);
6 $_$ LANGUAGE SQL IMMUTABLE;
7
8 DROP INDEX asset.asset_call_number_upper_label_id_owning_lib_idx;
9 CREATE INDEX asset_call_number_upper_label_id_owning_lib_idx ON asset.call_number (oils_text_as_bytea(label),id,owning_lib);
10
11 \qecho Before starting the transaction: drop some constraints.
12 \qecho If a DROP fails because the constraint doesn't exist, ignore the failure.
13
14 ALTER TABLE permission.grp_perm_map        DROP CONSTRAINT grp_perm_map_perm_fkey;
15 ALTER TABLE permission.usr_perm_map        DROP CONSTRAINT usr_perm_map_perm_fkey;
16 ALTER TABLE permission.usr_object_perm_map DROP CONSTRAINT usr_object_perm_map_perm_fkey;
17 ALTER TABLE booking.resource_type          DROP CONSTRAINT brt_name_or_record_once_per_owner;
18 ALTER TABLE booking.resource_type          DROP CONSTRAINT brt_name_once_per_owner;
19
20 \qecho Beginning the transaction now
21
22 BEGIN;
23
24 -- Highest-numbered individual upgrade script incorporated herein:
25
26 INSERT INTO config.upgrade_log (version) VALUES ('0445');
27
28 -- Remove some uses of the connectby() function from the tablefunc contrib module
29 CREATE OR REPLACE FUNCTION actor.org_unit_descendants( INT, INT ) RETURNS SETOF actor.org_unit AS $$
30     WITH RECURSIVE descendant_depth AS (
31         SELECT  ou.id,
32                 ou.parent_ou,
33                 out.depth
34           FROM  actor.org_unit ou
35                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
36                 JOIN anscestor_depth ad ON (ad.id = ou.id)
37           WHERE ad.depth = $2
38             UNION ALL
39         SELECT  ou.id,
40                 ou.parent_ou,
41                 out.depth
42           FROM  actor.org_unit ou
43                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
44                 JOIN descendant_depth ot ON (ot.id = ou.parent_ou)
45     ), anscestor_depth AS (
46         SELECT  ou.id,
47                 ou.parent_ou,
48                 out.depth
49           FROM  actor.org_unit ou
50                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
51           WHERE ou.id = $1
52             UNION ALL
53         SELECT  ou.id,
54                 ou.parent_ou,
55                 out.depth
56           FROM  actor.org_unit ou
57                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
58                 JOIN anscestor_depth ot ON (ot.parent_ou = ou.id)
59     ) SELECT ou.* FROM actor.org_unit ou JOIN descendant_depth USING (id);
60 $$ LANGUAGE SQL;
61
62 CREATE OR REPLACE FUNCTION actor.org_unit_descendants( INT ) RETURNS SETOF actor.org_unit AS $$
63     WITH RECURSIVE descendant_depth AS (
64         SELECT  ou.id,
65                 ou.parent_ou,
66                 out.depth
67           FROM  actor.org_unit ou
68                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
69           WHERE ou.id = $1
70             UNION ALL
71         SELECT  ou.id,
72                 ou.parent_ou,
73                 out.depth
74           FROM  actor.org_unit ou
75                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
76                 JOIN descendant_depth ot ON (ot.id = ou.parent_ou)
77     ) SELECT ou.* FROM actor.org_unit ou JOIN descendant_depth USING (id);
78 $$ LANGUAGE SQL;
79
80 CREATE OR REPLACE FUNCTION actor.org_unit_ancestors( INT ) RETURNS SETOF actor.org_unit AS $$
81     WITH RECURSIVE anscestor_depth AS (
82         SELECT  ou.id,
83                 ou.parent_ou
84           FROM  actor.org_unit ou
85           WHERE ou.id = $1
86             UNION ALL
87         SELECT  ou.id,
88                 ou.parent_ou
89           FROM  actor.org_unit ou
90                 JOIN anscestor_depth ot ON (ot.parent_ou = ou.id)
91     ) SELECT ou.* FROM actor.org_unit ou JOIN anscestor_depth USING (id);
92 $$ LANGUAGE SQL;
93
94 -- Support merge template buckets
95 INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('template_merge','Template Merge Container');
96
97 -- Recreate one of the constraints that we just dropped,
98 -- under a different name:
99
100 ALTER TABLE booking.resource_type
101         ADD CONSTRAINT brt_name_and_record_once_per_owner UNIQUE(owner, name, record);
102
103 -- Now upgrade permission.perm_list.  This is fairly complicated.
104
105 -- Add ON UPDATE CASCADE to some foreign keys so that, when we renumber the
106 -- permissions, the dependents will follow and stay in sync:
107
108 ALTER TABLE permission.grp_perm_map ADD CONSTRAINT grp_perm_map_perm_fkey FOREIGN KEY (perm)
109     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
110
111 ALTER TABLE permission.usr_perm_map ADD CONSTRAINT usr_perm_map_perm_fkey FOREIGN KEY (perm)
112     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
113
114 ALTER TABLE permission.usr_object_perm_map ADD CONSTRAINT usr_object_perm_map_perm_fkey FOREIGN KEY (perm)
115     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
116
117 UPDATE permission.perm_list
118     SET code = 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow'
119     WHERE code = 'UPDATE_ORG_UNIT_SETTING.global.credit.allow';
120
121 -- The following UPDATES were originally in an individual upgrade script, but should
122 -- no longer be necessary now that the foreign key has an ON UPDATE CASCADE clause.
123 -- We retain the UPDATES here, commented out, as historical relics.
124
125 -- UPDATE permission.grp_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
126 -- UPDATE permission.usr_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
127
128 -- Spelling correction
129 UPDATE permission.perm_list SET code = 'ADMIN_RECURRING_FINE_RULE' WHERE code = 'ADMIN_RECURING_FINE_RULE';
130
131 -- Now we engage in a Great Renumbering of the permissions in permission.perm_list,
132 -- in order to clean up accumulated cruft.
133
134 -- The first step is to establish some triggers so that, when we change the id of a permission,
135 -- the associated translations are updated accordingly.
136
137 CREATE OR REPLACE FUNCTION oils_i18n_update_apply(old_ident TEXT, new_ident TEXT, hint TEXT) RETURNS VOID AS $_$
138 BEGIN
139
140     EXECUTE $$
141         UPDATE  config.i18n_core
142           SET   identity_value = $$ || quote_literal( new_ident ) || $$ 
143           WHERE fq_field LIKE '$$ || hint || $$.%' 
144                 AND identity_value = $$ || quote_literal( old_ident ) || $$;$$;
145
146     RETURN;
147
148 END;
149 $_$ LANGUAGE PLPGSQL;
150
151 CREATE OR REPLACE FUNCTION oils_i18n_id_tracking(/* hint */) RETURNS TRIGGER AS $_$
152 BEGIN
153     PERFORM oils_i18n_update_apply( OLD.id::TEXT, NEW.id::TEXT, TG_ARGV[0]::TEXT );
154     RETURN NEW;
155 END;
156 $_$ LANGUAGE PLPGSQL;
157
158 CREATE OR REPLACE FUNCTION oils_i18n_code_tracking(/* hint */) RETURNS TRIGGER AS $_$
159 BEGIN
160     PERFORM oils_i18n_update_apply( OLD.code::TEXT, NEW.code::TEXT, TG_ARGV[0]::TEXT );
161     RETURN NEW;
162 END;
163 $_$ LANGUAGE PLPGSQL;
164
165
166 CREATE TRIGGER maintain_perm_i18n_tgr
167     AFTER UPDATE ON permission.perm_list
168     FOR EACH ROW EXECUTE PROCEDURE oils_i18n_id_tracking('ppl');
169
170 -- Next, create a new table as a convenience for sloshing data back and forth,
171 -- and for recording which permission went where.  It looks just like
172 -- permission.perm_list, but with two extra columns: one for the old id, and one to
173 -- distinguish between predefined permissions and non-predefined permissions.
174
175 -- This table is, in effect, a temporary table, because we can drop it once the
176 -- upgrade is complete.  It is not technically temporary as far as PostgreSQL is
177 -- concerned, because we don't want it to disappear at the end of the session.
178 -- We keep it around so that we have a map showing the old id and the new id for
179 -- each permission.  However there is no IDL entry for it, nor is it defined
180 -- in the base sql files.
181
182 CREATE TABLE permission.temp_perm (
183         id          INT        PRIMARY KEY,
184         code        TEXT       UNIQUE,
185         description TEXT,
186         old_id      INT,
187         predefined  BOOL       NOT NULL DEFAULT TRUE
188 );
189
190 -- Populate the temp table with a definitive set of predefined permissions,
191 -- hard-coding the ids.
192
193 -- The first set of permissions is derived from the database, as loaded in a
194 -- loaded 1.6.1 database, plus a few changes previously applied in this upgrade
195 -- script.  The second set is derived from the IDL -- permissions that are referenced
196 -- in <permacrud> elements but not defined in the database.
197
198 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( -1, 'EVERYTHING',
199      '' );
200 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 1, 'OPAC_LOGIN',
201      'Allow a user to log in to the OPAC' );
202 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 2, 'STAFF_LOGIN',
203      'Allow a user to log in to the staff client' );
204 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 3, 'MR_HOLDS',
205      'Allow a user to create a metarecord holds' );
206 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 4, 'TITLE_HOLDS',
207      'Allow a user to place a hold at the title level' );
208 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 5, 'VOLUME_HOLDS',
209      'Allow a user to place a volume level hold' );
210 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 6, 'COPY_HOLDS',
211      'Allow a user to place a hold on a specific copy' );
212 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 7, 'REQUEST_HOLDS',
213      '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)' );
214 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 8, 'REQUEST_HOLDS_OVERRIDE',
215      '* no longer applicable' );
216 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 9, 'VIEW_HOLD',
217      'Allow a user to view another user''s holds' );
218 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 10, 'DELETE_HOLDS',
219      '* no longer applicable' );
220 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 11, 'UPDATE_HOLD',
221      'Allow a user to update another user''s hold' );
222 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 12, 'RENEW_CIRC',
223      'Allow a user to renew items' );
224 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 13, 'VIEW_USER_FINES_SUMMARY',
225      'Allow a user to view bill details' );
226 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 14, 'VIEW_USER_TRANSACTIONS',
227      'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION' );
228 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 15, 'UPDATE_MARC',
229      'Allow a user to edit a MARC record' );
230 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 16, 'CREATE_MARC',
231      'Allow a user to create new MARC records' );
232 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 17, 'IMPORT_MARC',
233      'Allow a user to import a MARC record via the Z39.50 interface' );
234 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 18, 'CREATE_VOLUME',
235      'Allow a user to create a volume' );
236 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 19, 'UPDATE_VOLUME',
237      '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.' );
238 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 20, 'DELETE_VOLUME',
239      'Allow a user to delete a volume' );
240 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 21, 'CREATE_COPY',
241      'Allow a user to create a new copy object' );
242 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 22, 'UPDATE_COPY',
243      'Allow a user to edit a copy' );
244 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 23, 'DELETE_COPY',
245      'Allow a user to delete a copy' );
246 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 24, 'RENEW_HOLD_OVERRIDE',
247      'Allow a user to continue to renew an item even if it is required for a hold' );
248 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 25, 'CREATE_USER',
249      'Allow a user to create another user' );
250 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 26, 'UPDATE_USER',
251      'Allow a user to edit a user''s record' );
252 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 27, 'DELETE_USER',
253      'Allow a user to mark a user as deleted' );
254 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 28, 'VIEW_USER',
255      'Allow a user to view another user''s Patron Record' );
256 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 29, 'COPY_CHECKIN',
257      'Allow a user to check in a copy' );
258 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 30, 'CREATE_TRANSIT',
259      'Allow a user to place an item in transit' );
260 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 31, 'VIEW_PERMISSION',
261      'Allow a user to view user permissions within the user permissions editor' );
262 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL',
263      '* no longer applicable' );
264 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 33, 'CREATE_PAYMENT',
265      'Allow a user to record payments in the Billing Interface' );
266 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 34, 'SET_CIRC_LOST',
267      'Allow a user to mark an item as ''lost''' );
268 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 35, 'SET_CIRC_MISSING',
269      'Allow a user to mark an item as ''missing''' );
270 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 36, 'SET_CIRC_CLAIMS_RETURNED',
271      'Allow a user to mark an item as ''claims returned''' );
272 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 37, 'CREATE_TRANSACTION',
273      'Allow a user to create a new billable transaction' );
274 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 38, 'VIEW_TRANSACTION',
275      'Allow a user may view another user''s transactions' );
276 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 39, 'CREATE_BILL',
277      'Allow a user to create a new bill on a transaction' );
278 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 40, 'VIEW_CONTAINER',
279      'Allow a user to view another user''s containers (buckets)' );
280 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 41, 'CREATE_CONTAINER',
281      'Allow a user to create a new container for another user' );
282 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 42, 'UPDATE_ORG_UNIT',
283      'Allow a user to change the settings for an organization unit' );
284 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 43, 'VIEW_CIRCULATIONS',
285      'Allow a user to see what another user has checked out' );
286 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 44, 'DELETE_CONTAINER',
287      'Allow a user to delete another user''s container' );
288 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 45, 'CREATE_CONTAINER_ITEM',
289      'Allow a user to create a container item for another user' );
290 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 46, 'CREATE_USER_GROUP_LINK',
291      'Allow a user to add other users to permission groups' );
292 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 47, 'REMOVE_USER_GROUP_LINK',
293      'Allow a user to remove other users from permission groups' );
294 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 48, 'VIEW_PERM_GROUPS',
295      'Allow a user to view other users'' permission groups' );
296 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 49, 'VIEW_PERMIT_CHECKOUT',
297      'Allow a user to determine whether another user can check out an item' );
298 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 50, 'UPDATE_BATCH_COPY',
299      'Allow a user to edit copies in batch' );
300 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 51, 'CREATE_PATRON_STAT_CAT',
301      'User may create a new patron statistical category' );
302 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 52, 'CREATE_COPY_STAT_CAT',
303      'User may create a copy statistical category' );
304 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY',
305      'User may create an entry in a patron statistical category' );
306 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 54, 'CREATE_COPY_STAT_CAT_ENTRY',
307      'User may create an entry in a copy statistical category' );
308 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 55, 'UPDATE_PATRON_STAT_CAT',
309      'User may update a patron statistical category' );
310 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 56, 'UPDATE_COPY_STAT_CAT',
311      'User may update a copy statistical category' );
312 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY',
313      'User may update an entry in a patron statistical category' );
314 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY',
315      'User may update an entry in a copy statistical category' );
316 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
317      'User may link another user to an entry in a statistical category' );
318 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP',
319      'User may link a copy to an entry in a statistical category' );
320 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 61, 'DELETE_PATRON_STAT_CAT',
321      'User may delete a patron statistical category' );
322 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 62, 'DELETE_COPY_STAT_CAT',
323      'User may delete a copy statistical category' );
324 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY',
325      'User may delete an entry from a patron statistical category' );
326 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 64, 'DELETE_COPY_STAT_CAT_ENTRY',
327      'User may delete an entry from a copy statistical category' );
328 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
329      'User may delete a patron statistical category entry map' );
330 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP',
331      'User may delete a copy statistical category entry map' );
332 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 67, 'CREATE_NON_CAT_TYPE',
333      'Allow a user to create a new non-cataloged item type' );
334 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 68, 'UPDATE_NON_CAT_TYPE',
335      'Allow a user to update a non-cataloged item type' );
336 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 69, 'CREATE_IN_HOUSE_USE',
337      'Allow a user to create a new in-house-use ' );
338 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 70, 'COPY_CHECKOUT',
339      'Allow a user to check out a copy' );
340 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 71, 'CREATE_COPY_LOCATION',
341      'Allow a user to create a new copy location' );
342 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 72, 'UPDATE_COPY_LOCATION',
343      'Allow a user to update a copy location' );
344 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 73, 'DELETE_COPY_LOCATION',
345      'Allow a user to delete a copy location' );
346 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 74, 'CREATE_COPY_TRANSIT',
347      'Allow a user to create a transit_copy object for transiting a copy' );
348 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 75, 'COPY_TRANSIT_RECEIVE',
349      'Allow a user to close out a transit on a copy' );
350 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 76, 'VIEW_HOLD_PERMIT',
351      'Allow a user to see if another user has permission to place a hold on a given copy' );
352 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 77, 'VIEW_COPY_CHECKOUT_HISTORY',
353      'Allow a user to view which users have checked out a given copy' );
354 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 78, 'REMOTE_Z3950_QUERY',
355      'Allow a user to perform Z39.50 queries against remote servers' );
356 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 79, 'REGISTER_WORKSTATION',
357      'Allow a user to register a new workstation' );
358 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 80, 'VIEW_COPY_NOTES',
359      'Allow a user to view all notes attached to a copy' );
360 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 81, 'VIEW_VOLUME_NOTES',
361      'Allow a user to view all notes attached to a volume' );
362 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 82, 'VIEW_TITLE_NOTES',
363      'Allow a user to view all notes attached to a title' );
364 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 83, 'CREATE_COPY_NOTE',
365      'Allow a user to create a new copy note' );
366 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 84, 'CREATE_VOLUME_NOTE',
367      'Allow a user to create a new volume note' );
368 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 85, 'CREATE_TITLE_NOTE',
369      'Allow a user to create a new title note' );
370 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 86, 'DELETE_COPY_NOTE',
371      'Allow a user to delete another user''s copy notes' );
372 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 87, 'DELETE_VOLUME_NOTE',
373      'Allow a user to delete another user''s volume note' );
374 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 88, 'DELETE_TITLE_NOTE',
375      'Allow a user to delete another user''s title note' );
376 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 89, 'UPDATE_CONTAINER',
377      'Allow a user to update another user''s container' );
378 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 90, 'CREATE_MY_CONTAINER',
379      'Allow a user to create a container for themselves' );
380 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 91, 'VIEW_HOLD_NOTIFICATION',
381      'Allow a user to view notifications attached to a hold' );
382 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 92, 'CREATE_HOLD_NOTIFICATION',
383      'Allow a user to create new hold notifications' );
384 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 93, 'UPDATE_ORG_SETTING',
385      'Allow a user to update an organization unit setting' );
386 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 94, 'OFFLINE_UPLOAD',
387      'Allow a user to upload an offline script' );
388 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 95, 'OFFLINE_VIEW',
389      'Allow a user to view uploaded offline script information' );
390 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 96, 'OFFLINE_EXECUTE',
391      'Allow a user to execute an offline script batch' );
392 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 97, 'CIRC_OVERRIDE_DUE_DATE',
393      'Allow a user to change the due date on an item to any date' );
394 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 98, 'CIRC_PERMIT_OVERRIDE',
395      'Allow a user to bypass the circulation permit call for check out' );
396 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 99, 'COPY_IS_REFERENCE.override',
397      'Allow a user to override the copy_is_reference event' );
398 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 100, 'VOID_BILLING',
399      'Allow a user to void a bill' );
400 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 101, 'CIRC_CLAIMS_RETURNED.override',
401      'Allow a user to check in or check out an item that has a status of ''claims returned''' );
402 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 102, 'COPY_BAD_STATUS.override',
403      'Allow a user to check out an item in a non-circulatable status' );
404 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 103, 'COPY_ALERT_MESSAGE.override',
405      'Allow a user to check in/out an item that has an alert message' );
406 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 104, 'COPY_STATUS_LOST.override',
407      'Allow a user to remove the lost status from a copy' );
408 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 105, 'COPY_STATUS_MISSING.override',
409      'Allow a user to change the missing status on a copy' );
410 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 106, 'ABORT_TRANSIT',
411      'Allow a user to abort a copy transit if the user is at the transit destination or source' );
412 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 107, 'ABORT_REMOTE_TRANSIT',
413      'Allow a user to abort a copy transit if the user is not at the transit source or dest' );
414 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 108, 'VIEW_ZIP_DATA',
415      'Allow a user to query the ZIP code data method' );
416 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 109, 'CANCEL_HOLDS',
417      'Allow a user to cancel holds' );
418 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 110, 'CREATE_DUPLICATE_HOLDS',
419      'Allow a user to create duplicate holds (two or more holds on the same title)' );
420 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 111, 'actor.org_unit.closed_date.delete',
421      'Allow a user to remove a closed date interval for a given location' );
422 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 112, 'actor.org_unit.closed_date.update',
423      'Allow a user to update a closed date interval for a given location' );
424 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 113, 'actor.org_unit.closed_date.create',
425      'Allow a user to create a new closed date for a location' );
426 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 114, 'DELETE_NON_CAT_TYPE',
427      'Allow a user to delete a non cataloged type' );
428 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 115, 'money.collections_tracker.create',
429      'Allow a user to put someone into collections' );
430 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 116, 'money.collections_tracker.delete',
431      'Allow a user to remove someone from collections' );
432 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 117, 'BAR_PATRON',
433      'Allow a user to bar a patron' );
434 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 118, 'UNBAR_PATRON',
435      'Allow a user to un-bar a patron' );
436 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 119, 'DELETE_WORKSTATION',
437      'Allow a user to remove an existing workstation so a new one can replace it' );
438 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 120, 'group_application.user',
439      'Allow a user to add/remove users to/from the "User" group' );
440 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 121, 'group_application.user.patron',
441      'Allow a user to add/remove users to/from the "Patron" group' );
442 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 122, 'group_application.user.staff',
443      'Allow a user to add/remove users to/from the "Staff" group' );
444 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 123, 'group_application.user.staff.circ',
445      'Allow a user to add/remove users to/from the "Circulator" group' );
446 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 124, 'group_application.user.staff.cat',
447      'Allow a user to add/remove users to/from the "Cataloger" group' );
448 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 125, 'group_application.user.staff.admin.global_admin',
449      'Allow a user to add/remove users to/from the "GlobalAdmin" group' );
450 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 126, 'group_application.user.staff.admin.local_admin',
451      'Allow a user to add/remove users to/from the "LocalAdmin" group' );
452 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 127, 'group_application.user.staff.admin.lib_manager',
453      'Allow a user to add/remove users to/from the "LibraryManager" group' );
454 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 128, 'group_application.user.staff.cat.cat1',
455      'Allow a user to add/remove users to/from the "Cat1" group' );
456 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 129, 'group_application.user.staff.supercat',
457      'Allow a user to add/remove users to/from the "Supercat" group' );
458 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 130, 'group_application.user.sip_client',
459      'Allow a user to add/remove users to/from the "SIP-Client" group' );
460 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 131, 'group_application.user.vendor',
461      'Allow a user to add/remove users to/from the "Vendor" group' );
462 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 132, 'ITEM_AGE_PROTECTED.override',
463      'Allow a user to place a hold on an age-protected item' );
464 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 133, 'MAX_RENEWALS_REACHED.override',
465      'Allow a user to renew an item past the maximum renewal count' );
466 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
467      'Allow staff to override checkout count failure' );
468 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override',
469      'Allow staff to override overdue count failure' );
470 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 136, 'PATRON_EXCEEDS_FINES.override',
471      'Allow staff to override fine amount checkout failure' );
472 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override',
473      'Allow staff to override circulation copy range failure' );
474 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 138, 'ITEM_ON_HOLDS_SHELF.override',
475      'Allow staff to override item on holds shelf failure' );
476 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 139, 'COPY_NOT_AVAILABLE.override',
477      'Allow staff to force checkout of Missing/Lost type items' );
478 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 140, 'HOLD_EXISTS.override',
479      'Allow a user to place multiple holds on a single title' );
480 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 141, 'RUN_REPORTS',
481      'Allow a user to run reports' );
482 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 142, 'SHARE_REPORT_FOLDER',
483      'Allow a user to share report his own folders' );
484 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 143, 'VIEW_REPORT_OUTPUT',
485      'Allow a user to view report output' );
486 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 144, 'COPY_CIRC_NOT_ALLOWED.override',
487      'Allow a user to checkout an item that is marked as non-circ' );
488 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 145, 'DELETE_CONTAINER_ITEM',
489      'Allow a user to delete an item out of another user''s container' );
490 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 146, 'ASSIGN_WORK_ORG_UNIT',
491      'Allow a staff member to define where another staff member has their permissions' );
492 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 147, 'CREATE_FUNDING_SOURCE',
493      'Allow a user to create a new funding source' );
494 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 148, 'DELETE_FUNDING_SOURCE',
495      'Allow a user to delete a funding source' );
496 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 149, 'VIEW_FUNDING_SOURCE',
497      'Allow a user to view a funding source' );
498 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 150, 'UPDATE_FUNDING_SOURCE',
499      'Allow a user to update a funding source' );
500 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 151, 'CREATE_FUND',
501      'Allow a user to create a new fund' );
502 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 152, 'DELETE_FUND',
503      'Allow a user to delete a fund' );
504 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 153, 'VIEW_FUND',
505      'Allow a user to view a fund' );
506 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 154, 'UPDATE_FUND',
507      'Allow a user to update a fund' );
508 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 155, 'CREATE_FUND_ALLOCATION',
509      'Allow a user to create a new fund allocation' );
510 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 156, 'DELETE_FUND_ALLOCATION',
511      'Allow a user to delete a fund allocation' );
512 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 157, 'VIEW_FUND_ALLOCATION',
513      'Allow a user to view a fund allocation' );
514 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 158, 'UPDATE_FUND_ALLOCATION',
515      'Allow a user to update a fund allocation' );
516 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 159, 'GENERAL_ACQ',
517      'Lowest level permission required to access the ACQ interface' );
518 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 160, 'CREATE_PROVIDER',
519      'Allow a user to create a new provider' );
520 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 161, 'DELETE_PROVIDER',
521      'Allow a user to delate a provider' );
522 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 162, 'VIEW_PROVIDER',
523      'Allow a user to view a provider' );
524 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 163, 'UPDATE_PROVIDER',
525      'Allow a user to update a provider' );
526 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 164, 'ADMIN_FUNDING_SOURCE',
527      'Allow a user to create/view/update/delete a funding source' );
528 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 165, 'ADMIN_FUND',
529      '(Deprecated) Allow a user to create/view/update/delete a fund' );
530 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 166, 'MANAGE_FUNDING_SOURCE',
531      'Allow a user to view/credit/debit a funding source' );
532 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 167, 'MANAGE_FUND',
533      'Allow a user to view/credit/debit a fund' );
534 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 168, 'CREATE_PICKLIST',
535      'Allows a user to create a picklist' );
536 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 169, 'ADMIN_PROVIDER',
537      'Allow a user to create/view/update/delete a provider' );
538 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 170, 'MANAGE_PROVIDER',
539      'Allow a user to view and purchase from a provider' );
540 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 171, 'VIEW_PICKLIST',
541      'Allow a user to view another users picklist' );
542 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 172, 'DELETE_RECORD',
543      'Allow a staff member to directly remove a bibliographic record' );
544 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 173, 'ADMIN_CURRENCY_TYPE',
545      'Allow a user to create/view/update/delete a currency_type' );
546 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 174, 'MARK_BAD_DEBT',
547      'Allow a user to mark a transaction as bad (unrecoverable) debt' );
548 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 175, 'VIEW_BILLING_TYPE',
549      'Allow a user to view billing types' );
550 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 176, 'MARK_ITEM_AVAILABLE',
551      'Allow a user to mark an item status as ''available''' );
552 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 177, 'MARK_ITEM_CHECKED_OUT',
553      'Allow a user to mark an item status as ''checked out''' );
554 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 178, 'MARK_ITEM_BINDERY',
555      'Allow a user to mark an item status as ''bindery''' );
556 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 179, 'MARK_ITEM_LOST',
557      'Allow a user to mark an item status as ''lost''' );
558 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 180, 'MARK_ITEM_MISSING',
559      'Allow a user to mark an item status as ''missing''' );
560 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 181, 'MARK_ITEM_IN_PROCESS',
561      'Allow a user to mark an item status as ''in process''' );
562 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 182, 'MARK_ITEM_IN_TRANSIT',
563      'Allow a user to mark an item status as ''in transit''' );
564 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 183, 'MARK_ITEM_RESHELVING',
565      'Allow a user to mark an item status as ''reshelving''' );
566 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 184, 'MARK_ITEM_ON_HOLDS_SHELF',
567      'Allow a user to mark an item status as ''on holds shelf''' );
568 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 185, 'MARK_ITEM_ON_ORDER',
569      'Allow a user to mark an item status as ''on order''' );
570 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 186, 'MARK_ITEM_ILL',
571      'Allow a user to mark an item status as ''inter-library loan''' );
572 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 187, 'group_application.user.staff.acq',
573      'Allows a user to add/remove/edit users in the "ACQ" group' );
574 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 188, 'CREATE_PURCHASE_ORDER',
575      'Allows a user to create a purchase order' );
576 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 189, 'VIEW_PURCHASE_ORDER',
577      'Allows a user to view a purchase order' );
578 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
579      'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set' );
580 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 191, 'RECEIVE_PURCHASE_ORDER',
581      'Allows a user to mark a purchase order, lineitem, or individual copy as received' );
582 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 192, 'VIEW_ORG_SETTINGS',
583      'Allows a user to view all org settings at the specified level' );
584 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 193, 'CREATE_MFHD_RECORD',
585      'Allows a user to create a new MFHD record' );
586 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 194, 'UPDATE_MFHD_RECORD',
587      'Allows a user to update an MFHD record' );
588 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 195, 'DELETE_MFHD_RECORD',
589      'Allows a user to delete an MFHD record' );
590 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 196, 'ADMIN_ACQ_FUND',
591      'Allow a user to create/view/update/delete a fund' );
592 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 197, 'group_application.user.staff.acq_admin',
593      'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group' );
594 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 198, 'SET_CIRC_CLAIMS_RETURNED.override',
595      'Allows staff to override the max claims returned value for a patron' );
596 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
597      'Allows staff to manually change a patron''s claims returned count' );
598 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 200, 'UPDATE_BILL_NOTE',
599      'Allows staff to edit the note for a bill on a transaction' );
600 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 201, 'UPDATE_PAYMENT_NOTE',
601      'Allows staff to edit the note for a payment on a transaction' );
602 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
603      'Allows staff to manually change a patron''s claims never checkout out count' );
604 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 203, 'ADMIN_COPY_LOCATION_ORDER',
605      'Allow a user to create/view/update/delete a copy location order' );
606 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 204, 'ASSIGN_GROUP_PERM',
607      '' );
608 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 205, 'CREATE_AUDIENCE',
609      '' );
610 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 206, 'CREATE_BIB_LEVEL',
611      '' );
612 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 207, 'CREATE_CIRC_DURATION',
613      '' );
614 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 208, 'CREATE_CIRC_MOD',
615      '' );
616 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 209, 'CREATE_COPY_STATUS',
617      '' );
618 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 210, 'CREATE_HOURS_OF_OPERATION',
619      '' );
620 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 211, 'CREATE_ITEM_FORM',
621      '' );
622 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 212, 'CREATE_ITEM_TYPE',
623      '' );
624 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 213, 'CREATE_LANGUAGE',
625      '' );
626 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 214, 'CREATE_LASSO',
627      '' );
628 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 215, 'CREATE_LASSO_MAP',
629      '' );
630 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 216, 'CREATE_LIT_FORM',
631      '' );
632 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 217, 'CREATE_METABIB_FIELD',
633      '' );
634 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 218, 'CREATE_NET_ACCESS_LEVEL',
635      '' );
636 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 219, 'CREATE_ORG_ADDRESS',
637      '' );
638 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 220, 'CREATE_ORG_TYPE',
639      '' );
640 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 221, 'CREATE_ORG_UNIT',
641      '' );
642 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 222, 'CREATE_ORG_UNIT_CLOSING',
643      '' );
644 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 223, 'CREATE_PERM',
645      '' );
646 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 224, 'CREATE_RELEVANCE_ADJUSTMENT',
647      '' );
648 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 225, 'CREATE_SURVEY',
649      '' );
650 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 226, 'CREATE_VR_FORMAT',
651      '' );
652 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 227, 'CREATE_XML_TRANSFORM',
653      '' );
654 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 228, 'DELETE_AUDIENCE',
655      '' );
656 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 229, 'DELETE_BIB_LEVEL',
657      '' );
658 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 230, 'DELETE_CIRC_DURATION',
659      '' );
660 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 231, 'DELETE_CIRC_MOD',
661      '' );
662 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 232, 'DELETE_COPY_STATUS',
663      '' );
664 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 233, 'DELETE_HOURS_OF_OPERATION',
665      '' );
666 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 234, 'DELETE_ITEM_FORM',
667      '' );
668 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 235, 'DELETE_ITEM_TYPE',
669      '' );
670 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 236, 'DELETE_LANGUAGE',
671      '' );
672 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 237, 'DELETE_LASSO',
673      '' );
674 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 238, 'DELETE_LASSO_MAP',
675      '' );
676 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 239, 'DELETE_LIT_FORM',
677      '' );
678 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 240, 'DELETE_METABIB_FIELD',
679      '' );
680 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 241, 'DELETE_NET_ACCESS_LEVEL',
681      '' );
682 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 242, 'DELETE_ORG_ADDRESS',
683      '' );
684 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 243, 'DELETE_ORG_TYPE',
685      '' );
686 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 244, 'DELETE_ORG_UNIT',
687      '' );
688 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 245, 'DELETE_ORG_UNIT_CLOSING',
689      '' );
690 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 246, 'DELETE_PERM',
691      '' );
692 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 247, 'DELETE_RELEVANCE_ADJUSTMENT',
693      '' );
694 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 248, 'DELETE_SURVEY',
695      '' );
696 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 249, 'DELETE_TRANSIT',
697      '' );
698 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 250, 'DELETE_VR_FORMAT',
699      '' );
700 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 251, 'DELETE_XML_TRANSFORM',
701      '' );
702 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 252, 'REMOVE_GROUP_PERM',
703      '' );
704 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 253, 'TRANSIT_COPY',
705      '' );
706 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 254, 'UPDATE_AUDIENCE',
707      '' );
708 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 255, 'UPDATE_BIB_LEVEL',
709      '' );
710 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 256, 'UPDATE_CIRC_DURATION',
711      '' );
712 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 257, 'UPDATE_CIRC_MOD',
713      '' );
714 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 258, 'UPDATE_COPY_NOTE',
715      '' );
716 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 259, 'UPDATE_COPY_STATUS',
717      '' );
718 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 260, 'UPDATE_GROUP_PERM',
719      '' );
720 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 261, 'UPDATE_HOURS_OF_OPERATION',
721      '' );
722 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 262, 'UPDATE_ITEM_FORM',
723      '' );
724 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 263, 'UPDATE_ITEM_TYPE',
725      '' );
726 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 264, 'UPDATE_LANGUAGE',
727      '' );
728 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 265, 'UPDATE_LASSO',
729      '' );
730 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 266, 'UPDATE_LASSO_MAP',
731      '' );
732 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 267, 'UPDATE_LIT_FORM',
733      '' );
734 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 268, 'UPDATE_METABIB_FIELD',
735      '' );
736 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 269, 'UPDATE_NET_ACCESS_LEVEL',
737      '' );
738 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 270, 'UPDATE_ORG_ADDRESS',
739      '' );
740 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 271, 'UPDATE_ORG_TYPE',
741      '' );
742 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 272, 'UPDATE_ORG_UNIT_CLOSING',
743      '' );
744 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 273, 'UPDATE_PERM',
745      '' );
746 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT',
747      '' );
748 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 275, 'UPDATE_SURVEY',
749      '' );
750 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 276, 'UPDATE_TRANSIT',
751      '' );
752 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 277, 'UPDATE_VOLUME_NOTE',
753      '' );
754 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 278, 'UPDATE_VR_FORMAT',
755      '' );
756 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 279, 'UPDATE_XML_TRANSFORM',
757      '' );
758 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 280, 'MERGE_BIB_RECORDS',
759      '' );
760 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
761      '' );
762 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 282, 'CREATE_ACQ_FUNDING_SOURCE',
763      '' );
764 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
765      '' );
766 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE',
767      '' );
768 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 285, 'CREATE_AUTHORITY_RECORD_NOTE',
769      '' );
770 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF',
771      '' );
772 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 287, 'CREATE_BIB_IMPORT_QUEUE',
773      '' );
774 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 288, 'CREATE_LOCALE',
775      '' );
776 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 289, 'CREATE_MARC_CODE',
777      '' );
778 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 290, 'CREATE_TRANSLATION',
779      '' );
780 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 291, 'DELETE_ACQ_FUNDING_SOURCE',
781      '' );
782 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
783      '' );
784 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE',
785      '' );
786 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 294, 'DELETE_AUTHORITY_RECORD_NOTE',
787      '' );
788 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF',
789      '' );
790 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 296, 'DELETE_BIB_IMPORT_QUEUE',
791      '' );
792 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 297, 'DELETE_LOCALE',
793      '' );
794 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 298, 'DELETE_MARC_CODE',
795      '' );
796 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 299, 'DELETE_TRANSLATION',
797      '' );
798 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 300, 'UPDATE_ACQ_FUNDING_SOURCE',
799      '' );
800 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
801      '' );
802 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE',
803      '' );
804 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE',
805      '' );
806 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
807      '' );
808 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 305, 'UPDATE_BIB_IMPORT_QUEUE',
809      '' );
810 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 306, 'UPDATE_LOCALE',
811      '' );
812 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 307, 'UPDATE_MARC_CODE',
813      '' );
814 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 308, 'UPDATE_TRANSLATION',
815      '' );
816 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 309, 'VIEW_ACQ_FUNDING_SOURCE',
817      '' );
818 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 310, 'VIEW_AUTHORITY_RECORD_NOTES',
819      '' );
820 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 311, 'CREATE_IMPORT_ITEM',
821      '' );
822 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF',
823      '' );
824 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 313, 'CREATE_IMPORT_TRASH_FIELD',
825      '' );
826 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 314, 'DELETE_IMPORT_ITEM',
827      '' );
828 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF',
829      '' );
830 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 316, 'DELETE_IMPORT_TRASH_FIELD',
831      '' );
832 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 317, 'UPDATE_IMPORT_ITEM',
833      '' );
834 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF',
835      '' );
836 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 319, 'UPDATE_IMPORT_TRASH_FIELD',
837      '' );
838 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL',
839      '' );
840 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee',
841      '' );
842 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price',
843      '' );
844 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout',
845      '' );
846 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout',
847      '' );
848 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails',
849      '' );
850 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval',
851      '' );
852 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval',
853      '' );
854 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow',
855      '' );
856 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost',
857      '' );
858 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft',
859      '' );
860 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard',
861      '' );
862 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft',
863      '' );
864 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex',
865      '' );
866 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex',
867      '' );
868 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max',
869      '' );
870 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval',
871      '' );
872 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout',
873      '' );
874 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event',
875      '' );
876 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 339, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password',
877      '' );
878 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold',
879      '' );
880 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty',
881      '' );
882 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty',
883      '' );
884 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone',
885      '' );
886 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 344, 'HOLD_ITEM_CHECKED_OUT.override',
887      'Allows a user to place a hold on an item that they already have checked out' );
888 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 345, 'ADMIN_ACQ_CANCEL_CAUSE',
889      'Allow a user to create/update/delete reasons for order cancellations' );
890 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT',
891      'Allow a user to transfer different amounts of money out of one fund and into another' );
892 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY',
893      'Allow a user to override the circ.holds.hold_has_copy_at.block setting' );
894 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT',
895      'Allow a user to change the pickup and transit destination for a captured hold item already in transit' );
896 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 349, 'COPY_NEEDED_FOR_HOLD.override',
897      'Allow a user to force renewal of an item that could fulfill a hold request' );
898 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 350, 'MERGE_AUTH_RECORDS',
899      'Allow a user to merge authority records together' );
900 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 351, 'ALLOW_ALT_TCN',
901      'Allows staff to import a record using an alternate TCN to avoid conflicts' );
902 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 352, 'ADMIN_TRIGGER_EVENT_DEF',
903      'Allow a user to administer trigger event definitions' );
904 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 353, 'ADMIN_TRIGGER_CLEANUP',
905      'Allow a user to create, delete, and update trigger cleanup entries' );
906 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 354, 'CREATE_TRIGGER_CLEANUP',
907      'Allow a user to create trigger cleanup entries' );
908 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 355, 'DELETE_TRIGGER_CLEANUP',
909      'Allow a user to delete trigger cleanup entries' );
910 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 356, 'UPDATE_TRIGGER_CLEANUP',
911      'Allow a user to update trigger cleanup entries' );
912 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 357, 'CREATE_TRIGGER_EVENT_DEF',
913      'Allow a user to create trigger event definitions' );
914 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 358, 'DELETE_TRIGGER_EVENT_DEF',
915      'Allow a user to delete trigger event definitions' );
916 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 359, 'UPDATE_TRIGGER_EVENT_DEF',
917      'Allow a user to update trigger event definitions' );
918 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 360, 'VIEW_TRIGGER_EVENT_DEF',
919      'Allow a user to view trigger event definitions' );
920 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 361, 'ADMIN_TRIGGER_HOOK',
921      'Allow a user to create, update, and delete trigger hooks' );
922 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 362, 'CREATE_TRIGGER_HOOK',
923      'Allow a user to create trigger hooks' );
924 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 363, 'DELETE_TRIGGER_HOOK',
925      'Allow a user to delete trigger hooks' );
926 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 364, 'UPDATE_TRIGGER_HOOK',
927      'Allow a user to update trigger hooks' );
928 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 365, 'ADMIN_TRIGGER_REACTOR',
929      'Allow a user to create, update, and delete trigger reactors' );
930 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 366, 'CREATE_TRIGGER_REACTOR',
931      'Allow a user to create trigger reactors' );
932 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 367, 'DELETE_TRIGGER_REACTOR',
933      'Allow a user to delete trigger reactors' );
934 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 368, 'UPDATE_TRIGGER_REACTOR',
935      'Allow a user to update trigger reactors' );
936 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT',
937      'Allow a user to delete trigger template output' );
938 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT',
939      'Allow a user to delete trigger template output' );
940 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 371, 'ADMIN_TRIGGER_VALIDATOR',
941      'Allow a user to create, update, and delete trigger validators' );
942 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 372, 'CREATE_TRIGGER_VALIDATOR',
943      'Allow a user to create trigger validators' );
944 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 373, 'DELETE_TRIGGER_VALIDATOR',
945      'Allow a user to delete trigger validators' );
946 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 374, 'UPDATE_TRIGGER_VALIDATOR',
947      'Allow a user to update trigger validators' );
948 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 375, 'HOLD_LOCAL_AVAIL_OVERRIDE',
949      'Allow a user to place a hold despite the availability of a local copy' );
950 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 376, 'ADMIN_BOOKING_RESOURCE',
951      'Enables the user to create/update/delete booking resources' );
952 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE',
953      'Enables the user to create/update/delete booking resource types' );
954 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR',
955      'Enables the user to create/update/delete booking resource attributes' );
956 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
957      'Enables the user to create/update/delete booking resource attribute maps' );
958 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
959      'Enables the user to create/update/delete booking resource attribute values' );
960 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 381, 'ADMIN_BOOKING_RESERVATION',
961      'Enables the user to create/update/delete booking reservations' );
962 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
963      'Enables the user to create/update/delete booking reservation attribute value maps' );
964 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 383, 'RETRIEVE_RESERVATION_PULL_LIST',
965      'Allows a user to retrieve a booking reservation pull list' );
966 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 384, 'CAPTURE_RESERVATION',
967      'Allows a user to capture booking reservations' );
968 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 385, 'UPDATE_RECORD',
969      '' );
970 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds',
971      '' );
972 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 387, 'MERGE_USERS',
973      'Allows user records to be merged' );
974 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 388, 'ISSUANCE_HOLDS',
975      'Allow a user to place holds on serials issuances' );
976 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 389, 'VIEW_CREDIT_CARD_PROCESSING',
977      'View org unit settings related to credit card processing' );
978 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 390, 'ADMIN_CREDIT_CARD_PROCESSING',
979      'Update org unit settings related to credit card processing' );
980 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 391, 'ADMIN_SERIAL_CAPTION_PATTERN',
981         'Create/update/delete serial caption and pattern objects' );
982 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 392, 'ADMIN_SERIAL_SUBSCRIPTION',
983         'Create/update/delete serial subscription objects' );
984 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 393, 'ADMIN_SERIAL_DISTRIBUTION',
985         'Create/update/delete serial distribution objects' );
986 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 394, 'ADMIN_SERIAL_STREAM',
987         'Create/update/delete serial stream objects' );
988 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 395, 'RECEIVE_SERIAL',
989         'Receive serial items' );
990
991 -- Now for the permissions from the IDL.  We don't have descriptions for them.
992
993 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 396, 'ADMIN_ACQ_CLAIM' );
994 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 397, 'ADMIN_ACQ_CLAIM_EVENT_TYPE' );
995 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 398, 'ADMIN_ACQ_CLAIM_TYPE' );
996 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 399, 'ADMIN_ACQ_DISTRIB_FORMULA' );
997 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 400, 'ADMIN_ACQ_FISCAL_YEAR' );
998 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 401, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT' );
999 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 402, 'ADMIN_ACQ_FUND_TAG' );
1000 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 403, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT' );
1001 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 404, 'ADMIN_AGE_PROTECT_RULE' );
1002 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 405, 'ADMIN_ASSET_COPY_TEMPLATE' );
1003 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 406, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP' );
1004 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 407, 'ADMIN_CIRC_MATRIX_MATCHPOINT' );
1005 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 408, 'ADMIN_CIRC_MOD' );
1006 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 409, 'ADMIN_CLAIM_POLICY' );
1007 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 410, 'ADMIN_CONFIG_REMOTE_ACCOUNT' );
1008 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 411, 'ADMIN_FIELD_DOC' );
1009 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 412, 'ADMIN_GLOBAL_FLAG' );
1010 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 413, 'ADMIN_GROUP_PENALTY_THRESHOLD' );
1011 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 414, 'ADMIN_HOLD_CANCEL_CAUSE' );
1012 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 415, 'ADMIN_HOLD_MATRIX_MATCHPOINT' );
1013 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 416, 'ADMIN_IDENT_TYPE' );
1014 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 417, 'ADMIN_IMPORT_ITEM_ATTR_DEF' );
1015 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 418, 'ADMIN_INDEX_NORMALIZER' );
1016 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 419, 'ADMIN_INVOICE' );
1017 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 420, 'ADMIN_INVOICE_METHOD' );
1018 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 421, 'ADMIN_INVOICE_PAYMENT_METHOD' );
1019 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 422, 'ADMIN_LINEITEM_MARC_ATTR_DEF' );
1020 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 423, 'ADMIN_MARC_CODE' );
1021 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 424, 'ADMIN_MAX_FINE_RULE' );
1022 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 425, 'ADMIN_MERGE_PROFILE' );
1023 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 426, 'ADMIN_ORG_UNIT_SETTING_TYPE' );
1024 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 427, 'ADMIN_RECURRING_FINE_RULE' );
1025 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 428, 'ADMIN_STANDING_PENALTY' );
1026 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 429, 'ADMIN_SURVEY' );
1027 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 430, 'ADMIN_USER_REQUEST_TYPE' );
1028 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 431, 'ADMIN_USER_SETTING_GROUP' );
1029 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 432, 'ADMIN_USER_SETTING_TYPE' );
1030 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 433, 'ADMIN_Z3950_SOURCE' );
1031 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 434, 'CREATE_BIB_BTYPE' );
1032 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 435, 'CREATE_BIBLIO_FINGERPRINT' );
1033 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 436, 'CREATE_BIB_SOURCE' );
1034 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 437, 'CREATE_BILLING_TYPE' );
1035 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 438, 'CREATE_CN_BTYPE' );
1036 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 439, 'CREATE_COPY_BTYPE' );
1037 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 440, 'CREATE_INVOICE' );
1038 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 441, 'CREATE_INVOICE_ITEM_TYPE' );
1039 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 442, 'CREATE_INVOICE_METHOD' );
1040 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 443, 'CREATE_MERGE_PROFILE' );
1041 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 444, 'CREATE_METABIB_CLASS' );
1042 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 445, 'CREATE_METABIB_SEARCH_ALIAS' );
1043 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 446, 'CREATE_USER_BTYPE' );
1044 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 447, 'DELETE_BIB_BTYPE' );
1045 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 448, 'DELETE_BIBLIO_FINGERPRINT' );
1046 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 449, 'DELETE_BIB_SOURCE' );
1047 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 450, 'DELETE_BILLING_TYPE' );
1048 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 451, 'DELETE_CN_BTYPE' );
1049 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 452, 'DELETE_COPY_BTYPE' );
1050 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 453, 'DELETE_INVOICE_ITEM_TYPE' );
1051 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 454, 'DELETE_INVOICE_METHOD' );
1052 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 455, 'DELETE_MERGE_PROFILE' );
1053 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 456, 'DELETE_METABIB_CLASS' );
1054 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 457, 'DELETE_METABIB_SEARCH_ALIAS' );
1055 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 458, 'DELETE_USER_BTYPE' );
1056 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 459, 'MANAGE_CLAIM' );
1057 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 460, 'UPDATE_BIB_BTYPE' );
1058 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 461, 'UPDATE_BIBLIO_FINGERPRINT' );
1059 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 462, 'UPDATE_BIB_SOURCE' );
1060 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 463, 'UPDATE_BILLING_TYPE' );
1061 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 464, 'UPDATE_CN_BTYPE' );
1062 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 465, 'UPDATE_COPY_BTYPE' );
1063 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 466, 'UPDATE_INVOICE_ITEM_TYPE' );
1064 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 467, 'UPDATE_INVOICE_METHOD' );
1065 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 468, 'UPDATE_MERGE_PROFILE' );
1066 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 469, 'UPDATE_METABIB_CLASS' );
1067 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 470, 'UPDATE_METABIB_SEARCH_ALIAS' );
1068 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 471, 'UPDATE_USER_BTYPE' );
1069 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 472, 'user_request.create' );
1070 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 473, 'user_request.delete' );
1071 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 474, 'user_request.update' );
1072 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 475, 'user_request.view' );
1073 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 476, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT' );
1074 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 477, 'VIEW_CIRC_MATRIX_MATCHPOINT' );
1075 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 478, 'VIEW_CLAIM' );
1076 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 479, 'VIEW_GROUP_PENALTY_THRESHOLD' );
1077 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 480, 'VIEW_HOLD_MATRIX_MATCHPOINT' );
1078 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 481, 'VIEW_INVOICE' );
1079 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 482, 'VIEW_MERGE_PROFILE' );
1080 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 483, 'VIEW_SERIAL_SUBSCRIPTION' );
1081 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 484, 'VIEW_STANDING_PENALTY' );
1082
1083 -- For every permission in the temp_perm table that has a matching
1084 -- permission in the real table: record the original id.
1085
1086 UPDATE permission.temp_perm AS tp
1087 SET old_id =
1088         (
1089                 SELECT id
1090                 FROM permission.perm_list AS ppl
1091                 WHERE ppl.code = tp.code
1092         )
1093 WHERE code IN ( SELECT code FROM permission.perm_list );
1094
1095 -- Start juggling ids.
1096
1097 -- If any permissions have negative ids (with the special exception of -1),
1098 -- we need to move them into the positive range in order to avoid duplicate
1099 -- key problems (since we are going to use the negative range as a temporary
1100 -- staging area).
1101
1102 -- First, move any predefined permissions that have negative ids (again with
1103 -- the special exception of -1).  Temporarily give them positive ids based on
1104 -- the sequence.
1105
1106 UPDATE permission.perm_list
1107 SET id = NEXTVAL('permission.perm_list_id_seq'::regclass)
1108 WHERE id < -1
1109   AND code IN (SELECT code FROM permission.temp_perm);
1110
1111 -- Identify any non-predefined permissions whose ids are either negative
1112 -- or within the range (0-1000) reserved for predefined permissions.
1113 -- Assign them ids above 1000, based on the sequence.  Record the new
1114 -- ids in the temp_perm table.
1115
1116 INSERT INTO permission.temp_perm ( id, code, description, old_id, predefined )
1117 (
1118         SELECT NEXTVAL('permission.perm_list_id_seq'::regclass),
1119                 code, description, id, false
1120         FROM permission.perm_list
1121         WHERE  ( id < -1 OR id BETWEEN 0 AND 1000 )
1122         AND code NOT IN (SELECT code FROM permission.temp_perm)
1123 );
1124
1125 -- Now update the ids of those non-predefined permissions, using the
1126 -- values assigned in the previous step.
1127
1128 UPDATE permission.perm_list AS ppl
1129 SET id = (
1130                 SELECT id
1131                 FROM permission.temp_perm AS tp
1132                 WHERE tp.code = ppl.code
1133         )
1134 WHERE id IN ( SELECT old_id FROM permission.temp_perm WHERE NOT predefined );
1135
1136 -- Now the negative ids have been eliminated, except for -1.  Move all the
1137 -- predefined permissions temporarily into the negative range.
1138
1139 UPDATE permission.perm_list
1140 SET id = -1 - id
1141 WHERE id <> -1
1142 AND code IN ( SELECT code from permission.temp_perm WHERE predefined );
1143
1144 -- Apply the final ids to the existing predefined permissions.
1145
1146 UPDATE permission.perm_list AS ppl
1147 SET id =
1148         (
1149                 SELECT id
1150                 FROM permission.temp_perm AS tp
1151                 WHERE tp.code = ppl.code
1152         )
1153 WHERE
1154         id <> -1
1155         AND ppl.code IN
1156         (
1157                 SELECT code from permission.temp_perm
1158                 WHERE predefined
1159                 AND old_id IS NOT NULL
1160         );
1161
1162 -- If there are any predefined permissions that don't exist yet in
1163 -- permission.perm_list, insert them now.
1164
1165 INSERT INTO permission.perm_list ( id, code, description )
1166 (
1167         SELECT id, code, description
1168         FROM permission.temp_perm
1169         WHERE old_id IS NULL
1170 );
1171
1172 -- Reset the sequence to the lowest feasible value.  This may or may not
1173 -- accomplish anything, but it will do no harm.
1174
1175 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, GREATEST( 
1176         (SELECT MAX(id) FROM permission.perm_list), 1000 ));
1177
1178 -- If any permission lacks a description, use the code as a description.
1179 -- It's better than nothing.
1180
1181 UPDATE permission.perm_list
1182 SET description = code
1183 WHERE description IS NULL
1184    OR description = '';
1185
1186 -- Thus endeth the Great Renumbering.
1187
1188 -- Having massaged the permissions, massage the way they are assigned, by inserting
1189 -- rows into permission.grp_perm_map.  Some of these permissions may have already
1190 -- been assigned, so we insert the rows only if they aren't already there.
1191
1192 -- for backwards compat, give everyone the permission
1193 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1194     SELECT 1, id, 0, false FROM permission.perm_list AS perm
1195         WHERE code = 'HOLD_ITEM_CHECKED_OUT.override'
1196                 AND NOT EXISTS (
1197                         SELECT 1
1198                         FROM permission.grp_perm_map AS map
1199                         WHERE
1200                                 grp = 1
1201                                 AND map.perm = perm.id
1202                 );
1203
1204 -- Add trigger administration permissions to the Local System Administrator group.
1205 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1206     SELECT 10, id, 1, false FROM permission.perm_list AS perm
1207     WHERE (
1208                 perm.code LIKE 'ADMIN_TRIGGER%'
1209         OR perm.code LIKE 'CREATE_TRIGGER%'
1210         OR perm.code LIKE 'DELETE_TRIGGER%'
1211         OR perm.code LIKE 'UPDATE_TRIGGER%'
1212         ) AND NOT EXISTS (
1213                 SELECT 1
1214                 FROM permission.grp_perm_map AS map
1215                 WHERE
1216                         grp = 10
1217                         AND map.perm = perm.id
1218         );
1219
1220 -- View trigger permissions are required at a consortial level for initial setup
1221 -- (as before, only if the row doesn't already exist)
1222 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1223     SELECT 10, id, 0, false FROM permission.perm_list AS perm
1224         WHERE code LIKE 'VIEW_TRIGGER%'
1225                 AND NOT EXISTS (
1226                         SELECT 1
1227                         FROM permission.grp_perm_map AS map
1228                         WHERE
1229                                 grp = 10
1230                                 AND map.perm = perm.id
1231                 );
1232
1233 -- Permission for merging auth records may already be defined,
1234 -- so add it only if it isn't there.
1235 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1236     SELECT 4, id, 1, false FROM permission.perm_list AS perm
1237         WHERE code = 'MERGE_AUTH_RECORDS'
1238                 AND NOT EXISTS (
1239                         SELECT 1
1240                         FROM permission.grp_perm_map AS map
1241                         WHERE
1242                                 grp = 4
1243                                 AND map.perm = perm.id
1244                 );
1245
1246 -- Create a reference table as parent to both
1247 -- config.org_unit_setting_type and config_usr_setting_type
1248
1249 CREATE TABLE config.settings_group (
1250     name    TEXT PRIMARY KEY,
1251     label   TEXT UNIQUE NOT NULL -- I18N
1252 );
1253
1254 -- org_unit setting types
1255 CREATE TABLE config.org_unit_setting_type (
1256     name            TEXT    PRIMARY KEY,
1257     label           TEXT    UNIQUE NOT NULL,
1258     grp             TEXT    REFERENCES config.settings_group (name),
1259     description     TEXT,
1260     datatype        TEXT    NOT NULL DEFAULT 'string',
1261     fm_class        TEXT,
1262     view_perm       INT,
1263     update_perm     INT,
1264     --
1265     -- define valid datatypes
1266     --
1267     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1268     ( 'bool', 'integer', 'float', 'currency', 'interval',
1269       'date', 'string', 'object', 'array', 'link' ) ),
1270     --
1271     -- fm_class is meaningful only for 'link' datatype
1272     --
1273     CONSTRAINT coust_no_empty_link CHECK
1274     ( ( datatype =  'link' AND fm_class IS NOT NULL ) OR
1275       ( datatype <> 'link' AND fm_class IS NULL ) ),
1276         CONSTRAINT view_perm_fkey FOREIGN KEY (view_perm) REFERENCES permission.perm_list (id)
1277                 ON UPDATE CASCADE
1278                 ON DELETE RESTRICT
1279                 DEFERRABLE INITIALLY DEFERRED,
1280         CONSTRAINT update_perm_fkey FOREIGN KEY (update_perm) REFERENCES permission.perm_list (id)
1281                 ON UPDATE CASCADE
1282                 DEFERRABLE INITIALLY DEFERRED
1283 );
1284
1285 CREATE TABLE config.usr_setting_type (
1286
1287     name TEXT PRIMARY KEY,
1288     opac_visible BOOL NOT NULL DEFAULT FALSE,
1289     label TEXT UNIQUE NOT NULL,
1290     description TEXT,
1291     grp             TEXT    REFERENCES config.settings_group (name),
1292     datatype TEXT NOT NULL DEFAULT 'string',
1293     fm_class TEXT,
1294
1295     --
1296     -- define valid datatypes
1297     --
1298     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1299     ( 'bool', 'integer', 'float', 'currency', 'interval',
1300         'date', 'string', 'object', 'array', 'link' ) ),
1301
1302     --
1303     -- fm_class is meaningful only for 'link' datatype
1304     --
1305     CONSTRAINT coust_no_empty_link CHECK
1306     ( ( datatype = 'link' AND fm_class IS NOT NULL ) OR
1307         ( datatype <> 'link' AND fm_class IS NULL ) )
1308
1309 );
1310
1311 --------------------------------------
1312 -- Seed data for org_unit_setting_type
1313 --------------------------------------
1314
1315 INSERT into config.org_unit_setting_type
1316 ( name, label, description, datatype ) VALUES
1317
1318 ( 'auth.opac_timeout',
1319   'OPAC Inactivity Timeout (in seconds)',
1320   null,
1321   'integer' ),
1322
1323 ( 'auth.staff_timeout',
1324   'Staff Login Inactivity Timeout (in seconds)',
1325   null,
1326   'integer' ),
1327
1328 ( 'circ.lost_materials_processing_fee',
1329   'Lost Materials Processing Fee',
1330   null,
1331   'currency' ),
1332
1333 ( 'cat.default_item_price',
1334   'Default Item Price',
1335   null,
1336   'currency' ),
1337
1338 ( 'org.bounced_emails',
1339   'Sending email address for patron notices',
1340   null,
1341   'string' ),
1342
1343 ( 'circ.hold_expire_alert_interval',
1344   'Holds: Expire Alert Interval',
1345   'Amount of time before a hold expires at which point the patron should be alerted',
1346   'interval' ),
1347
1348 ( 'circ.hold_expire_interval',
1349   'Holds: Expire Interval',
1350   'Amount of time after a hold is placed before the hold expires.  Example "100 days"',
1351   'interval' ),
1352
1353 ( 'credit.payments.allow',
1354   'Allow Credit Card Payments',
1355   'If enabled, patrons will be able to pay fines accrued at this location via credit card',
1356   'bool' ),
1357
1358 ( 'global.default_locale',
1359   'Global Default Locale',
1360   null,
1361   'string' ),
1362
1363 ( 'circ.void_overdue_on_lost',
1364   'Void overdue fines when items are marked lost',
1365   null,
1366   'bool' ),
1367
1368 ( 'circ.hold_stalling.soft',
1369   'Holds: Soft stalling interval',
1370   'How long to wait before allowing remote items to be opportunistically captured for a hold.  Example "5 days"',
1371   'interval' ),
1372
1373 ( 'circ.hold_stalling_hard',
1374   'Holds: Hard stalling interval',
1375   '',
1376   'interval' ),
1377
1378 ( 'circ.hold_boundary.hard',
1379   'Holds: Hard boundary',
1380   null,
1381   'integer' ),
1382
1383 ( 'circ.hold_boundary.soft',
1384   'Holds: Soft boundary',
1385   null,
1386   'integer' ),
1387
1388 ( 'opac.barcode_regex',
1389   'Patron barcode format',
1390   'Regular expression defining the patron barcode format',
1391   'string' ),
1392
1393 ( 'global.password_regex',
1394   'Password format',
1395   'Regular expression defining the password format',
1396   'string' ),
1397
1398 ( 'circ.item_checkout_history.max',
1399   'Maximum previous checkouts displayed',
1400   'This is the maximum number of previous circulations the staff client will display when investigating item details',
1401   'integer' ),
1402
1403 ( 'circ.reshelving_complete.interval',
1404   'Change reshelving status interval',
1405   'Amount of time to wait before changing an item from "reshelving" status to "available".  Examples: "1 day", "6 hours"',
1406   'interval' ),
1407
1408 ( 'circ.holds.default_estimated_wait_interval',
1409   'Holds: Default Estimated Wait',
1410   '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.',
1411   'interval' ),
1412
1413 ( 'circ.holds.min_estimated_wait_interval',
1414   'Holds: Minimum Estimated Wait',
1415   '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.',
1416   'interval' ),
1417
1418 ( 'circ.selfcheck.patron_login_timeout',
1419   'Selfcheck: Patron Login Timeout (in seconds)',
1420   'Number of seconds of inactivity before the patron is logged out of the selfcheck interface',
1421   'integer' ),
1422
1423 ( 'circ.selfcheck.alert.popup',
1424   'Selfcheck: Pop-up alert for errors',
1425   'If true, checkout/renewal errors will cause a pop-up window in addition to the on-screen message',
1426   'bool' ),
1427
1428 ( 'circ.selfcheck.require_patron_password',
1429   'Selfcheck: Require patron password',
1430   'If true, patrons will be required to enter their password in addition to their username/barcode to log into the selfcheck interface',
1431   'bool' ),
1432
1433 ( 'global.juvenile_age_threshold',
1434   'Juvenile Age Threshold',
1435   'The age at which a user is no long considered a juvenile.  For example, "18 years".',
1436   'interval' ),
1437
1438 ( 'cat.bib.keep_on_empty',
1439   'Retain empty bib records',
1440   'Retain a bib record even when all attached copies are deleted',
1441   'bool' ),
1442
1443 ( 'cat.bib.alert_on_empty',
1444   'Alert on empty bib records',
1445   'Alert staff when the last copy for a record is being deleted',
1446   'bool' ),
1447
1448 ( 'patron.password.use_phone',
1449   'Patron: password from phone #',
1450   'Use the last 4 digits of the patrons phone number as the default password when creating new users',
1451   'bool' ),
1452
1453 ( 'circ.charge_on_damaged',
1454   'Charge item price when marked damaged',
1455   'Charge item price when marked damaged',
1456   'bool' ),
1457
1458 ( 'circ.charge_lost_on_zero',
1459   'Charge lost on zero',
1460   '',
1461   'bool' ),
1462
1463 ( 'circ.damaged_item_processing_fee',
1464   'Charge processing fee for damaged items',
1465   'Charge processing fee for damaged items',
1466   'currency' ),
1467
1468 ( 'circ.void_lost_on_checkin',
1469   'Circ: Void lost item billing when returned',
1470   'Void lost item billing when returned',
1471   'bool' ),
1472
1473 ( 'circ.max_accept_return_of_lost',
1474   'Circ: Void lost max interval',
1475   'Items that have been lost this long will not result in voided billings when returned.  E.g. ''6 months''',
1476   'interval' ),
1477
1478 ( 'circ.void_lost_proc_fee_on_checkin',
1479   'Circ: Void processing fee on lost item return',
1480   'Void processing fee when lost item returned',
1481   'bool' ),
1482
1483 ( 'circ.restore_overdue_on_lost_return',
1484   'Circ: Restore overdues on lost item return',
1485   'Restore overdue fines on lost item return',
1486   'bool' ),
1487
1488 ( 'circ.lost_immediately_available',
1489   'Circ: Lost items usable on checkin',
1490   'Lost items are usable on checkin instead of going ''home'' first',
1491   'bool' ),
1492
1493 ( 'circ.holds_fifo',
1494   'Holds: FIFO',
1495   'Force holds to a more strict First-In, First-Out capture',
1496   'bool' ),
1497
1498 ( 'opac.allow_pending_address',
1499   'OPAC: Allow pending addresses',
1500   'If enabled, patrons can create and edit existing addresses.  Addresses are kept in a pending state until staff approves the changes',
1501   'bool' ),
1502
1503 ( 'ui.circ.show_billing_tab_on_bills',
1504   'Show billing tab first when bills are present',
1505   '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',
1506   'bool' ),
1507
1508 ( 'ui.general.idle_timeout',
1509     'GUI: Idle timeout',
1510     '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).',
1511     'integer' ),
1512
1513 ( 'ui.circ.in_house_use.entry_cap',
1514   'GUI: Record In-House Use: Maximum # of uses allowed per entry.',
1515   'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.',
1516   'integer' ),
1517
1518 ( 'ui.circ.in_house_use.entry_warn',
1519   'GUI: Record In-House Use: # of uses threshold for Are You Sure? dialog.',
1520   'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.',
1521   'integer' ),
1522
1523 ( 'acq.default_circ_modifier',
1524   'Default circulation modifier',
1525   null,
1526   'string' ),
1527
1528 ( 'acq.tmp_barcode_prefix',
1529   'Temporary barcode prefix',
1530   null,
1531   'string' ),
1532
1533 ( 'acq.tmp_callnumber_prefix',
1534   'Temporary call number prefix',
1535   null,
1536   'string' ),
1537
1538 ( 'ui.circ.patron_summary.horizontal',
1539   'Patron circulation summary is horizontal',
1540   null,
1541   'bool' ),
1542
1543 ( 'ui.staff.require_initials',
1544   oils_i18n_gettext('ui.staff.require_initials', 'GUI: Require staff initials for entry/edit of item/patron/penalty notes/messages.', 'coust', 'label'),
1545   oils_i18n_gettext('ui.staff.require_initials', 'Appends staff initials and edit date into note content.', 'coust', 'description'),
1546   'bool' ),
1547
1548 ( 'ui.general.button_bar',
1549   'Button bar',
1550   null,
1551   'bool' ),
1552
1553 ( 'circ.hold_shelf_status_delay',
1554   'Hold Shelf Status Delay',
1555   '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.',
1556   'interval' ),
1557
1558 ( 'circ.patron_invalid_address_apply_penalty',
1559   'Invalid patron address penalty',
1560   'When set, if a patron address is set to invalid, a penalty is applied.',
1561   'bool' ),
1562
1563 ( 'circ.checkout_fills_related_hold',
1564   'Checkout Fills Related Hold',
1565   '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',
1566   'bool'),
1567
1568 ( 'circ.selfcheck.auto_override_checkout_events',
1569   'Selfcheck override events list',
1570   'List of checkout/renewal events that the selfcheck interface should automatically override instead instead of alerting and stopping the transaction',
1571   'array' ),
1572
1573 ( 'circ.staff_client.do_not_auto_attempt_print',
1574   'Disable Automatic Print Attempt Type List',
1575   '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).',
1576   'array' ),
1577
1578 ( 'ui.patron.default_inet_access_level',
1579   'Default level of patrons'' internet access',
1580   null,
1581   'integer' ),
1582
1583 ( 'circ.max_patron_claim_return_count',
1584     'Max Patron Claims Returned Count',
1585     'When this count is exceeded, a staff override is required to mark the item as claims returned',
1586     'integer' ),
1587
1588 ( 'circ.obscure_dob',
1589     'Obscure the Date of Birth field',
1590     '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.',
1591     'bool' ),
1592
1593 ( 'circ.auto_hide_patron_summary',
1594     'GUI: Toggle off the patron summary sidebar after first view.',
1595     'When true, the patron summary sidebar will collapse after a new patron sub-interface is selected.',
1596     'bool' ),
1597
1598 ( 'credit.processor.default',
1599     'Credit card processing: Name default credit processor',
1600     'This can be "AuthorizeNet", "PayPal" (for the Website Payment Pro API), or "PayflowPro".',
1601     'string' ),
1602
1603 ( 'credit.processor.authorizenet.enabled',
1604     'Credit card processing: AuthorizeNet enabled',
1605     '',
1606     'bool' ),
1607
1608 ( 'credit.processor.authorizenet.login',
1609     'Credit card processing: AuthorizeNet login',
1610     '',
1611     'string' ),
1612
1613 ( 'credit.processor.authorizenet.password',
1614     'Credit card processing: AuthorizeNet password',
1615     '',
1616     'string' ),
1617
1618 ( 'credit.processor.authorizenet.server',
1619     'Credit card processing: AuthorizeNet server',
1620     'Required if using a developer/test account with AuthorizeNet',
1621     'string' ),
1622
1623 ( 'credit.processor.authorizenet.testmode',
1624     'Credit card processing: AuthorizeNet test mode',
1625     '',
1626     'bool' ),
1627
1628 ( 'credit.processor.paypal.enabled',
1629     'Credit card processing: PayPal enabled',
1630     '',
1631     'bool' ),
1632 ( 'credit.processor.paypal.login',
1633     'Credit card processing: PayPal login',
1634     '',
1635     'string' ),
1636 ( 'credit.processor.paypal.password',
1637     'Credit card processing: PayPal password',
1638     '',
1639     'string' ),
1640 ( 'credit.processor.paypal.signature',
1641     'Credit card processing: PayPal signature',
1642     '',
1643     'string' ),
1644 ( 'credit.processor.paypal.testmode',
1645     'Credit card processing: PayPal test mode',
1646     '',
1647     'bool' ),
1648
1649 ( 'ui.admin.work_log.max_entries',
1650     oils_i18n_gettext('ui.admin.work_log.max_entries', 'GUI: Work Log: Maximum Actions Logged', 'coust', 'label'),
1651     oils_i18n_gettext('ui.admin.work_log.max_entries', 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', 'coust', 'description'),
1652   'interval' ),
1653
1654 ( 'ui.admin.patron_log.max_entries',
1655     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'GUI: Work Log: Maximum Patrons Logged', 'coust', 'label'),
1656     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', 'coust', 'description'),
1657   'interval' ),
1658
1659 ( 'lib.courier_code',
1660     oils_i18n_gettext('lib.courier_code', 'Courier Code', 'coust', 'label'),
1661     oils_i18n_gettext('lib.courier_code', 'Courier Code for the library.  Available in transit slip templates as the %courier_code% macro.', 'coust', 'description'),
1662     'string'),
1663
1664 ( 'circ.block_renews_for_holds',
1665     oils_i18n_gettext('circ.block_renews_for_holds', 'Holds: Block Renewal of Items Needed for Holds', 'coust', 'label'),
1666     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'),
1667     'bool' ),
1668
1669 ( 'circ.password_reset_request_per_user_limit',
1670     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'Circulation: Maximum concurrently active self-serve password reset requests per user', 'coust', 'label'),
1671     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'),
1672     'string'),
1673
1674 ( 'circ.password_reset_request_time_to_live',
1675     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Circulation: Self-serve password reset request time-to-live', 'coust', 'label'),
1676     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'),
1677     'string'),
1678
1679 ( 'circ.password_reset_request_throttle',
1680     oils_i18n_gettext('circ.password_reset_request_throttle', 'Circulation: Maximum concurrently active self-serve password reset requests', 'coust', 'label'),
1681     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'),
1682     'string')
1683 ;
1684
1685 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1686         'ui.circ.suppress_checkin_popups',
1687         oils_i18n_gettext(
1688             'ui.circ.suppress_checkin_popups', 
1689             'Circ: Suppress popup-dialogs during check-in.', 
1690             'coust', 
1691             'label'),
1692         oils_i18n_gettext(
1693             'ui.circ.suppress_checkin_popups', 
1694             'Circ: Suppress popup-dialogs during check-in.', 
1695             'coust', 
1696             'description'),
1697         'bool'
1698 );
1699
1700 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1701         'format.date',
1702         oils_i18n_gettext(
1703             'format.date',
1704             'GUI: Format Dates with this pattern.', 
1705             'coust', 
1706             'label'),
1707         oils_i18n_gettext(
1708             'format.date',
1709             'GUI: Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', 
1710             'coust', 
1711             'description'),
1712         'string'
1713 ), (
1714         'format.time',
1715         oils_i18n_gettext(
1716             'format.time',
1717             'GUI: Format Times with this pattern.', 
1718             'coust', 
1719             'label'),
1720         oils_i18n_gettext(
1721             'format.time',
1722             '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")', 
1723             'coust', 
1724             'description'),
1725         'string'
1726 );
1727
1728 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1729         'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1730         oils_i18n_gettext(
1731             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1732             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1733             'coust', 
1734             'label'),
1735         oils_i18n_gettext(
1736             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1737             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1738             'coust', 
1739             'description'),
1740         'bool'
1741 );
1742
1743 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1744         'url.remote_column_settings',
1745         oils_i18n_gettext(
1746             'url.remote_column_settings',
1747             'GUI: URL for remote directory containing list column settings.', 
1748             'coust', 
1749             'label'),
1750         oils_i18n_gettext(
1751             'url.remote_column_settings',
1752             '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.', 
1753             'coust', 
1754             'description'),
1755         'string'
1756 );
1757
1758 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1759         'gui.disable_local_save_columns',
1760         oils_i18n_gettext(
1761             'gui.disable_local_save_columns',
1762             'GUI: Disable the ability to save list column configurations locally.', 
1763             'coust', 
1764             'label'),
1765         oils_i18n_gettext(
1766             'gui.disable_local_save_columns',
1767             '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.', 
1768             'coust', 
1769             'description'),
1770         'bool'
1771 );
1772
1773 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1774         'circ.password_reset_request_requires_matching_email',
1775         oils_i18n_gettext(
1776             'circ.password_reset_request_requires_matching_email',
1777             'Circulation: Require matching email address for password reset requests', 
1778             'coust', 
1779             'label'),
1780         oils_i18n_gettext(
1781             'circ.password_reset_request_requires_matching_email',
1782             'Circulation: Require matching email address for password reset requests', 
1783             'coust', 
1784             'description'),
1785         'bool'
1786 );
1787
1788 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1789         'circ.holds.expired_patron_block',
1790         oils_i18n_gettext(
1791             'circ.holds.expired_patron_block',
1792             'Circulation: Block hold request if hold recipient privileges have expired', 
1793             'coust', 
1794             'label'),
1795         oils_i18n_gettext(
1796             'circ.holds.expired_patron_block',
1797             'Circulation: Block hold request if hold recipient privileges have expired', 
1798             'coust', 
1799             'description'),
1800         'bool'
1801 );
1802
1803 INSERT INTO config.org_unit_setting_type
1804     (name, label, description, datatype) VALUES (
1805         'circ.booking_reservation.default_elbow_room',
1806         oils_i18n_gettext(
1807             'circ.booking_reservation.default_elbow_room',
1808             'Booking: Elbow room',
1809             'coust',
1810             'label'
1811         ),
1812         oils_i18n_gettext(
1813             'circ.booking_reservation.default_elbow_room',
1814             '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.',
1815             'coust',
1816             'label'
1817         ),
1818         'interval'
1819     );
1820
1821 -- Org_unit_setting_type(s) that need an fm_class:
1822 INSERT into config.org_unit_setting_type
1823 ( name, label, description, datatype, fm_class ) VALUES
1824 ( 'acq.default_copy_location',
1825   'Default copy location',
1826   null,
1827   'link',
1828   'acpl' );
1829
1830 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1831     'circ.holds.org_unit_target_weight',
1832     'Holds: Org Unit Target Weight',
1833     '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.',
1834     'integer'
1835 );
1836
1837 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1838     'circ.holds.target_holds_by_org_unit_weight',
1839     'Holds: Use weight-based hold targeting',
1840     'Use library weight based hold targeting',
1841     'bool'
1842 );
1843
1844 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1845     'circ.holds.max_org_unit_target_loops',
1846     'Holds: Maximum library target attempts',
1847     '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',
1848     'integer'
1849 );
1850
1851
1852 -- Org setting for overriding the circ lib of a precat copy
1853 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1854     'circ.pre_cat_copy_circ_lib',
1855     'Pre-cat Item Circ Lib',
1856     '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',
1857     'string'
1858 );
1859
1860 -- Circ auto-renew interval setting
1861 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1862     'circ.checkout_auto_renew_age',
1863     'Checkout auto renew age',
1864     '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',
1865     'interval'
1866 );
1867
1868 -- Setting for behind the desk hold pickups
1869 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1870     'circ.holds.behind_desk_pickup_supported',
1871     'Holds: Behind Desk Pickup Supported',
1872     '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',
1873     'bool'
1874 );
1875
1876 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1877         'acq.holds.allow_holds_from_purchase_request',
1878         oils_i18n_gettext(
1879             'acq.holds.allow_holds_from_purchase_request', 
1880             'Allows patrons to create automatic holds from purchase requests.', 
1881             'coust', 
1882             'label'),
1883         oils_i18n_gettext(
1884             'acq.holds.allow_holds_from_purchase_request', 
1885             'Allows patrons to create automatic holds from purchase requests.', 
1886             'coust', 
1887             'description'),
1888         'bool'
1889 );
1890
1891 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1892     'circ.holds.target_skip_me',
1893     'Skip For Hold Targeting',
1894     'When true, don''t target any copies at this org unit for holds',
1895     'bool'
1896 );
1897
1898 -- claims returned mark item missing 
1899 INSERT INTO
1900     config.org_unit_setting_type ( name, label, description, datatype )
1901     VALUES (
1902         'circ.claim_return.mark_missing',
1903         'Claim Return: Mark copy as missing', 
1904         'When a circ is marked as claims-returned, also mark the copy as missing',
1905         'bool'
1906     );
1907
1908 -- claims never checked out mark item missing 
1909 INSERT INTO
1910     config.org_unit_setting_type ( name, label, description, datatype )
1911     VALUES (
1912         'circ.claim_never_checked_out.mark_missing',
1913         'Claim Never Checked Out: Mark copy as missing', 
1914         'When a circ is marked as claims-never-checked-out, mark the copy as missing',
1915         'bool'
1916     );
1917
1918 -- mark damaged void overdue setting
1919 INSERT INTO
1920     config.org_unit_setting_type ( name, label, description, datatype )
1921     VALUES (
1922         'circ.damaged.void_ovedue',
1923         'Mark item damaged voids overdues',
1924         'When an item is marked damaged, overdue fines on the most recent circulation are voided.',
1925         'bool'
1926     );
1927
1928 -- hold cancel display limits
1929 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1930     VALUES (
1931         'circ.holds.canceled.display_count',
1932         'Holds: Canceled holds display count',
1933         'How many canceled holds to show in patron holds interfaces',
1934         'integer'
1935     );
1936
1937 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1938     VALUES (
1939         'circ.holds.canceled.display_age',
1940         'Holds: Canceled holds display age',
1941         'Show all canceled holds that were canceled within this amount of time',
1942         'interval'
1943     );
1944
1945 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1946     VALUES (
1947         'circ.holds.uncancel.reset_request_time',
1948         'Holds: Reset request time on un-cancel',
1949         'When a hold is uncanceled, reset the request time to push it to the end of the queue',
1950         'bool'
1951     );
1952
1953 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
1954     VALUES (
1955         'circ.holds.default_shelf_expire_interval',
1956         'Default hold shelf expire interval',
1957         '',
1958         'interval'
1959 );
1960
1961 INSERT INTO config.org_unit_setting_type (name, label, description, datatype, fm_class)
1962     VALUES (
1963         'circ.claim_return.copy_status', 
1964         'Claim Return Copy Status', 
1965         'Claims returned copies are put into this status.  Default is to leave the copy in the Checked Out status',
1966         'link', 
1967         'ccs' 
1968     );
1969
1970 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
1971     VALUES ( 
1972         'circ.max_fine.cap_at_price',
1973         oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
1974         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'),
1975         'bool' 
1976     );
1977
1978 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) 
1979     VALUES ( 
1980         'circ.holds.clear_shelf.copy_status',
1981         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Holds: Clear shelf copy status', 'coust', 'label'),
1982         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'),
1983         'link',
1984         'ccs'
1985     );
1986
1987 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1988     VALUES ( 
1989         'circ.selfcheck.workstation_required',
1990         oils_i18n_gettext('circ.selfcheck.workstation_required', 'Selfcheck: Workstation Required', 'coust', 'label'),
1991         oils_i18n_gettext('circ.selfcheck.workstation_required', 'All selfcheck stations must use a workstation', 'coust', 'description'),
1992         'bool'
1993     ), (
1994         'circ.selfcheck.patron_password_required',
1995         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Selfcheck: Require Patron Password', 'coust', 'label'),
1996         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Patron must log in with barcode and password at selfcheck station', 'coust', 'description'),
1997         'bool'
1998     );
1999
2000 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2001     VALUES ( 
2002         'circ.selfcheck.alert.sound',
2003         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Selfcheck: Audio Alerts', 'coust', 'label'),
2004         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Use audio alerts for selfcheck events', 'coust', 'description'),
2005         'bool'
2006     );
2007
2008 INSERT INTO
2009     config.org_unit_setting_type (name, label, description, datatype)
2010     VALUES (
2011         'notice.telephony.callfile_lines',
2012         'Telephony: Arbitrary line(s) to include in each notice callfile',
2013         $$
2014         This overrides lines from opensrf.xml.
2015         Line(s) must be valid for your target server and platform
2016         (e.g. Asterisk 1.4).
2017         $$,
2018         'string'
2019     );
2020
2021 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2022     VALUES ( 
2023         'circ.offline.username_allowed',
2024         oils_i18n_gettext('circ.offline.username_allowed', 'Offline: Patron Usernames Allowed', 'coust', 'label'),
2025         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'),
2026         'bool'
2027     );
2028
2029 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2030 VALUES (
2031     'acq.fund.balance_limit.warn',
2032     oils_i18n_gettext('acq.fund.balance_limit.warn', 'Fund Spending Limit for Warning', 'coust', 'label'),
2033     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'),
2034     'integer'
2035 );
2036
2037 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2038 VALUES (
2039     'acq.fund.balance_limit.block',
2040     oils_i18n_gettext('acq.fund.balance_limit.block', 'Fund Spending Limit for Block', 'coust', 'label'),
2041     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'),
2042     'integer'
2043 );
2044
2045 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2046     VALUES (
2047         'circ.holds.hold_has_copy_at.alert',
2048         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'Holds: Has Local Copy Alert', 'coust', 'label'),
2049         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'),
2050         'bool'
2051     ),(
2052         'circ.holds.hold_has_copy_at.block',
2053         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'Holds: Has Local Copy Block', 'coust', 'label'),
2054         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'),
2055         'bool'
2056     );
2057
2058 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2059 VALUES (
2060     'auth.persistent_login_interval',
2061     oils_i18n_gettext('auth.persistent_login_interval', 'Persistent Login Duration', 'coust', 'label'),
2062     oils_i18n_gettext('auth.persistent_login_interval', 'How long a persistent login lasts.  E.g. ''2 weeks''', 'coust', 'description'),
2063     'interval'
2064 );
2065
2066 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2067         'cat.marc_control_number_identifier',
2068         oils_i18n_gettext(
2069             'cat.marc_control_number_identifier', 
2070             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
2071             'coust', 
2072             'label'),
2073         oils_i18n_gettext(
2074             'cat.marc_control_number_identifier', 
2075             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
2076             'coust', 
2077             'description'),
2078         'string'
2079 );
2080
2081 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) 
2082     VALUES (
2083         'circ.selfcheck.block_checkout_on_copy_status',
2084         oils_i18n_gettext(
2085             'circ.selfcheck.block_checkout_on_copy_status',
2086             'Selfcheck: Block copy checkout status',
2087             'coust',
2088             'label'
2089         ),
2090         oils_i18n_gettext(
2091             'circ.selfcheck.block_checkout_on_copy_status',
2092             'List of copy status IDs that will block checkout even if the generic COPY_NOT_AVAILABLE event is overridden',
2093             'coust',
2094             'description'
2095         ),
2096         'array'
2097     );
2098
2099 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2100 VALUES (
2101     'serial.prev_issuance_copy_location',
2102     oils_i18n_gettext(
2103         'serial.prev_issuance_copy_location',
2104         'Serials: Previous Issuance Copy Location',
2105         'coust',
2106         'label'
2107     ),
2108     oils_i18n_gettext(
2109         'serial.prev_issuance_copy_location',
2110         'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
2111         'coust',
2112         'descripton'
2113         ),
2114     'link',
2115     'acpl'
2116 );
2117
2118 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2119 VALUES (
2120     'cat.default_classification_scheme',
2121     oils_i18n_gettext(
2122         'cat.default_classification_scheme',
2123         'Cataloging: Default Classification Scheme',
2124         'coust',
2125         'label'
2126     ),
2127     oils_i18n_gettext(
2128         'cat.default_classification_scheme',
2129         'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
2130         'coust',
2131         'descripton'
2132         ),
2133     'link',
2134     'acnc'
2135 );
2136
2137 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2138         'opac.org_unit_hiding.depth',
2139         oils_i18n_gettext(
2140             'opac.org_unit_hiding.depth',
2141             'OPAC: Org Unit Hiding Depth', 
2142             'coust', 
2143             'label'),
2144         oils_i18n_gettext(
2145             'opac.org_unit_hiding.depth',
2146             '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.', 
2147             'coust', 
2148             'description'),
2149         'integer'
2150 );
2151
2152 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2153     VALUES 
2154         ('circ.holds.alert_if_local_avail',
2155          'Holds: Local available alert',
2156          'If local copy is available, alert the person making the hold',
2157          'bool'),
2158
2159         ('circ.holds.deny_if_local_avail',
2160          'Holds: Local available block',
2161          'If local copy is available, deny the creation of the hold',
2162          'bool')
2163     ;
2164
2165 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2166     VALUES ( 
2167         'circ.holds.clear_shelf.no_capture_holds',
2168         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
2169         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
2170         'bool'
2171     );
2172
2173 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
2174     'circ.booking_reservation.stop_circ',
2175     'Disallow circulation of items when they are on booking reserve and that reserve overlaps with the checkout period',
2176     '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.',
2177     'bool'
2178 );
2179
2180 ---------------------------------
2181 -- Seed data for usr_setting_type
2182 ----------------------------------
2183
2184 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2185     VALUES ('opac.default_font', TRUE, 'OPAC Font Size', 'OPAC Font Size', 'string');
2186
2187 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2188     VALUES ('opac.default_search_depth', TRUE, 'OPAC Search Depth', 'OPAC Search Depth', 'integer');
2189
2190 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2191     VALUES ('opac.default_search_location', TRUE, 'OPAC Search Location', 'OPAC Search Location', 'integer');
2192
2193 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2194     VALUES ('opac.hits_per_page', TRUE, 'Hits per Page', 'Hits per Page', 'string');
2195
2196 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2197     VALUES ('opac.hold_notify', TRUE, 'Hold Notification Format', 'Hold Notification Format', 'string');
2198
2199 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2200     VALUES ('staff_client.catalog.record_view.default', TRUE, 'Default Record View', 'Default Record View', 'string');
2201
2202 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2203     VALUES ('staff_client.copy_editor.templates', TRUE, 'Copy Editor Template', 'Copy Editor Template', 'object');
2204
2205 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2206     VALUES ('circ.holds_behind_desk', FALSE, 'Hold is behind Circ Desk', 'Hold is behind Circ Desk', 'bool');
2207
2208 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2209     VALUES (
2210         'history.circ.retention_age',
2211         TRUE,
2212         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','label'),
2213         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','description'),
2214         'interval'
2215     ),(
2216         'history.circ.retention_start',
2217         FALSE,
2218         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','label'),
2219         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','description'),
2220         'date'
2221     );
2222
2223 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2224     VALUES (
2225         'history.hold.retention_age',
2226         TRUE,
2227         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','label'),
2228         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','description'),
2229         'interval'
2230     ),(
2231         'history.hold.retention_start',
2232         TRUE,
2233         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','label'),
2234         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','description'),
2235         'interval'
2236     ),(
2237         'history.hold.retention_count',
2238         TRUE,
2239         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','label'),
2240         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','description'),
2241         'integer'
2242     );
2243
2244 INSERT INTO config.usr_setting_type (name, opac_visible, label, description, datatype)
2245     VALUES (
2246         'opac.default_sort',
2247         TRUE,
2248         oils_i18n_gettext(
2249             'opac.default_sort',
2250             'OPAC Default Search Sort',
2251             'cust',
2252             'label'
2253         ),
2254         oils_i18n_gettext(
2255             'opac.default_sort',
2256             'OPAC Default Search Sort',
2257             'cust',
2258             'description'
2259         ),
2260         'string'
2261     );
2262
2263 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2264         'circ.missing_pieces.copy_status',
2265         oils_i18n_gettext(
2266             'circ.missing_pieces.copy_status',
2267             'Circulation: Item Status for Missing Pieces',
2268             'coust',
2269             'label'),
2270         oils_i18n_gettext(
2271             'circ.missing_pieces.copy_status',
2272             '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.',
2273             'coust',
2274             'description'),
2275         'link',
2276         'ccs'
2277 );
2278
2279 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2280         'circ.do_not_tally_claims_returned',
2281         oils_i18n_gettext(
2282             'circ.do_not_tally_claims_returned',
2283             'Circulation: Do not include outstanding Claims Returned circulations in lump sum tallies in Patron Display.',
2284             'coust',
2285             'label'),
2286         oils_i18n_gettext(
2287             'circ.do_not_tally_claims_returned',
2288             '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.',
2289             'coust',
2290             'description'),
2291         'bool'
2292 );
2293
2294 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2295     VALUES
2296         ('cat.label.font.size',
2297             oils_i18n_gettext('cat.label.font.size',
2298                 'Cataloging: Spine and pocket label font size', 'coust', 'label'),
2299             oils_i18n_gettext('cat.label.font.size',
2300                 'Set the default font size for spine and pocket labels', 'coust', 'description'),
2301             'integer'
2302         )
2303         ,('cat.label.font.family',
2304             oils_i18n_gettext('cat.label.font.family',
2305                 'Cataloging: Spine and pocket label font family', 'coust', 'label'),
2306             oils_i18n_gettext('cat.label.font.family',
2307                 '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".',
2308                 'coust', 'description'),
2309             'string'
2310         )
2311         ,('cat.spine.line.width',
2312             oils_i18n_gettext('cat.spine.line.width',
2313                 'Cataloging: Spine label line width', 'coust', 'label'),
2314             oils_i18n_gettext('cat.spine.line.width',
2315                 'Set the default line width for spine labels in number of characters. This specifies the boundary at which lines must be wrapped.',
2316                 'coust', 'description'),
2317             'integer'
2318         )
2319         ,('cat.spine.line.height',
2320             oils_i18n_gettext('cat.spine.line.height',
2321                 'Cataloging: Spine label maximum lines', 'coust', 'label'),
2322             oils_i18n_gettext('cat.spine.line.height',
2323                 'Set the default maximum number of lines for spine labels.',
2324                 'coust', 'description'),
2325             'integer'
2326         )
2327         ,('cat.spine.line.margin',
2328             oils_i18n_gettext('cat.spine.line.margin',
2329                 'Cataloging: Spine label left margin', 'coust', 'label'),
2330             oils_i18n_gettext('cat.spine.line.margin',
2331                 'Set the left margin for spine labels in number of characters.',
2332                 'coust', 'description'),
2333             'integer'
2334         )
2335 ;
2336
2337 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2338     VALUES
2339         ('cat.label.font.weight',
2340             oils_i18n_gettext('cat.label.font.weight',
2341                 'Cataloging: Spine and pocket label font weight', 'coust', 'label'),
2342             oils_i18n_gettext('cat.label.font.weight',
2343                 'Set the preferred font weight for spine and pocket labels. You can specify "normal", "bold", "bolder", or "lighter".',
2344                 'coust', 'description'),
2345             'string'
2346         )
2347 ;
2348
2349 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2350         'circ.patron_edit.clone.copy_address',
2351         oils_i18n_gettext(
2352             'circ.patron_edit.clone.copy_address',
2353             'Patron Registration: Cloned patrons get address copy',
2354             'coust',
2355             'label'
2356         ),
2357         oils_i18n_gettext(
2358             'circ.patron_edit.clone.copy_address',
2359             'In the Patron editor, copy addresses from the cloned user instead of linking directly to the address',
2360             'coust',
2361             'description'
2362         ),
2363         'bool'
2364 );
2365
2366 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2367         'ui.patron.default_ident_type',
2368         oils_i18n_gettext(
2369             'ui.patron.default_ident_type',
2370             'GUI: Default Ident Type for Patron Registration',
2371             'coust',
2372             'label'),
2373         oils_i18n_gettext(
2374             'ui.patron.default_ident_type',
2375             'This is the default Ident Type for new users in the patron editor.',
2376             'coust',
2377             'description'),
2378         'link',
2379         'cit'
2380 );
2381
2382 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2383         'ui.patron.default_country',
2384         oils_i18n_gettext(
2385             'ui.patron.default_country',
2386             'GUI: Default Country for New Addresses in Patron Editor',
2387             'coust',
2388             'label'),
2389         oils_i18n_gettext(
2390             'ui.patron.default_country',
2391             'This is the default Country for new addresses in the patron editor.',
2392             'coust',
2393             'description'),
2394         'string'
2395 );
2396
2397 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2398         'ui.patron.registration.require_address',
2399         oils_i18n_gettext(
2400             'ui.patron.registration.require_address',
2401             'GUI: Require at least one address for Patron Registration',
2402             'coust',
2403             'label'),
2404         oils_i18n_gettext(
2405             'ui.patron.registration.require_address',
2406             'Enforces a requirement for having at least one address for a patron during registration.',
2407             'coust',
2408             'description'),
2409         'bool'
2410 );
2411
2412 INSERT INTO config.org_unit_setting_type (
2413     name, label, description, datatype
2414 ) VALUES
2415     ('credit.processor.payflowpro.enabled',
2416         'Credit card processing: Enable PayflowPro payments',
2417         'This is NOT the same thing as the settings labeled with just "PayPal."',
2418         'bool'
2419     ),
2420     ('credit.processor.payflowpro.login',
2421         'Credit card processing: PayflowPro login/merchant ID',
2422         'Often the same thing as the PayPal manager login',
2423         'string'
2424     ),
2425     ('credit.processor.payflowpro.password',
2426         'Credit card processing: PayflowPro password',
2427         'PayflowPro password',
2428         'string'
2429     ),
2430     ('credit.processor.payflowpro.testmode',
2431         'Credit card processing: PayflowPro test mode',
2432         'Do not really process transactions, but stay in test mode - uses pilot-payflowpro.paypal.com instead of the usual host',
2433         'bool'
2434     ),
2435     ('credit.processor.payflowpro.vendor',
2436         'Credit card processing: PayflowPro vendor',
2437         'Often the same thing as the login',
2438         'string'
2439     ),
2440     ('credit.processor.payflowpro.partner',
2441         'Credit card processing: PayflowPro partner',
2442         'Often "PayPal" or "VeriSign", sometimes others',
2443         'string'
2444     );
2445
2446 -- Patch the name of an old selfcheck setting
2447 UPDATE actor.org_unit_setting
2448     SET name = 'circ.selfcheck.alert.popup'
2449     WHERE name = 'circ.selfcheck.alert_on_checkout_event';
2450
2451 -- Rename certain existing org_unit settings, if present,
2452 -- and make sure their values are JSON
2453 UPDATE actor.org_unit_setting SET
2454     name = 'circ.holds.default_estimated_wait_interval',
2455     --
2456     -- The value column should be JSON.  The old value should be a number,
2457     -- but it may or may not be quoted.  The following CASE behaves
2458     -- differently depending on whether value is quoted.  It is simplistic,
2459     -- and will be defeated by leading or trailing white space, or various
2460     -- malformations.
2461     --
2462     value = CASE WHEN SUBSTR( value, 1, 1 ) = '"'
2463                 THEN '"' || SUBSTR( value, 2, LENGTH(value) - 2 ) || ' days"'
2464                 ELSE '"' || value || ' days"'
2465             END
2466 WHERE name = 'circ.hold_estimate_wait_interval';
2467
2468 -- Create types for existing org unit settings
2469 -- not otherwise accounted for
2470
2471 INSERT INTO config.org_unit_setting_type(
2472  name,
2473  label,
2474  description
2475 )
2476 SELECT DISTINCT
2477         name,
2478         name,
2479         'FIXME'
2480 FROM
2481         actor.org_unit_setting
2482 WHERE
2483         name NOT IN (
2484                 SELECT name
2485                 FROM config.org_unit_setting_type
2486         );
2487
2488 -- Add foreign key to org_unit_setting
2489
2490 ALTER TABLE actor.org_unit_setting
2491         ADD FOREIGN KEY (name) REFERENCES config.org_unit_setting_type (name)
2492                 DEFERRABLE INITIALLY DEFERRED;
2493
2494 -- Create types for existing user settings
2495 -- not otherwise accounted for
2496
2497 INSERT INTO config.usr_setting_type (
2498         name,
2499         label,
2500         description
2501 )
2502 SELECT DISTINCT
2503         name,
2504         name,
2505         'FIXME'
2506 FROM
2507         actor.usr_setting
2508 WHERE
2509         name NOT IN (
2510                 SELECT name
2511                 FROM config.usr_setting_type
2512         );
2513
2514 -- Add foreign key to user_setting_type
2515
2516 ALTER TABLE actor.usr_setting
2517         ADD FOREIGN KEY (name) REFERENCES config.usr_setting_type (name)
2518                 ON DELETE CASCADE ON UPDATE CASCADE
2519                 DEFERRABLE INITIALLY DEFERRED;
2520
2521 INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES
2522     (1, 'cat.spine.line.margin', 0)
2523     ,(1, 'cat.spine.line.height', 9)
2524     ,(1, 'cat.spine.line.width', 8)
2525     ,(1, 'cat.label.font.family', '"monospace"')
2526     ,(1, 'cat.label.font.size', 10)
2527     ,(1, 'cat.label.font.weight', '"normal"')
2528 ;
2529
2530 ALTER TABLE action_trigger.event_definition ADD COLUMN granularity TEXT;
2531 ALTER TABLE action_trigger.event ADD COLUMN async_output BIGINT REFERENCES action_trigger.event_output (id);
2532 ALTER TABLE action_trigger.event_definition ADD COLUMN usr_field TEXT;
2533 ALTER TABLE action_trigger.event_definition ADD COLUMN opt_in_setting TEXT REFERENCES config.usr_setting_type (name) DEFERRABLE INITIALLY DEFERRED;
2534
2535 CREATE OR REPLACE FUNCTION is_json( TEXT ) RETURNS BOOL AS $f$
2536     use JSON::XS;
2537     my $json = shift();
2538     eval { JSON::XS->new->allow_nonref->decode( $json ) };
2539     return $@ ? 0 : 1;
2540 $f$ LANGUAGE PLPERLU;
2541
2542 ALTER TABLE action_trigger.event ADD COLUMN user_data TEXT CHECK (user_data IS NULL OR is_json( user_data ));
2543
2544 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2545     'hold_request.cancel.expire_no_target',
2546     'ahr',
2547     'A hold is cancelled because no copies were found'
2548 );
2549
2550 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2551     'hold_request.cancel.expire_holds_shelf',
2552     'ahr',
2553     'A hold is cancelled because it was on the holds shelf too long'
2554 );
2555
2556 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2557     'hold_request.cancel.staff',
2558     'ahr',
2559     'A hold is cancelled because it was cancelled by staff'
2560 );
2561
2562 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2563     'hold_request.cancel.patron',
2564     'ahr',
2565     'A hold is cancelled by the patron'
2566 );
2567
2568 -- Fix typos in descriptions
2569 UPDATE action_trigger.hook SET description = 'A hold is successfully placed' WHERE key = 'hold_request.success';
2570 UPDATE action_trigger.hook SET description = 'A hold is attempted but not successfully placed' WHERE key = 'hold_request.failure';
2571
2572 -- Add a hook for renewals
2573 INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('renewal','circ','Item renewed to user');
2574
2575 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');
2576
2577 -- Sample Pre-due Notice --
2578
2579 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, template) 
2580     VALUES (6, 'f', 1, '3 Day Courtesy Notice', 'checkout.due', 'CircIsOpen', 'SendEmail', '-3 days', 'due_date', 'usr', 
2581 $$
2582 [%- USE date -%]
2583 [%- user = target.0.usr -%]
2584 To: [%- params.recipient_email || user.email %]
2585 From: [%- params.sender_email || default_sender %]
2586 Subject: Courtesy Notice
2587
2588 Dear [% user.family_name %], [% user.first_given_name %]
2589 As a reminder, the following items are due in 3 days.
2590
2591 [% FOR circ IN target %]
2592     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
2593     Barcode: [% circ.target_copy.barcode %] 
2594     Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
2595     Item Cost: [% helpers.get_copy_price(circ.target_copy) %]
2596     Library: [% circ.circ_lib.name %]
2597     Library Phone: [% circ.circ_lib.phone %]
2598 [% END %]
2599
2600 $$);
2601
2602 INSERT INTO action_trigger.environment (event_def, path) VALUES 
2603     (6, 'target_copy.call_number.record.simple_record'),
2604     (6, 'usr'),
2605     (6, 'circ_lib.billing_address');
2606
2607 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2608     (6, 'max_delay_age', '"1 day"');
2609
2610 -- also add the max delay age to the default overdue notice event def
2611 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2612     (1, 'max_delay_age', '"1 day"');
2613   
2614 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');
2615
2616 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.');
2617
2618 INSERT INTO action_trigger.hook (
2619         key,
2620         core_type,
2621         description,
2622         passive
2623     ) VALUES (
2624         'hold_request.shelf_expires_soon',
2625         'ahr',
2626         'A hold on the shelf will expire there soon.',
2627         TRUE
2628     );
2629
2630 INSERT INTO action_trigger.event_definition (
2631         id,
2632         active,
2633         owner,
2634         name,
2635         hook,
2636         validator,
2637         reactor,
2638         delay,
2639         delay_field,
2640         group_field,
2641         template
2642     ) VALUES (
2643         7,
2644         FALSE,
2645         1,
2646         'Hold Expires from Shelf Soon',
2647         'hold_request.shelf_expires_soon',
2648         'HoldIsAvailable',
2649         'SendEmail',
2650         '- 1 DAY',
2651         'shelf_expire_time',
2652         'usr',
2653 $$
2654 [%- USE date -%]
2655 [%- user = target.0.usr -%]
2656 To: [%- params.recipient_email || user.email %]
2657 From: [%- params.sender_email || default_sender %]
2658 Subject: Hold Available Notification
2659
2660 Dear [% user.family_name %], [% user.first_given_name %]
2661 You requested holds on the following item(s), which are available for
2662 pickup, but these holds will soon expire.
2663
2664 [% FOR hold IN target %]
2665     [%- data = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
2666     Title: [% data.title %]
2667     Author: [% data.author %]
2668     Library: [% hold.pickup_lib.name %]
2669 [% END %]
2670 $$
2671     );
2672
2673 INSERT INTO action_trigger.environment (
2674         event_def,
2675         path
2676     ) VALUES
2677     ( 7, 'current_copy'),
2678     ( 7, 'pickup_lib.billing_address'),
2679     ( 7, 'usr');
2680
2681 INSERT INTO action_trigger.hook (
2682         key,
2683         core_type,
2684         description,
2685         passive
2686     ) VALUES (
2687         'hold_request.long_wait',
2688         'ahr',
2689         'A patron has been waiting on a hold to be fulfilled for a long time.',
2690         TRUE
2691     );
2692
2693 INSERT INTO action_trigger.event_definition (
2694         id,
2695         active,
2696         owner,
2697         name,
2698         hook,
2699         validator,
2700         reactor,
2701         delay,
2702         delay_field,
2703         group_field,
2704         template
2705     ) VALUES (
2706         9,
2707         FALSE,
2708         1,
2709         'Hold waiting for pickup for long time',
2710         'hold_request.long_wait',
2711         'NOOP_True',
2712         'SendEmail',
2713         '6 MONTHS',
2714         'request_time',
2715         'usr',
2716 $$
2717 [%- USE date -%]
2718 [%- user = target.0.usr -%]
2719 To: [%- params.recipient_email || user.email %]
2720 From: [%- params.sender_email || default_sender %]
2721 Subject: Long Wait Hold Notification
2722
2723 Dear [% user.family_name %], [% user.first_given_name %]
2724
2725 You requested hold(s) on the following item(s), but unfortunately
2726 we have not been able to fulfill your request after a considerable
2727 length of time.  If you would still like to receive these items,
2728 no action is required.
2729
2730 [% FOR hold IN target %]
2731     Title: [% hold.bib_rec.bib_record.simple_record.title %]
2732     Author: [% hold.bib_rec.bib_record.simple_record.author %]
2733 [% END %]
2734 $$
2735 );
2736
2737 INSERT INTO action_trigger.environment (
2738         event_def,
2739         path
2740     ) VALUES
2741     (9, 'pickup_lib'),
2742     (9, 'usr'),
2743     (9, 'bib_rec.bib_record.simple_record');
2744
2745 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2746     VALUES (
2747         'format.selfcheck.checkout',
2748         'circ',
2749         'Formats circ objects for self-checkout receipt',
2750         TRUE
2751     );
2752
2753 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2754     VALUES (
2755         10,
2756         TRUE,
2757         1,
2758         'Self-Checkout Receipt',
2759         'format.selfcheck.checkout',
2760         'NOOP_True',
2761         'ProcessTemplate',
2762         'usr',
2763         'print-on-demand',
2764 $$
2765 [%- USE date -%]
2766 [%- SET user = target.0.usr -%]
2767 [%- SET lib = target.0.circ_lib -%]
2768 [%- SET lib_addr = target.0.circ_lib.billing_address -%]
2769 [%- SET hours = lib.hours_of_operation -%]
2770 <div>
2771     <style> li { padding: 8px; margin 5px; }</style>
2772     <div>[% date.format %]</div>
2773     <div>[% lib.name %]</div>
2774     <div>[% lib_addr.street1 %] [% lib_addr.street2 %]</div>
2775     <div>[% lib_addr.city %], [% lib_addr.state %] [% lb_addr.post_code %]</div>
2776     <div>[% lib.phone %]</div>
2777     <br/>
2778
2779     [% user.family_name %], [% user.first_given_name %]
2780     <ol>
2781     [% FOR circ IN target %]
2782         [%-
2783             SET idx = loop.count - 1;
2784             SET udata =  user_data.$idx
2785         -%]
2786         <li>
2787             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2788             <div>Barcode: [% circ.target_copy.barcode %]</div>
2789             [% IF udata.renewal_failure %]
2790                 <div style='color:red;'>Renewal Failed</div>
2791             [% ELSE %]
2792                 <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2793             [% END %]
2794         </li>
2795     [% END %]
2796     </ol>
2797     
2798     <div>
2799         Library Hours
2800         [%- BLOCK format_time; date.format(time _ ' 1/1/1000', format='%I:%M %p'); END -%]
2801         <div>
2802             Monday 
2803             [% PROCESS format_time time = hours.dow_0_open %] 
2804             [% PROCESS format_time time = hours.dow_0_close %] 
2805         </div>
2806         <div>
2807             Tuesday 
2808             [% PROCESS format_time time = hours.dow_1_open %] 
2809             [% PROCESS format_time time = hours.dow_1_close %] 
2810         </div>
2811         <div>
2812             Wednesday 
2813             [% PROCESS format_time time = hours.dow_2_open %] 
2814             [% PROCESS format_time time = hours.dow_2_close %] 
2815         </div>
2816         <div>
2817             Thursday
2818             [% PROCESS format_time time = hours.dow_3_open %] 
2819             [% PROCESS format_time time = hours.dow_3_close %] 
2820         </div>
2821         <div>
2822             Friday
2823             [% PROCESS format_time time = hours.dow_4_open %] 
2824             [% PROCESS format_time time = hours.dow_4_close %] 
2825         </div>
2826         <div>
2827             Saturday
2828             [% PROCESS format_time time = hours.dow_5_open %] 
2829             [% PROCESS format_time time = hours.dow_5_close %] 
2830         </div>
2831         <div>
2832             Sunday 
2833             [% PROCESS format_time time = hours.dow_6_open %] 
2834             [% PROCESS format_time time = hours.dow_6_close %] 
2835         </div>
2836     </div>
2837 </div>
2838 $$
2839 );
2840
2841 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2842     ( 10, 'target_copy'),
2843     ( 10, 'circ_lib.billing_address'),
2844     ( 10, 'circ_lib.hours_of_operation'),
2845     ( 10, 'usr');
2846
2847 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2848     VALUES (
2849         'format.selfcheck.items_out',
2850         'circ',
2851         'Formats items out for self-checkout receipt',
2852         TRUE
2853     );
2854
2855 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2856     VALUES (
2857         11,
2858         TRUE,
2859         1,
2860         'Self-Checkout Items Out Receipt',
2861         'format.selfcheck.items_out',
2862         'NOOP_True',
2863         'ProcessTemplate',
2864         'usr',
2865         'print-on-demand',
2866 $$
2867 [%- USE date -%]
2868 [%- SET user = target.0.usr -%]
2869 <div>
2870     <style> li { padding: 8px; margin 5px; }</style>
2871     <div>[% date.format %]</div>
2872     <br/>
2873
2874     [% user.family_name %], [% user.first_given_name %]
2875     <ol>
2876     [% FOR circ IN target %]
2877         <li>
2878             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2879             <div>Barcode: [% circ.target_copy.barcode %]</div>
2880             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2881         </li>
2882     [% END %]
2883     </ol>
2884 </div>
2885 $$
2886 );
2887
2888
2889 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2890     ( 11, 'target_copy'),
2891     ( 11, 'circ_lib.billing_address'),
2892     ( 11, 'circ_lib.hours_of_operation'),
2893     ( 11, 'usr');
2894
2895 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2896     VALUES (
2897         'format.selfcheck.holds',
2898         'ahr',
2899         'Formats holds for self-checkout receipt',
2900         TRUE
2901     );
2902
2903 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2904     VALUES (
2905         12,
2906         TRUE,
2907         1,
2908         'Self-Checkout Holds Receipt',
2909         'format.selfcheck.holds',
2910         'NOOP_True',
2911         'ProcessTemplate',
2912         'usr',
2913         'print-on-demand',
2914 $$
2915 [%- USE date -%]
2916 [%- SET user = target.0.usr -%]
2917 <div>
2918     <style> li { padding: 8px; margin 5px; }</style>
2919     <div>[% date.format %]</div>
2920     <br/>
2921
2922     [% user.family_name %], [% user.first_given_name %]
2923     <ol>
2924     [% FOR hold IN target %]
2925         [%-
2926             SET idx = loop.count - 1;
2927             SET udata =  user_data.$idx
2928         -%]
2929         <li>
2930             <div>Title: [% hold.bib_rec.bib_record.simple_record.title %]</div>
2931             <div>Author: [% hold.bib_rec.bib_record.simple_record.author %]</div>
2932             <div>Pickup Location: [% hold.pickup_lib.name %]</div>
2933             <div>Status: 
2934                 [%- IF udata.ready -%]
2935                     Ready for pickup
2936                 [% ELSE %]
2937                     #[% udata.queue_position %] of [% udata.potential_copies %] copies.
2938                 [% END %]
2939             </div>
2940         </li>
2941     [% END %]
2942     </ol>
2943 </div>
2944 $$
2945 );
2946
2947
2948 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2949     ( 12, 'bib_rec.bib_record.simple_record'),
2950     ( 12, 'pickup_lib'),
2951     ( 12, 'usr');
2952
2953 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2954     VALUES (
2955         'format.selfcheck.fines',
2956         'au',
2957         'Formats fines for self-checkout receipt',
2958         TRUE
2959     );
2960
2961 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template )
2962     VALUES (
2963         13,
2964         TRUE,
2965         1,
2966         'Self-Checkout Fines Receipt',
2967         'format.selfcheck.fines',
2968         'NOOP_True',
2969         'ProcessTemplate',
2970         'print-on-demand',
2971 $$
2972 [%- USE date -%]
2973 [%- SET user = target -%]
2974 <div>
2975     <style> li { padding: 8px; margin 5px; }</style>
2976     <div>[% date.format %]</div>
2977     <br/>
2978
2979     [% user.family_name %], [% user.first_given_name %]
2980     <ol>
2981     [% FOR xact IN user.open_billable_transactions_summary %]
2982         <li>
2983             <div>Details: 
2984                 [% IF xact.xact_type == 'circulation' %]
2985                     [%- helpers.get_copy_bib_basics(xact.circulation.target_copy).title -%]
2986                 [% ELSE %]
2987                     [%- xact.last_billing_type -%]
2988                 [% END %]
2989             </div>
2990             <div>Total Billed: [% xact.total_owed %]</div>
2991             <div>Total Paid: [% xact.total_paid %]</div>
2992             <div>Balance Owed : [% xact.balance_owed %]</div>
2993         </li>
2994     [% END %]
2995     </ol>
2996 </div>
2997 $$
2998 );
2999
3000 INSERT INTO action_trigger.environment ( event_def, path) VALUES
3001     ( 13, 'open_billable_transactions_summary.circulation' );
3002
3003 INSERT INTO action_trigger.reactor (module,description) VALUES
3004 (   'SendFile',
3005     oils_i18n_gettext(
3006         'SendFile',
3007         '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.',
3008         'atreact',
3009         'description'
3010     )
3011 );
3012
3013 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
3014     VALUES (
3015         'format.acqli.html',
3016         'jub',
3017         'Formats lineitem worksheet for titles received',
3018         TRUE
3019     );
3020
3021 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template)
3022     VALUES (
3023         14,
3024         TRUE,
3025         1,
3026         'Lineitem Worksheet',
3027         'format.acqli.html',
3028         'NOOP_True',
3029         'ProcessTemplate',
3030         'print-on-demand',
3031 $$
3032 [%- USE date -%]
3033 [%- SET li = target; -%]
3034 <div class="wrapper">
3035     <div class="summary" style='font-size:110%; font-weight:bold;'>
3036
3037         <div>Title: [% helpers.get_li_attr("title", "", li.attributes) %]</div>
3038         <div>Author: [% helpers.get_li_attr("author", "", li.attributes) %]</div>
3039         <div class="count">Item Count: [% li.lineitem_details.size %]</div>
3040         <div class="lineid">Lineitem ID: [% li.id %]</div>
3041
3042         [% IF li.distribution_formulas.size > 0 %]
3043             [% SET forms = [] %]
3044             [% FOREACH form IN li.distribution_formulas; forms.push(form.formula.name); END %]
3045             <div>Distribution Formulas: [% forms.join(',') %]</div>
3046         [% END %]
3047
3048         [% IF li.lineitem_notes.size > 0 %]
3049             Lineitem Notes:
3050             <ul>
3051                 [%- FOR note IN li.lineitem_notes -%]
3052                     <li>
3053                     [% IF note.alert_text %]
3054                         [% note.alert_text.code -%] 
3055                         [% IF note.value -%]
3056                             : [% note.value %]
3057                         [% END %]
3058                     [% ELSE %]
3059                         [% note.value -%] 
3060                     [% END %]
3061                     </li>
3062                 [% END %]
3063             </ul>
3064         [% END %]
3065     </div>
3066     <br/>
3067     <table>
3068         <thead>
3069             <tr>
3070                 <th>Branch</th>
3071                 <th>Barcode</th>
3072                 <th>Call Number</th>
3073                 <th>Fund</th>
3074                 <th>Recd.</th>
3075                 <th>Notes</th>
3076             </tr>
3077         </thead>
3078         <tbody>
3079         [% FOREACH detail IN li.lineitem_details.sort('owning_lib') %]
3080             [% 
3081                 IF copy.eg_copy_id;
3082                     SET copy = copy.eg_copy_id;
3083                     SET cn_label = copy.call_number.label;
3084                 ELSE; 
3085                     SET copy = detail; 
3086                     SET cn_label = detail.cn_label;
3087                 END 
3088             %]
3089             <tr>
3090                 <!-- acq.lineitem_detail.id = [%- detail.id -%] -->
3091                 <td style='padding:5px;'>[% detail.owning_lib.shortname %]</td>
3092                 <td style='padding:5px;'>[% IF copy.barcode   %]<span class="barcode"  >[% detail.barcode   %]</span>[% END %]</td>
3093                 <td style='padding:5px;'>[% IF cn_label %]<span class="cn_label" >[% cn_label  %]</span>[% END %]</td>
3094                 <td style='padding:5px;'>[% IF detail.fund %]<span class="fund">[% detail.fund.code %] ([% detail.fund.year %])</span>[% END %]</td>
3095                 <td style='padding:5px;'>[% IF detail.recv_time %]<span class="recv_time">[% detail.recv_time %]</span>[% END %]</td>
3096                 <td style='padding:5px;'>[% detail.note %]</td>
3097             </tr>
3098         [% END %]
3099         </tbody>
3100     </table>
3101 </div>
3102 $$
3103 );
3104
3105
3106 INSERT INTO action_trigger.environment (event_def, path) VALUES
3107     ( 14, 'attributes' ),
3108     ( 14, 'lineitem_details' ),
3109     ( 14, 'lineitem_details.owning_lib' ),
3110     ( 14, 'lineitem_notes' )
3111 ;
3112
3113 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3114         'aur.ordered',
3115         'aur', 
3116         oils_i18n_gettext(
3117             'aur.ordered',
3118             'A patron acquisition request has been marked On-Order.',
3119             'ath',
3120             'description'
3121         ), 
3122         TRUE
3123     ), (
3124         'aur.received', 
3125         'aur', 
3126         oils_i18n_gettext(
3127             'aur.received', 
3128             'A patron acquisition request has been marked Received.',
3129             'ath',
3130             'description'
3131         ),
3132         TRUE
3133     ), (
3134         'aur.cancelled',
3135         'aur',
3136         oils_i18n_gettext(
3137             'aur.cancelled',
3138             'A patron acquisition request has been marked Cancelled.',
3139             'ath',
3140             'description'
3141         ),
3142         TRUE
3143     )
3144 ;
3145
3146 INSERT INTO action_trigger.validator (module,description) VALUES (
3147         'Acq::UserRequestOrdered',
3148         oils_i18n_gettext(
3149             'Acq::UserRequestOrdered',
3150             'Tests to see if the corresponding Line Item has a state of "on-order".',
3151             'atval',
3152             'description'
3153         )
3154     ), (
3155         'Acq::UserRequestReceived',
3156         oils_i18n_gettext(
3157             'Acq::UserRequestReceived',
3158             'Tests to see if the corresponding Line Item has a state of "received".',
3159             'atval',
3160             'description'
3161         )
3162     ), (
3163         'Acq::UserRequestCancelled',
3164         oils_i18n_gettext(
3165             'Acq::UserRequestCancelled',
3166             'Tests to see if the corresponding Line Item has a state of "cancelled".',
3167             'atval',
3168             'description'
3169         )
3170     )
3171 ;
3172
3173 -- What was event_definition #15 in v1.6.1 will be recreated as #20.  This
3174 -- renumbering requires some juggling:
3175 --
3176 -- 1. Update any child rows to point to #20.  These updates will temporarily
3177 -- violate foreign key constraints, but that's okay as long as we create
3178 -- #20 before committing.
3179 --
3180 -- 2. Delete the old #15.
3181 --
3182 -- 3. Insert the new #15.
3183 --
3184 -- 4. Insert #20.
3185 --
3186 -- We could combine steps 2 and 3 into a single update, but that would create
3187 -- additional opportunities for typos, since we already have the insert from
3188 -- an upgrade script.
3189
3190 UPDATE action_trigger.environment
3191 SET event_def = 20
3192 WHERE event_def = 15;
3193
3194 UPDATE action_trigger.event
3195 SET event_def = 20
3196 WHERE event_def = 15;
3197
3198 UPDATE action_trigger.event_params
3199 SET event_def = 20
3200 WHERE event_def = 15;
3201
3202 DELETE FROM action_trigger.event_definition
3203 WHERE id = 15;
3204
3205 INSERT INTO action_trigger.event_definition (
3206         id,
3207         active,
3208         owner,
3209         name,
3210         hook,
3211         validator,
3212         reactor,
3213         template
3214     ) VALUES (
3215         15,
3216         FALSE,
3217         1,
3218         'Email Notice: Patron Acquisition Request marked On-Order.',
3219         'aur.ordered',
3220         'Acq::UserRequestOrdered',
3221         'SendEmail',
3222 $$
3223 [%- USE date -%]
3224 [%- SET li = target.lineitem; -%]
3225 [%- SET user = target.usr -%]
3226 [%- SET title = helpers.get_li_attr("title", "", li.attributes) -%]
3227 [%- SET author = helpers.get_li_attr("author", "", li.attributes) -%]
3228 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) -%]
3229 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) -%]
3230 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3231 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3232
3233 To: [%- params.recipient_email || user.email %]
3234 From: [%- params.sender_email || default_sender %]
3235 Subject: Acquisition Request Notification
3236
3237 Dear [% user.family_name %], [% user.first_given_name %]
3238 Our records indicate the following acquisition request has been placed on order.
3239
3240 Title: [% title %]
3241 [% IF author %]Author: [% author %][% END %]
3242 [% IF edition %]Edition: [% edition %][% END %]
3243 [% IF isbn %]ISBN: [% isbn %][% END %]
3244 [% IF publisher %]Publisher: [% publisher %][% END %]
3245 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3246 Lineitem ID: [% li.id %]
3247 $$
3248     ), (
3249         16,
3250         FALSE,
3251         1,
3252         'Email Notice: Patron Acquisition Request marked Received.',
3253         'aur.received',
3254         'Acq::UserRequestReceived',
3255         'SendEmail',
3256 $$
3257 [%- USE date -%]
3258 [%- SET li = target.lineitem; -%]
3259 [%- SET user = target.usr -%]
3260 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3261 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3262 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3263 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3264 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3265 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3266
3267 To: [%- params.recipient_email || user.email %]
3268 From: [%- params.sender_email || default_sender %]
3269 Subject: Acquisition Request Notification
3270
3271 Dear [% user.family_name %], [% user.first_given_name %]
3272 Our records indicate the materials for the following acquisition request have been received.
3273
3274 Title: [% title %]
3275 [% IF author %]Author: [% author %][% END %]
3276 [% IF edition %]Edition: [% edition %][% END %]
3277 [% IF isbn %]ISBN: [% isbn %][% END %]
3278 [% IF publisher %]Publisher: [% publisher %][% END %]
3279 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3280 Lineitem ID: [% li.id %]
3281 $$
3282     ), (
3283         17,
3284         FALSE,
3285         1,
3286         'Email Notice: Patron Acquisition Request marked Cancelled.',
3287         'aur.cancelled',
3288         'Acq::UserRequestCancelled',
3289         'SendEmail',
3290 $$
3291 [%- USE date -%]
3292 [%- SET li = target.lineitem; -%]
3293 [%- SET user = target.usr -%]
3294 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3295 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3296 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3297 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3298 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3299 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3300
3301 To: [%- params.recipient_email || user.email %]
3302 From: [%- params.sender_email || default_sender %]
3303 Subject: Acquisition Request Notification
3304
3305 Dear [% user.family_name %], [% user.first_given_name %]
3306 Our records indicate the following acquisition request has been cancelled.
3307
3308 Title: [% title %]
3309 [% IF author %]Author: [% author %][% END %]
3310 [% IF edition %]Edition: [% edition %][% END %]
3311 [% IF isbn %]ISBN: [% isbn %][% END %]
3312 [% IF publisher %]Publisher: [% publisher %][% END %]
3313 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3314 Lineitem ID: [% li.id %]
3315 $$
3316     );
3317
3318 INSERT INTO action_trigger.environment (
3319         event_def,
3320         path
3321     ) VALUES 
3322         ( 15, 'lineitem' ),
3323         ( 15, 'lineitem.attributes' ),
3324         ( 15, 'usr' ),
3325
3326         ( 16, 'lineitem' ),
3327         ( 16, 'lineitem.attributes' ),
3328         ( 16, 'usr' ),
3329
3330         ( 17, 'lineitem' ),
3331         ( 17, 'lineitem.attributes' ),
3332         ( 17, 'usr' )
3333     ;
3334
3335 INSERT INTO action_trigger.event_definition
3336 (id, active, owner, name, hook, validator, reactor, cleanup_success, cleanup_failure, delay, delay_field, group_field, template) VALUES
3337 (23, true, 1, 'PO JEDI', 'acqpo.activated', 'Acq::PurchaseOrderEDIRequired', 'GeneratePurchaseOrderJEDI', NULL, NULL, '00:05:00', NULL, NULL,
3338 $$
3339 [%- USE date -%]
3340 [%# start JEDI document 
3341   # Vendor specific kludges:
3342   # BT      - vendcode goes to NAD/BY *suffix*  w/ 91 qualifier
3343   # INGRAM  - vendcode goes to NAD/BY *segment* w/ 91 qualifier (separately)
3344   # BRODART - vendcode goes to FTX segment (lineitem level)
3345 -%]
3346 [%- 
3347 IF target.provider.edi_default.vendcode && target.provider.code == 'BRODART';
3348     xtra_ftx = target.provider.edi_default.vendcode;
3349 END;
3350 -%]
3351 [%- BLOCK big_block -%]
3352 {
3353    "recipient":"[% target.provider.san %]",
3354    "sender":"[% target.ordering_agency.mailing_address.san %]",
3355    "body": [{
3356      "ORDERS":[ "order", {
3357         "po_number":[% target.id %],
3358         "date":"[% date.format(date.now, '%Y%m%d') %]",
3359         "buyer":[
3360             [%   IF   target.provider.edi_default.vendcode && (target.provider.code == 'BT' || target.provider.name.match('(?i)^BAKER & TAYLOR'))  -%]
3361                 {"id-qualifier": 91, "id":"[% target.ordering_agency.mailing_address.san _ ' ' _ target.provider.edi_default.vendcode %]"}
3362             [%- ELSIF target.provider.edi_default.vendcode && target.provider.code == 'INGRAM' -%]
3363                 {"id":"[% target.ordering_agency.mailing_address.san %]"},
3364                 {"id-qualifier": 91, "id":"[% target.provider.edi_default.vendcode %]"}
3365             [%- ELSE -%]
3366                 {"id":"[% target.ordering_agency.mailing_address.san %]"}
3367             [%- END -%]
3368         ],
3369         "vendor":[
3370             [%- # target.provider.name (target.provider.id) -%]
3371             "[% target.provider.san %]",
3372             {"id-qualifier": 92, "id":"[% target.provider.id %]"}
3373         ],
3374         "currency":"[% target.provider.currency_type %]",
3375                 
3376         "items":[
3377         [%- FOR li IN target.lineitems %]
3378         {
3379             "line_index":"[% li.id %]",
3380             "identifiers":[   [%-# li.isbns = helpers.get_li_isbns(li.attributes) %]
3381             [% FOR isbn IN helpers.get_li_isbns(li.attributes) -%]
3382                 [% IF isbn.length == 13 -%]
3383                 {"id-qualifier":"EN","id":"[% isbn %]"},
3384                 [% ELSE -%]
3385                 {"id-qualifier":"IB","id":"[% isbn %]"},
3386                 [%- END %]
3387             [% END %]
3388                 {"id-qualifier":"IN","id":"[% li.id %]"}
3389             ],
3390             "price":[% li.estimated_unit_price || '0.00' %],
3391             "desc":[
3392                 {"BTI":"[% helpers.get_li_attr('title',     '', li.attributes) %]"},
3393                 {"BPU":"[% helpers.get_li_attr('publisher', '', li.attributes) %]"},
3394                 {"BPD":"[% helpers.get_li_attr('pubdate',   '', li.attributes) %]"},
3395                 {"BPH":"[% helpers.get_li_attr('pagination','', li.attributes) %]"}
3396             ],
3397             [%- ftx_vals = []; 
3398                 FOR note IN li.lineitem_notes; 
3399                     NEXT UNLESS note.vendor_public == 't'; 
3400                     ftx_vals.push(note.value); 
3401                 END; 
3402                 IF xtra_ftx;           ftx_vals.unshift(xtra_ftx); END; 
3403                 IF ftx_vals.size == 0; ftx_vals.unshift('');       END;  # BT needs FTX+LIN for every LI, even if it is an empty one
3404             -%]
3405
3406             "free-text":[ 
3407                 [% FOR note IN ftx_vals -%] "[% note %]"[% UNLESS loop.last %], [% END %][% END %] 
3408             ],            
3409             "quantity":[% li.lineitem_details.size %]
3410         }[% UNLESS loop.last %],[% END %]
3411         [%-# TODO: lineitem details (later) -%]
3412         [% END %]
3413         ],
3414         "line_items":[% target.lineitems.size %]
3415      }]  [%# close ORDERS array %]
3416    }]    [%# close  body  array %]
3417 }
3418 [% END %]
3419 [% tempo = PROCESS big_block; helpers.escape_json(tempo) %]
3420
3421 $$);
3422
3423 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3424   (23, 'lineitems.attributes'), 
3425   (23, 'lineitems.lineitem_details'), 
3426   (23, 'lineitems.lineitem_notes'), 
3427   (23, 'ordering_agency.mailing_address'), 
3428   (23, 'provider');
3429
3430 UPDATE action_trigger.event_definition SET template = 
3431 $$
3432 [%- USE date -%]
3433 [%-
3434     # find a lineitem attribute by name and optional type
3435     BLOCK get_li_attr;
3436         FOR attr IN li.attributes;
3437             IF attr.attr_name == attr_name;
3438                 IF !attr_type OR attr_type == attr.attr_type;
3439                     attr.attr_value;
3440                     LAST;
3441                 END;
3442             END;
3443         END;
3444     END
3445 -%]
3446
3447 <h2>Purchase Order [% target.id %]</h2>
3448 <br/>
3449 date <b>[% date.format(date.now, '%Y%m%d') %]</b>
3450 <br/>
3451
3452 <style>
3453     table td { padding:5px; border:1px solid #aaa;}
3454     table { width:95%; border-collapse:collapse; }
3455     #vendor-notes { padding:5px; border:1px solid #aaa; }
3456 </style>
3457 <table id='vendor-table'>
3458   <tr>
3459     <td valign='top'>Vendor</td>
3460     <td>
3461       <div>[% target.provider.name %]</div>
3462       <div>[% target.provider.addresses.0.street1 %]</div>
3463       <div>[% target.provider.addresses.0.street2 %]</div>
3464       <div>[% target.provider.addresses.0.city %]</div>
3465       <div>[% target.provider.addresses.0.state %]</div>
3466       <div>[% target.provider.addresses.0.country %]</div>
3467       <div>[% target.provider.addresses.0.post_code %]</div>
3468     </td>
3469     <td valign='top'>Ship to / Bill to</td>
3470     <td>
3471       <div>[% target.ordering_agency.name %]</div>
3472       <div>[% target.ordering_agency.billing_address.street1 %]</div>
3473       <div>[% target.ordering_agency.billing_address.street2 %]</div>
3474       <div>[% target.ordering_agency.billing_address.city %]</div>
3475       <div>[% target.ordering_agency.billing_address.state %]</div>
3476       <div>[% target.ordering_agency.billing_address.country %]</div>
3477       <div>[% target.ordering_agency.billing_address.post_code %]</div>
3478     </td>
3479   </tr>
3480 </table>
3481
3482 <br/><br/>
3483 <fieldset id='vendor-notes'>
3484     <legend>Notes to the Vendor</legend>
3485     <ul>
3486     [% FOR note IN target.notes %]
3487         [% IF note.vendor_public == 't' %]
3488             <li>[% note.value %]</li>
3489         [% END %]
3490     [% END %]
3491     </ul>
3492 </fieldset>
3493 <br/><br/>
3494
3495 <table>
3496   <thead>
3497     <tr>
3498       <th>PO#</th>
3499       <th>ISBN or Item #</th>
3500       <th>Title</th>
3501       <th>Quantity</th>
3502       <th>Unit Price</th>
3503       <th>Line Total</th>
3504       <th>Notes</th>
3505     </tr>
3506   </thead>
3507   <tbody>
3508
3509   [% subtotal = 0 %]
3510   [% FOR li IN target.lineitems %]
3511
3512   <tr>
3513     [% count = li.lineitem_details.size %]
3514     [% price = li.estimated_unit_price %]
3515     [% litotal = (price * count) %]
3516     [% subtotal = subtotal + litotal %]
3517     [% isbn = PROCESS get_li_attr attr_name = 'isbn' %]
3518     [% ident = PROCESS get_li_attr attr_name = 'identifier' %]
3519
3520     <td>[% target.id %]</td>
3521     <td>[% isbn || ident %]</td>
3522     <td>[% PROCESS get_li_attr attr_name = 'title' %]</td>
3523     <td>[% count %]</td>
3524     <td>[% price %]</td>
3525     <td>[% litotal %]</td>
3526     <td>
3527         <ul>
3528         [% FOR note IN li.lineitem_notes %]
3529             [% IF note.vendor_public == 't' %]
3530                 <li>[% note.value %]</li>
3531             [% END %]
3532         [% END %]
3533         </ul>
3534     </td>
3535   </tr>
3536   [% END %]
3537   <tr>
3538     <td/><td/><td/><td/>
3539     <td>Subtotal</td>
3540     <td>[% subtotal %]</td>
3541   </tr>
3542   </tbody>
3543 </table>
3544
3545 <br/>
3546
3547 Total Line Item Count: [% target.lineitems.size %]
3548 $$
3549 WHERE id = 4;
3550
3551 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3552     (4, 'lineitems.lineitem_notes'),
3553     (4, 'notes');
3554
3555 INSERT INTO action_trigger.environment (event_def, path) VALUES
3556     ( 14, 'lineitem_notes.alert_text' ),
3557     ( 14, 'distribution_formulas.formula' ),
3558     ( 14, 'lineitem_details.fund' ),
3559     ( 14, 'lineitem_details.eg_copy_id' ),
3560     ( 14, 'lineitem_details.eg_copy_id.call_number' )
3561 ;
3562
3563 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3564         'aur.created',
3565         'aur',
3566         oils_i18n_gettext(
3567             'aur.created',
3568             'A patron has made an acquisitions request.',
3569             'ath',
3570             'description'
3571         ),
3572         TRUE
3573     ), (
3574         'aur.rejected',
3575         'aur',
3576         oils_i18n_gettext(
3577             'aur.rejected',
3578             'A patron acquisition request has been rejected.',
3579             'ath',
3580             'description'
3581         ),
3582         TRUE
3583     )
3584 ;
3585
3586 INSERT INTO action_trigger.event_definition (
3587         id,
3588         active,
3589         owner,
3590         name,
3591         hook,
3592         validator,
3593         reactor,
3594         template
3595     ) VALUES (
3596         18,
3597         FALSE,
3598         1,
3599         'Email Notice: Acquisition Request created.',
3600         'aur.created',
3601         'NOOP_True',
3602         'SendEmail',
3603 $$
3604 [%- USE date -%]
3605 [%- SET user = target.usr -%]
3606 [%- SET title = target.title -%]
3607 [%- SET author = target.author -%]
3608 [%- SET isxn = target.isxn -%]
3609 [%- SET publisher = target.publisher -%]
3610 [%- SET pubdate = target.pubdate -%]
3611
3612 To: [%- params.recipient_email || user.email %]
3613 From: [%- params.sender_email || default_sender %]
3614 Subject: Acquisition Request Notification
3615
3616 Dear [% user.family_name %], [% user.first_given_name %]
3617 Our records indicate that you have made the following acquisition request:
3618
3619 Title: [% title %]
3620 [% IF author %]Author: [% author %][% END %]
3621 [% IF edition %]Edition: [% edition %][% END %]
3622 [% IF isbn %]ISXN: [% isxn %][% END %]
3623 [% IF publisher %]Publisher: [% publisher %][% END %]
3624 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3625 $$
3626     ), (
3627         19,
3628         FALSE,
3629         1,
3630         'Email Notice: Acquisition Request Rejected.',
3631         'aur.rejected',
3632         'NOOP_True',
3633         'SendEmail',
3634 $$
3635 [%- USE date -%]
3636 [%- SET user = target.usr -%]
3637 [%- SET title = target.title -%]
3638 [%- SET author = target.author -%]
3639 [%- SET isxn = target.isxn -%]
3640 [%- SET publisher = target.publisher -%]
3641 [%- SET pubdate = target.pubdate -%]
3642 [%- SET cancel_reason = target.cancel_reason.description -%]
3643
3644 To: [%- params.recipient_email || user.email %]
3645 From: [%- params.sender_email || default_sender %]
3646 Subject: Acquisition Request Notification
3647
3648 Dear [% user.family_name %], [% user.first_given_name %]
3649 Our records indicate the following acquisition request has been rejected for this reason: [% cancel_reason %]
3650
3651 Title: [% title %]
3652 [% IF author %]Author: [% author %][% END %]
3653 [% IF edition %]Edition: [% edition %][% END %]
3654 [% IF isbn %]ISBN: [% isbn %][% END %]
3655 [% IF publisher %]Publisher: [% publisher %][% END %]
3656 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3657 $$
3658     );
3659
3660 INSERT INTO action_trigger.environment (
3661         event_def,
3662         path
3663     ) VALUES 
3664         ( 18, 'usr' ),
3665         ( 19, 'usr' ),
3666         ( 19, 'cancel_reason' )
3667     ;
3668
3669 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, template) 
3670     VALUES (20, 'f', 1, 'Password reset request notification', 'password.reset_request', 'NOOP_True', 'SendEmail', '00:00:01',
3671 $$
3672 [%- USE date -%]
3673 [%- user = target.usr -%]
3674 To: [%- params.recipient_email || user.email %]
3675 From: [%- params.sender_email || user.home_ou.email || default_sender %]
3676 Subject: [% user.home_ou.name %]: library account password reset request
3677   
3678 You have received this message because you, or somebody else, requested a reset
3679 of your library system password. If you did not request a reset of your library
3680 system password, just ignore this message and your current password will
3681 continue to work.
3682
3683 If you did request a reset of your library system password, please perform
3684 the following steps to continue the process of resetting your password:
3685
3686 1. Open the following link in a web browser: https://[% params.hostname %]/opac/password/[% params.locale || 'en-US' %]/[% target.uuid %]
3687 The browser displays a password reset form.
3688
3689 2. Enter your new password in the password reset form in the browser. You must
3690 enter the password twice to ensure that you do not make a mistake. If the
3691 passwords match, you will then be able to log in to your library system account
3692 with the new password.
3693
3694 $$);
3695
3696 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3697     VALUES (
3698         'format.acqcle.html',
3699         'acqcle',
3700         'Formats claim events into a voucher',
3701         TRUE
3702     );
3703
3704 INSERT INTO action_trigger.event_definition (
3705         id, active, owner, name, hook, group_field,
3706         validator, reactor, granularity, template
3707     ) VALUES (
3708         21,
3709         TRUE,
3710         1,
3711         'Claim Voucher',
3712         'format.acqcle.html',
3713         'claim',
3714         'NOOP_True',
3715         'ProcessTemplate',
3716         'print-on-demand',
3717 $$
3718 [%- USE date -%]
3719 [%- SET claim = target.0.claim -%]
3720 <!-- This will need refined/prettified. -->
3721 <div class="acq-claim-voucher">
3722     <h2>Claim: [% claim.id %] ([% claim.type.code %])</h2>
3723     <h3>Against: [%- helpers.get_li_attr("title", "", claim.lineitem_detail.lineitem.attributes) -%]</h3>
3724     <ul>
3725         [% FOR event IN target %]
3726         <li>
3727             Event type: [% event.type.code %]
3728             [% IF event.type.library_initiated %](Library initiated)[% END %]
3729             <br />
3730             Event date: [% event.event_date %]<br />
3731             Order date: [% event.claim.lineitem_detail.lineitem.purchase_order.order_date %]<br />
3732             Expected receive date: [% event.claim.lineitem_detail.lineitem.expected_recv_time %]<br />
3733             Initiated by: [% event.creator.family_name %], [% event.creator.first_given_name %] [% event.creator.second_given_name %]<br />
3734             Barcode: [% event.claim.lineitem_detail.barcode %]; Fund:
3735             [% event.claim.lineitem_detail.fund.code %]
3736             ([% event.claim.lineitem_detail.fund.year %])
3737         </li>
3738         [% END %]
3739     </ul>
3740 </div>
3741 $$
3742 );
3743
3744 INSERT INTO action_trigger.environment (event_def, path) VALUES
3745     (21, 'claim'),
3746     (21, 'claim.type'),
3747     (21, 'claim.lineitem_detail'),
3748     (21, 'claim.lineitem_detail.fund'),
3749     (21, 'claim.lineitem_detail.lineitem.attributes'),
3750     (21, 'claim.lineitem_detail.lineitem.purchase_order'),
3751     (21, 'creator'),
3752     (21, 'type')
3753 ;
3754
3755 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3756     VALUES (
3757         'format.acqinv.html',
3758         'acqinv',
3759         'Formats invoices into a voucher',
3760         TRUE
3761     );
3762
3763 INSERT INTO action_trigger.event_definition (
3764         id, active, owner, name, hook,
3765         validator, reactor, granularity, template
3766     ) VALUES (
3767         22,
3768         TRUE,
3769         1,
3770         'Invoice',
3771         'format.acqinv.html',
3772         'NOOP_True',
3773         'ProcessTemplate',
3774         'print-on-demand',
3775 $$
3776 [% FILTER collapse %]
3777 [%- SET invoice = target -%]
3778 <!-- This lacks totals, info about funds (for invoice entries,
3779     funds are per-LID!), and general refinement -->
3780 <div class="acq-invoice-voucher">
3781     <h1>Invoice</h1>
3782     <div>
3783         <strong>No.</strong> [% invoice.inv_ident %]
3784         [% IF invoice.inv_type %]
3785             / <strong>Type:</strong>[% invoice.inv_type %]
3786         [% END %]
3787     </div>
3788     <div>
3789         <dl>
3790             [% BLOCK ent_with_address %]
3791             <dt>[% ent_label %]: [% ent.name %] ([% ent.code %])</dt>
3792             <dd>
3793                 [% IF ent.addresses.0 %]
3794                     [% SET addr = ent.addresses.0 %]
3795                     [% addr.street1 %]<br />
3796                     [% IF addr.street2 %][% addr.street2 %]<br />[% END %]
3797                     [% addr.city %],
3798                     [% IF addr.county %] [% addr.county %], [% END %]
3799                     [% IF addr.state %] [% addr.state %] [% END %]
3800                     [% IF addr.post_code %][% addr.post_code %][% END %]<br />
3801                     [% IF addr.country %] [% addr.country %] [% END %]
3802                 [% END %]
3803                 <p>
3804                     [% IF ent.phone %] Phone: [% ent.phone %]<br />[% END %]
3805                     [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]<br />[% END %]
3806                     [% IF ent.url %] URL: [% ent.url %]<br />[% END %]
3807                     [% IF ent.email %] E-mail: [% ent.email %] [% END %]
3808                 </p>
3809             </dd>
3810             [% END %]
3811             [% INCLUDE ent_with_address
3812                 ent = invoice.provider
3813                 ent_label = "Provider" %]
3814             [% INCLUDE ent_with_address
3815                 ent = invoice.shipper
3816                 ent_label = "Shipper" %]
3817             <dt>Receiver</dt>
3818             <dd>
3819                 [% invoice.receiver.name %] ([% invoice.receiver.shortname %])
3820             </dd>
3821             <dt>Received</dt>
3822             <dd>
3823                 [% helpers.format_date(invoice.recv_date) %] by
3824                 [% invoice.recv_method %]
3825             </dd>
3826             [% IF invoice.note %]
3827                 <dt>Note</dt>
3828                 <dd>
3829                     [% invoice.note %]
3830                 </dd>
3831             [% END %]
3832         </dl>
3833     </div>
3834     <ul>
3835         [% FOR entry IN invoice.entries %]
3836             <li>
3837                 [% IF entry.lineitem %]
3838                     Title: [% helpers.get_li_attr(
3839                         "title", "", entry.lineitem.attributes
3840                     ) %]<br />
3841                     Author: [% helpers.get_li_attr(
3842                         "author", "", entry.lineitem.attributes
3843                     ) %]
3844                 [% END %]
3845                 [% IF entry.purchase_order %]
3846                     (PO: [% entry.purchase_order.name %])
3847                 [% END %]<br />
3848                 Invoice item count: [% entry.inv_item_count %]
3849                 [% IF entry.phys_item_count %]
3850                     / Physical item count: [% entry.phys_item_count %]
3851                 [% END %]
3852                 <br />
3853                 [% IF entry.cost_billed %]
3854                     Cost billed: [% entry.cost_billed %]
3855                     [% IF entry.billed_per_item %](per item)[% END %]
3856                     <br />
3857                 [% END %]
3858                 [% IF entry.actual_cost %]
3859                     Actual cost: [% entry.actual_cost %]<br />
3860                 [% END %]
3861                 [% IF entry.amount_paid %]
3862                     Amount paid: [% entry.amount_paid %]<br />
3863                 [% END %]
3864                 [% IF entry.note %]Note: [% entry.note %][% END %]
3865             </li>
3866         [% END %]
3867         [% FOR item IN invoice.items %]
3868             <li>
3869                 [% IF item.inv_item_type %]
3870                     Item Type: [% item.inv_item_type %]<br />
3871                 [% END %]
3872                 [% IF item.title %]Title/Description:
3873                     [% item.title %]<br />
3874                 [% END %]
3875                 [% IF item.author %]Author: [% item.author %]<br />[% END %]
3876                 [% IF item.purchase_order %]PO: [% item.purchase_order %]<br />[% END %]
3877                 [% IF item.note %]Note: [% item.note %]<br />[% END %]
3878                 [% IF item.cost_billed %]
3879                     Cost billed: [% item.cost_billed %]<br />
3880                 [% END %]
3881                 [% IF item.actual_cost %]
3882                     Actual cost: [% item.actual_cost %]<br />
3883                 [% END %]
3884                 [% IF item.amount_paid %]
3885                     Amount paid: [% item.amount_paid %]<br />
3886                 [% END %]
3887             </li>
3888         [% END %]
3889     </ul>
3890 </div>
3891 [% END %]
3892 $$
3893 );
3894
3895 INSERT INTO action_trigger.environment (event_def, path) VALUES
3896     (22, 'provider'),
3897     (22, 'provider.addresses'),
3898     (22, 'shipper'),
3899     (22, 'shipper.addresses'),
3900     (22, 'receiver'),
3901     (22, 'entries'),
3902     (22, 'entries.purchase_order'),
3903     (22, 'entries.lineitem'),
3904     (22, 'entries.lineitem.attributes'),
3905     (22, 'items')
3906 ;
3907
3908 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3909   (23, 'provider.edi_default');
3910
3911 INSERT INTO action_trigger.validator (module, description) 
3912     VALUES (
3913         'Acq::PurchaseOrderEDIRequired',
3914         oils_i18n_gettext(
3915             'Acq::PurchaseOrderEDIRequired',
3916             'Purchase order is delivered via EDI',
3917             'atval',
3918             'description'
3919         )
3920     );
3921
3922 INSERT INTO action_trigger.reactor (module, description)
3923     VALUES (
3924         'GeneratePurchaseOrderJEDI',
3925         oils_i18n_gettext(
3926             'GeneratePurchaseOrderJEDI',
3927             'Creates purchase order JEDI (JSON EDI) for subsequent EDI processing',
3928             'atreact',
3929             'description'
3930         )
3931     );
3932
3933 UPDATE action_trigger.hook 
3934     SET 
3935         key = 'acqpo.activated', 
3936         passive = FALSE,
3937         description = oils_i18n_gettext(
3938             'acqpo.activated',
3939             'Purchase order was activated',
3940             'ath',
3941             'description'
3942         )
3943     WHERE key = 'format.po.jedi';
3944
3945 -- We just changed a key in action_trigger.hook.  Now redirect any
3946 -- child rows to point to the new key.  (There probably aren't any;
3947 -- this is just a precaution against possible local modifications.)
3948
3949 UPDATE action_trigger.event_definition
3950 SET hook = 'acqpo.activated'
3951 WHERE hook = 'format.po.jedi';
3952
3953 INSERT INTO action_trigger.reactor (module, description) VALUES (
3954     'AstCall', 'Possibly place a phone call with Asterisk'
3955 );
3956
3957 INSERT INTO
3958     action_trigger.event_definition (
3959         id, active, owner, name, hook, validator, reactor,
3960         cleanup_success, cleanup_failure, delay, delay_field, group_field,
3961         max_delay, granularity, usr_field, opt_in_setting, template
3962     ) VALUES (
3963         24,
3964         FALSE,
3965         1,
3966         'Telephone Overdue Notice',
3967         'checkout.due', 'NOOP_True', 'AstCall',
3968         DEFAULT, DEFAULT, '5 seconds', 'due_date', 'usr',
3969         DEFAULT, DEFAULT, DEFAULT, DEFAULT,
3970         $$
3971 [% phone = target.0.usr.day_phone | replace('[\s\-\(\)]', '') -%]
3972 [% IF phone.match('^[2-9]') %][% country = 1 %][% ELSE %][% country = '' %][% END -%]
3973 Channel: [% channel_prefix %]/[% country %][% phone %]
3974 Context: overdue-test
3975 MaxRetries: 1
3976 RetryTime: 60
3977 WaitTime: 30
3978 Extension: 10
3979 Archive: 1
3980 Set: eg_user_id=[% target.0.usr.id %]
3981 Set: items=[% target.size %]
3982 Set: titlestring=[% titles = [] %][% FOR circ IN target %][% titles.push(circ.target_copy.call_number.record.simple_record.title) %][% END %][% titles.join(". ") %]
3983 $$
3984     );
3985
3986 INSERT INTO
3987     action_trigger.environment (id, event_def, path)
3988     VALUES
3989         (DEFAULT, 24, 'target_copy.call_number.record.simple_record'),
3990         (DEFAULT, 24, 'usr')
3991     ;
3992
3993 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3994         'circ.format.history.email',
3995         'circ', 
3996         oils_i18n_gettext(
3997             'circ.format.history.email',
3998             'An email has been requested for a circ history.',
3999             'ath',
4000             'description'
4001         ), 
4002         FALSE
4003     )
4004     ,(
4005         'circ.format.history.print',
4006         'circ', 
4007         oils_i18n_gettext(
4008             'circ.format.history.print',
4009             'A circ history needs to be formatted for printing.',
4010             'ath',
4011             'description'
4012         ), 
4013         FALSE
4014     )
4015     ,(
4016         'ahr.format.history.email',
4017         'ahr', 
4018         oils_i18n_gettext(
4019             'ahr.format.history.email',
4020             'An email has been requested for a hold request history.',
4021             'ath',
4022             'description'
4023         ), 
4024         FALSE
4025     )
4026     ,(
4027         'ahr.format.history.print',
4028         'ahr', 
4029         oils_i18n_gettext(
4030             'ahr.format.history.print',
4031             'A hold request history needs to be formatted for printing.',
4032             'ath',
4033             'description'
4034         ), 
4035         FALSE
4036     )
4037
4038 ;
4039
4040 INSERT INTO action_trigger.event_definition (
4041         id,
4042         active,
4043         owner,
4044         name,
4045         hook,
4046         validator,
4047         reactor,
4048         group_field,
4049         granularity,
4050         template
4051     ) VALUES (
4052         25,
4053         TRUE,
4054         1,
4055         'circ.history.email',
4056         'circ.format.history.email',
4057         'NOOP_True',
4058         'SendEmail',
4059         'usr',
4060         NULL,
4061 $$
4062 [%- USE date -%]
4063 [%- SET user = target.0.usr -%]
4064 To: [%- params.recipient_email || user.email %]
4065 From: [%- params.sender_email || default_sender %]
4066 Subject: Circulation History
4067
4068     [% FOR circ IN target %]
4069             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4070             Barcode: [% circ.target_copy.barcode %]
4071             Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]
4072             Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
4073             Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]
4074     [% END %]
4075 $$
4076     )
4077     ,(
4078         26,
4079         TRUE,
4080         1,
4081         'circ.history.print',
4082         'circ.format.history.print',
4083         'NOOP_True',
4084         'ProcessTemplate',
4085         'usr',
4086         'print-on-demand',
4087 $$
4088 [%- USE date -%]
4089 <div>
4090     <style> li { padding: 8px; margin 5px; }</style>
4091     <div>[% date.format %]</div>
4092     <br/>
4093
4094     [% user.family_name %], [% user.first_given_name %]
4095     <ol>
4096     [% FOR circ IN target %]
4097         <li>
4098             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
4099             <div>Barcode: [% circ.target_copy.barcode %]</div>
4100             <div>Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]</div>
4101             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
4102             <div>Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]</div>
4103         </li>
4104     [% END %]
4105     </ol>
4106 </div>
4107 $$
4108     )
4109     ,(
4110         27,
4111         TRUE,
4112         1,
4113         'ahr.history.email',
4114         'ahr.format.history.email',
4115         'NOOP_True',
4116         'SendEmail',
4117         'usr',
4118         NULL,
4119 $$
4120 [%- USE date -%]
4121 [%- SET user = target.0.usr -%]
4122 To: [%- params.recipient_email || user.email %]
4123 From: [%- params.sender_email || default_sender %]
4124 Subject: Hold Request History
4125
4126     [% FOR hold IN target %]
4127             [% helpers.get_copy_bib_basics(hold.current_copy.id).title %]
4128             Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]
4129             [% IF hold.fulfillment_time %]Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %][% END %]
4130     [% END %]
4131 $$
4132     )
4133     ,(
4134         28,
4135         TRUE,
4136         1,
4137         'ahr.history.print',
4138         'ahr.format.history.print',
4139         'NOOP_True',
4140         'ProcessTemplate',
4141         'usr',
4142         'print-on-demand',
4143 $$
4144 [%- USE date -%]
4145 <div>
4146     <style> li { padding: 8px; margin 5px; }</style>
4147     <div>[% date.format %]</div>
4148     <br/>
4149
4150     [% user.family_name %], [% user.first_given_name %]
4151     <ol>
4152     [% FOR hold IN target %]
4153         <li>
4154             <div>[% helpers.get_copy_bib_basics(hold.current_copy.id).title %]</div>
4155             <div>Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]</div>
4156             [% IF hold.fulfillment_time %]<div>Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %]</div>[% END %]
4157         </li>
4158     [% END %]
4159     </ol>
4160 </div>
4161 $$
4162     )
4163
4164 ;
4165
4166 INSERT INTO action_trigger.environment (
4167         event_def,
4168         path
4169     ) VALUES 
4170          ( 25, 'target_copy')
4171         ,( 25, 'usr' )
4172         ,( 26, 'target_copy' )
4173         ,( 26, 'usr' )
4174         ,( 27, 'current_copy' )
4175         ,( 27, 'usr' )
4176         ,( 28, 'current_copy' )
4177         ,( 28, 'usr' )
4178 ;
4179
4180 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4181         'money.format.payment_receipt.email',
4182         'mp', 
4183         oils_i18n_gettext(
4184             'money.format.payment_receipt.email',
4185             'An email has been requested for a payment receipt.',
4186             'ath',
4187             'description'
4188         ), 
4189         FALSE
4190     )
4191     ,(
4192         'money.format.payment_receipt.print',
4193         'mp', 
4194         oils_i18n_gettext(
4195             'money.format.payment_receipt.print',
4196             'A payment receipt needs to be formatted for printing.',
4197             'ath',
4198             'description'
4199         ), 
4200         FALSE
4201     )
4202 ;
4203
4204 INSERT INTO action_trigger.event_definition (
4205         id,
4206         active,
4207         owner,
4208         name,
4209         hook,
4210         validator,
4211         reactor,
4212         group_field,
4213         granularity,
4214         template
4215     ) VALUES (
4216         29,
4217         TRUE,
4218         1,
4219         'money.payment_receipt.email',
4220         'money.format.payment_receipt.email',
4221         'NOOP_True',
4222         'SendEmail',
4223         'xact.usr',
4224         NULL,
4225 $$
4226 [%- USE date -%]
4227 [%- SET user = target.0.xact.usr -%]
4228 To: [%- params.recipient_email || user.email %]
4229 From: [%- params.sender_email || default_sender %]
4230 Subject: Payment Receipt
4231
4232 [% date.format -%]
4233 [%- SET xact_mp_hash = {} -%]
4234 [%- FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions -%]
4235     [%- SET xact_id = mp.xact.id -%]
4236     [%- IF ! xact_mp_hash.defined( xact_id ) -%][%- xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } -%][%- END -%]
4237     [%- xact_mp_hash.$xact_id.payments.push(mp) -%]
4238 [%- END -%]
4239 [%- FOR xact_id IN xact_mp_hash.keys.sort -%]
4240     [%- SET xact = xact_mp_hash.$xact_id.xact %]
4241 Transaction ID: [% xact_id %]
4242     [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4243     [% ELSE %]Miscellaneous
4244     [% END %]
4245     Line item billings:
4246         [%- SET mb_type_hash = {} -%]
4247         [%- FOR mb IN xact.billings %][%# Group billings by their btype -%]
4248             [%- IF mb.voided == 'f' -%]
4249                 [%- SET mb_type = mb.btype.id -%]
4250                 [%- IF ! mb_type_hash.defined( mb_type ) -%][%- mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } -%][%- END -%]
4251                 [%- IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) -%][%- mb_type_hash.$mb_type.first_ts = mb.billing_ts -%][%- END -%]
4252                 [%- mb_type_hash.$mb_type.last_ts = mb.billing_ts -%]
4253                 [%- mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount -%]
4254                 [%- mb_type_hash.$mb_type.billings.push( mb ) -%]
4255             [%- END -%]
4256         [%- END -%]
4257         [%- FOR mb_type IN mb_type_hash.keys.sort -%]
4258             [%- IF mb_type == 1 %][%-# Consolidated view of overdue billings -%]
4259                 $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4260                     on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4261             [%- ELSE -%][%# all other billings show individually %]
4262                 [% FOR mb IN mb_type_hash.$mb_type.billings %]
4263                     $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4264                 [% END %]
4265             [% END %]
4266         [% END %]
4267     Line item payments:
4268         [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4269             Payment ID: [% mp.id %]
4270                 Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4271                     [% CASE "cash_payment" %]cash
4272                     [% CASE "check_payment" %]check
4273                     [% CASE "credit_card_payment" %]credit card (
4274                         [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4275                         [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4276                         [% cc_chunks.last -%]
4277                         exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4278                     )
4279                     [% CASE "credit_payment" %]credit
4280                     [% CASE "forgive_payment" %]forgiveness
4281                     [% CASE "goods_payment" %]goods
4282                     [% CASE "work_payment" %]work
4283                 [%- END %] on [% mp.payment_ts %] [% mp.note %]
4284         [% END %]
4285 [% END %]
4286 $$
4287     )
4288     ,(
4289         30,
4290         TRUE,
4291         1,
4292         'money.payment_receipt.print',
4293         'money.format.payment_receipt.print',
4294         'NOOP_True',
4295         'ProcessTemplate',
4296         'xact.usr',
4297         'print-on-demand',
4298 $$
4299 [%- USE date -%][%- SET user = target.0.xact.usr -%]
4300 <div style="li { padding: 8px; margin 5px; }">
4301     <div>[% date.format %]</div><br/>
4302     <ol>
4303     [% SET xact_mp_hash = {} %]
4304     [% FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions %]
4305         [% SET xact_id = mp.xact.id %]
4306         [% IF ! xact_mp_hash.defined( xact_id ) %][% xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } %][% END %]
4307         [% xact_mp_hash.$xact_id.payments.push(mp) %]
4308     [% END %]
4309     [% FOR xact_id IN xact_mp_hash.keys.sort %]
4310         [% SET xact = xact_mp_hash.$xact_id.xact %]
4311         <li>Transaction ID: [% xact_id %]
4312             [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4313             [% ELSE %]Miscellaneous
4314             [% END %]
4315             Line item billings:<ol>
4316                 [% SET mb_type_hash = {} %]
4317                 [% FOR mb IN xact.billings %][%# Group billings by their btype %]
4318                     [% IF mb.voided == 'f' %]
4319                         [% SET mb_type = mb.btype.id %]
4320                         [% IF ! mb_type_hash.defined( mb_type ) %][% mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } %][% END %]
4321                         [% IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) %][% mb_type_hash.$mb_type.first_ts = mb.billing_ts %][% END %]
4322                         [% mb_type_hash.$mb_type.last_ts = mb.billing_ts %]
4323                         [% mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount %]
4324                         [% mb_type_hash.$mb_type.billings.push( mb ) %]
4325                     [% END %]
4326                 [% END %]
4327                 [% FOR mb_type IN mb_type_hash.keys.sort %]
4328                     <li>[% IF mb_type == 1 %][%# Consolidated view of overdue billings %]
4329                         $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4330                             on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4331                     [% ELSE %][%# all other billings show individually %]
4332                         [% FOR mb IN mb_type_hash.$mb_type.billings %]
4333                             $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4334                         [% END %]
4335                     [% END %]</li>
4336                 [% END %]
4337             </ol>
4338             Line item payments:<ol>
4339                 [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4340                     <li>Payment ID: [% mp.id %]
4341                         Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4342                             [% CASE "cash_payment" %]cash
4343                             [% CASE "check_payment" %]check
4344                             [% CASE "credit_card_payment" %]credit card (
4345                                 [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4346                                 [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4347                                 [% cc_chunks.last -%]
4348                                 exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4349                             )
4350                             [% CASE "credit_payment" %]credit
4351                             [% CASE "forgive_payment" %]forgiveness
4352                             [% CASE "goods_payment" %]goods
4353                             [% CASE "work_payment" %]work
4354                         [%- END %] on [% mp.payment_ts %] [% mp.note %]
4355                     </li>
4356                 [% END %]
4357             </ol>
4358         </li>
4359     [% END %]
4360     </ol>
4361 </div>
4362 $$
4363     )
4364 ;
4365
4366 INSERT INTO action_trigger.environment (
4367         event_def,
4368         path
4369     ) VALUES -- for fleshing mp objects
4370          ( 29, 'xact')
4371         ,( 29, 'xact.usr')
4372         ,( 29, 'xact.grocery' )
4373         ,( 29, 'xact.circulation' )
4374         ,( 29, 'xact.summary' )
4375         ,( 30, 'xact')
4376         ,( 30, 'xact.usr')
4377         ,( 30, 'xact.grocery' )
4378         ,( 30, 'xact.circulation' )
4379         ,( 30, 'xact.summary' )
4380 ;
4381
4382 INSERT INTO action_trigger.cleanup ( module, description ) VALUES (
4383     'DeleteTempBiblioBucket',
4384     oils_i18n_gettext(
4385         'DeleteTempBiblioBucket',
4386         'Deletes a cbreb object used as a target if it has a btype of "temp"',
4387         'atclean',
4388         'description'
4389     )
4390 );
4391
4392 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4393         'biblio.format.record_entry.email',
4394         'cbreb', 
4395         oils_i18n_gettext(
4396             'biblio.format.record_entry.email',
4397             'An email has been requested for one or more biblio record entries.',
4398             'ath',
4399             'description'
4400         ), 
4401         FALSE
4402     )
4403     ,(
4404         'biblio.format.record_entry.print',
4405         'cbreb', 
4406         oils_i18n_gettext(
4407             'biblio.format.record_entry.print',
4408             'One or more biblio record entries need to be formatted for printing.',
4409             'ath',
4410             'description'
4411         ), 
4412         FALSE
4413     )
4414 ;
4415
4416 INSERT INTO action_trigger.event_definition (
4417         id,
4418         active,
4419         owner,
4420         name,
4421         hook,
4422         validator,
4423         reactor,
4424         cleanup_success,
4425         cleanup_failure,
4426         group_field,
4427         granularity,
4428         template
4429     ) VALUES (
4430         31,
4431         TRUE,
4432         1,
4433         'biblio.record_entry.email',
4434         'biblio.format.record_entry.email',
4435         'NOOP_True',
4436         'SendEmail',
4437         'DeleteTempBiblioBucket',
4438         'DeleteTempBiblioBucket',
4439         'owner',
4440         NULL,
4441 $$
4442 [%- USE date -%]
4443 [%- SET user = target.0.owner -%]
4444 To: [%- params.recipient_email || user.email %]
4445 From: [%- params.sender_email || default_sender %]
4446 Subject: Bibliographic Records
4447
4448     [% FOR cbreb IN target %]
4449     [% FOR cbrebi IN cbreb.items %]
4450         Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]
4451         Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]
4452         Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]
4453         Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4454
4455     [% END %]
4456     [% END %]
4457 $$
4458     )
4459     ,(
4460         32,
4461         TRUE,
4462         1,
4463         'biblio.record_entry.print',
4464         'biblio.format.record_entry.print',
4465         'NOOP_True',
4466         'ProcessTemplate',
4467         'DeleteTempBiblioBucket',
4468         'DeleteTempBiblioBucket',
4469         'owner',
4470         'print-on-demand',
4471 $$
4472 [%- USE date -%]
4473 <div>
4474     <style> li { padding: 8px; margin 5px; }</style>
4475     <ol>
4476     [% FOR cbreb IN target %]
4477     [% FOR cbrebi IN cbreb.items %]
4478         <li>Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]<br />
4479             Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]<br />
4480             Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]<br />
4481             Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4482         </li>
4483     [% END %]
4484     [% END %]
4485     </ol>
4486 </div>
4487 $$
4488     )
4489 ;
4490
4491 INSERT INTO action_trigger.environment (
4492         event_def,
4493         path
4494     ) VALUES -- for fleshing cbreb objects
4495          ( 31, 'owner' )
4496         ,( 31, 'items' )
4497         ,( 31, 'items.target_biblio_record_entry' )
4498         ,( 31, 'items.target_biblio_record_entry.simple_record' )
4499         ,( 31, 'items.target_biblio_record_entry.call_numbers' )
4500         ,( 31, 'items.target_biblio_record_entry.fixed_fields' )
4501         ,( 31, 'items.target_biblio_record_entry.notes' )
4502         ,( 31, 'items.target_biblio_record_entry.full_record_entries' )
4503         ,( 32, 'owner' )
4504         ,( 32, 'items' )
4505         ,( 32, 'items.target_biblio_record_entry' )
4506         ,( 32, 'items.target_biblio_record_entry.simple_record' )
4507         ,( 32, 'items.target_biblio_record_entry.call_numbers' )
4508         ,( 32, 'items.target_biblio_record_entry.fixed_fields' )
4509         ,( 32, 'items.target_biblio_record_entry.notes' )
4510         ,( 32, 'items.target_biblio_record_entry.full_record_entries' )
4511 ;
4512
4513 INSERT INTO action_trigger.environment (
4514         event_def,
4515         path
4516     ) VALUES -- for fleshing mp objects
4517          ( 29, 'credit_card_payment')
4518         ,( 29, 'xact.billings')
4519         ,( 29, 'xact.billings.btype')
4520         ,( 30, 'credit_card_payment')
4521         ,( 30, 'xact.billings')
4522         ,( 30, 'xact.billings.btype')
4523 ;
4524
4525 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
4526     (   'circ.format.missing_pieces.slip.print',
4527         'circ', 
4528         oils_i18n_gettext(
4529             'circ.format.missing_pieces.slip.print',
4530             'A missing pieces slip needs to be formatted for printing.',
4531             'ath',
4532             'description'
4533         ), 
4534         FALSE
4535     )
4536     ,(  'circ.format.missing_pieces.letter.print',
4537         'circ', 
4538         oils_i18n_gettext(
4539             'circ.format.missing_pieces.letter.print',
4540             'A missing pieces patron letter needs to be formatted for printing.',
4541             'ath',
4542             'description'
4543         ), 
4544         FALSE
4545     )
4546 ;
4547
4548 INSERT INTO action_trigger.event_definition (
4549         id,
4550         active,
4551         owner,
4552         name,
4553         hook,
4554         validator,
4555         reactor,
4556         group_field,
4557         granularity,
4558         template
4559     ) VALUES (
4560         33,
4561         TRUE,
4562         1,
4563         'circ.missing_pieces.slip.print',
4564         'circ.format.missing_pieces.slip.print',
4565         'NOOP_True',
4566         'ProcessTemplate',
4567         'usr',
4568         'print-on-demand',
4569 $$
4570 [%- USE date -%]
4571 [%- SET user = target.0.usr -%]
4572 <div style="li { padding: 8px; margin 5px; }">
4573     <div>[% date.format %]</div><br/>
4574     Missing pieces for:
4575     <ol>
4576     [% FOR circ IN target %]
4577         <li>Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]<br />
4578             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4579         </li>
4580     [% END %]
4581     </ol>
4582 </div>
4583 $$
4584     )
4585     ,(
4586         34,
4587         TRUE,
4588         1,
4589         'circ.missing_pieces.letter.print',
4590         'circ.format.missing_pieces.letter.print',
4591         'NOOP_True',
4592         'ProcessTemplate',
4593         'usr',
4594         'print-on-demand',
4595 $$
4596 [%- USE date -%]
4597 [%- SET user = target.0.usr -%]
4598 [% date.format %]
4599 Dear [% user.prefix %] [% user.first_given_name %] [% user.family_name %],
4600
4601 We are missing pieces for the following returned items:
4602 [% FOR circ IN target %]
4603 Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]
4604 [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4605 [% END %]
4606
4607 Please return these pieces as soon as possible.
4608
4609 Thanks!
4610
4611 Library Staff
4612 $$
4613     )
4614 ;
4615
4616 INSERT INTO action_trigger.environment (
4617         event_def,
4618         path
4619     ) VALUES -- for fleshing circ objects
4620          ( 33, 'usr')
4621         ,( 33, 'target_copy')
4622         ,( 33, 'target_copy.circ_lib')
4623         ,( 33, 'target_copy.circ_lib.mailing_address')
4624         ,( 33, 'target_copy.circ_lib.billing_address')
4625         ,( 33, 'target_copy.call_number')
4626         ,( 33, 'target_copy.call_number.owning_lib')
4627         ,( 33, 'target_copy.call_number.owning_lib.mailing_address')
4628         ,( 33, 'target_copy.call_number.owning_lib.billing_address')
4629         ,( 33, 'circ_lib')
4630         ,( 33, 'circ_lib.mailing_address')
4631         ,( 33, 'circ_lib.billing_address')
4632         ,( 34, 'usr')
4633         ,( 34, 'target_copy')
4634         ,( 34, 'target_copy.circ_lib')
4635         ,( 34, 'target_copy.circ_lib.mailing_address')
4636         ,( 34, 'target_copy.circ_lib.billing_address')
4637         ,( 34, 'target_copy.call_number')
4638         ,( 34, 'target_copy.call_number.owning_lib')
4639         ,( 34, 'target_copy.call_number.owning_lib.mailing_address')
4640         ,( 34, 'target_copy.call_number.owning_lib.billing_address')
4641         ,( 34, 'circ_lib')
4642         ,( 34, 'circ_lib.mailing_address')
4643         ,( 34, 'circ_lib.billing_address')
4644 ;
4645
4646 INSERT INTO action_trigger.hook (key,core_type,description,passive) 
4647     VALUES (   
4648         'ahr.format.pull_list',
4649         'ahr', 
4650         oils_i18n_gettext(
4651             'ahr.format.pull_list',
4652             'Format holds pull list for printing',
4653             'ath',
4654             'description'
4655         ), 
4656         FALSE
4657     );
4658
4659 INSERT INTO action_trigger.event_definition (
4660         id,
4661         active,
4662         owner,
4663         name,
4664         hook,
4665         validator,
4666         reactor,
4667         group_field,
4668         granularity,
4669         template
4670     ) VALUES (
4671         35,
4672         TRUE,
4673         1,
4674         'Holds Pull List',
4675         'ahr.format.pull_list',
4676         'NOOP_True',
4677         'ProcessTemplate',
4678         'pickup_lib',
4679         'print-on-demand',
4680 $$
4681 [%- USE date -%]
4682 <style>
4683     table { border-collapse: collapse; } 
4684     td { padding: 5px; border-bottom: 1px solid #888; } 
4685     th { font-weight: bold; }
4686 </style>
4687 [% 
4688     # Sort the holds into copy-location buckets
4689     # In the main print loop, sort each bucket by callnumber before printing
4690     SET holds_list = [];
4691     SET loc_data = [];
4692     SET current_location = target.0.current_copy.location.id;
4693     FOR hold IN target;
4694         IF current_location != hold.current_copy.location.id;
4695             SET current_location = hold.current_copy.location.id;
4696             holds_list.push(loc_data);
4697             SET loc_data = [];
4698         END;
4699         SET hold_data = {
4700             'hold' => hold,
4701             'callnumber' => hold.current_copy.call_number.label
4702         };
4703         loc_data.push(hold_data);
4704     END;
4705     holds_list.push(loc_data)
4706 %]
4707 <table>
4708     <thead>
4709         <tr>
4710             <th>Title</th>
4711             <th>Author</th>
4712             <th>Shelving Location</th>
4713             <th>Call Number</th>
4714             <th>Barcode</th>
4715             <th>Patron</th>
4716         </tr>
4717     </thead>
4718     <tbody>
4719     [% FOR loc_data IN holds_list  %]
4720         [% FOR hold_data IN loc_data.sort('callnumber') %]
4721             [% 
4722                 SET hold = hold_data.hold;
4723                 SET copy_data = helpers.get_copy_bib_basics(hold.current_copy.id);
4724             %]
4725             <tr>
4726                 <td>[% copy_data.title | truncate %]</td>
4727                 <td>[% copy_data.author | truncate %]</td>
4728                 <td>[% hold.current_copy.location.name %]</td>
4729                 <td>[% hold.current_copy.call_number.label %]</td>
4730                 <td>[% hold.current_copy.barcode %]</td>
4731                 <td>[% hold.usr.card.barcode %]</td>
4732             </tr>
4733         [% END %]
4734     [% END %]
4735     <tbody>
4736 </table>
4737 $$
4738 );
4739
4740 INSERT INTO action_trigger.environment (
4741         event_def,
4742         path
4743     ) VALUES
4744         (35, 'current_copy.location'),
4745         (35, 'current_copy.call_number'),
4746         (35, 'usr.card'),
4747         (35, 'pickup_lib')
4748 ;
4749
4750 INSERT INTO action_trigger.validator (module, description) VALUES ( 
4751     'HoldIsCancelled', 
4752     oils_i18n_gettext( 
4753         'HoldIsCancelled', 
4754         'Check whether a hold request is cancelled.', 
4755         'atval', 
4756         'description' 
4757     ) 
4758 );
4759
4760 -- Create the query schema, and the tables and views therein
4761
4762 DROP SCHEMA IF EXISTS sql CASCADE;
4763 DROP SCHEMA IF EXISTS query CASCADE;
4764
4765 CREATE SCHEMA query;
4766
4767 CREATE TABLE query.datatype (
4768         id              SERIAL            PRIMARY KEY,
4769         datatype_name   TEXT              NOT NULL UNIQUE,
4770         is_numeric      BOOL              NOT NULL DEFAULT FALSE,
4771         is_composite    BOOL              NOT NULL DEFAULT FALSE,
4772         CONSTRAINT qdt_comp_not_num CHECK
4773         ( is_numeric IS FALSE OR is_composite IS FALSE )
4774 );
4775
4776 -- Define the most common datatypes in query.datatype.  Note that none of
4777 -- these stock datatypes specifies a width or precision.
4778
4779 -- Also: set the sequence for query.datatype to 1000, leaving plenty of
4780 -- room for more stock datatypes if we ever want to add them.
4781
4782 SELECT setval( 'query.datatype_id_seq', 1000 );
4783
4784 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4785   VALUES (1, 'SMALLINT', true);
4786  
4787 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4788   VALUES (2, 'INTEGER', true);
4789  
4790 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4791   VALUES (3, 'BIGINT', true);
4792  
4793 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4794   VALUES (4, 'DECIMAL', true);
4795  
4796 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4797   VALUES (5, 'NUMERIC', true);
4798  
4799 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4800   VALUES (6, 'REAL', true);
4801  
4802 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4803   VALUES (7, 'DOUBLE PRECISION', true);
4804  
4805 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4806   VALUES (8, 'SERIAL', true);
4807  
4808 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4809   VALUES (9, 'BIGSERIAL', true);
4810  
4811 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4812   VALUES (10, 'MONEY', false);
4813  
4814 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4815   VALUES (11, 'VARCHAR', false);
4816  
4817 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4818   VALUES (12, 'CHAR', false);
4819  
4820 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4821   VALUES (13, 'TEXT', false);
4822  
4823 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4824   VALUES (14, '"char"', false);
4825  
4826 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4827   VALUES (15, 'NAME', false);
4828  
4829 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4830   VALUES (16, 'BYTEA', false);
4831  
4832 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4833   VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false);
4834  
4835 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4836   VALUES (18, 'TIMESTAMP WITH TIME ZONE', false);
4837  
4838 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4839   VALUES (19, 'DATE', false);
4840  
4841 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4842   VALUES (20, 'TIME WITHOUT TIME ZONE', false);
4843  
4844 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4845   VALUES (21, 'TIME WITH TIME ZONE', false);
4846  
4847 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4848   VALUES (22, 'INTERVAL', false);
4849  
4850 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4851   VALUES (23, 'BOOLEAN', false);
4852  
4853 CREATE TABLE query.subfield (
4854         id              SERIAL            PRIMARY KEY,
4855         composite_type  INT               NOT NULL
4856                                           REFERENCES query.datatype(id)
4857                                           ON DELETE CASCADE
4858                                           DEFERRABLE INITIALLY DEFERRED,
4859         seq_no          INT               NOT NULL
4860                                           CONSTRAINT qsf_pos_seq_no
4861                                           CHECK( seq_no > 0 ),
4862         subfield_type   INT               NOT NULL
4863                                           REFERENCES query.datatype(id)
4864                                           DEFERRABLE INITIALLY DEFERRED,
4865         CONSTRAINT qsf_datatype_seq_no UNIQUE (composite_type, seq_no)
4866 );
4867
4868 CREATE TABLE query.function_sig (
4869         id              SERIAL            PRIMARY KEY,
4870         function_name   TEXT              NOT NULL,
4871         return_type     INT               REFERENCES query.datatype(id)
4872                                           DEFERRABLE INITIALLY DEFERRED,
4873         is_aggregate    BOOL              NOT NULL DEFAULT FALSE,
4874         CONSTRAINT qfd_rtn_or_aggr CHECK
4875         ( return_type IS NULL OR is_aggregate = FALSE )
4876 );
4877
4878 CREATE INDEX query_function_sig_name_idx 
4879         ON query.function_sig (function_name);
4880
4881 CREATE TABLE query.function_param_def (
4882         id              SERIAL            PRIMARY KEY,
4883         function_id     INT               NOT NULL
4884                                           REFERENCES query.function_sig( id )
4885                                           ON DELETE CASCADE
4886                                           DEFERRABLE INITIALLY DEFERRED,
4887         seq_no          INT               NOT NULL
4888                                           CONSTRAINT qfpd_pos_seq_no CHECK
4889                                           ( seq_no > 0 ),
4890         datatype        INT               NOT NULL
4891                                           REFERENCES query.datatype( id )
4892                                           DEFERRABLE INITIALLY DEFERRED,
4893         CONSTRAINT qfpd_function_param_seq UNIQUE (function_id, seq_no)
4894 );
4895
4896 CREATE TABLE  query.stored_query (
4897         id            SERIAL         PRIMARY KEY,
4898         type          TEXT           NOT NULL CONSTRAINT query_type CHECK
4899                                      ( type IN ( 'SELECT', 'UNION', 'INTERSECT', 'EXCEPT' ) ),
4900         use_all       BOOLEAN        NOT NULL DEFAULT FALSE,
4901         use_distinct  BOOLEAN        NOT NULL DEFAULT FALSE,
4902         from_clause   INT            , --REFERENCES query.from_clause
4903                                      --DEFERRABLE INITIALLY DEFERRED,
4904         where_clause  INT            , --REFERENCES query.expression
4905                                      --DEFERRABLE INITIALLY DEFERRED,
4906         having_clause INT            , --REFERENCES query.expression
4907                                      --DEFERRABLE INITIALLY DEFERRED
4908         limit_count   INT            , --REFERENCES query.expression( id )
4909                                      --DEFERRABLE INITIALLY DEFERRED,
4910         offset_count  INT            --REFERENCES query.expression( id )
4911                                      --DEFERRABLE INITIALLY DEFERRED
4912 );
4913
4914 -- (Foreign keys to be defined later after other tables are created)
4915
4916 CREATE TABLE query.query_sequence (
4917         id              SERIAL            PRIMARY KEY,
4918         parent_query    INT               NOT NULL
4919                                           REFERENCES query.stored_query
4920                                                                           ON DELETE CASCADE
4921                                                                           DEFERRABLE INITIALLY DEFERRED,
4922         seq_no          INT               NOT NULL,
4923         child_query     INT               NOT NULL
4924                                           REFERENCES query.stored_query
4925                                                                           ON DELETE CASCADE
4926                                                                           DEFERRABLE INITIALLY DEFERRED,
4927         CONSTRAINT query_query_seq UNIQUE( parent_query, seq_no )
4928 );
4929
4930 CREATE TABLE query.bind_variable (
4931         name          TEXT             PRIMARY KEY,
4932         type          TEXT             NOT NULL
4933                                            CONSTRAINT bind_variable_type CHECK
4934                                            ( type in ( 'string', 'number', 'string_list', 'number_list' )),
4935         description   TEXT             NOT NULL,
4936         default_value TEXT,            -- to be encoded in JSON
4937         label         TEXT             NOT NULL
4938 );
4939
4940 CREATE TABLE query.expression (
4941         id            SERIAL        PRIMARY KEY,
4942         type          TEXT          NOT NULL CONSTRAINT expression_type CHECK
4943                                     ( type IN (
4944                                     'xbet',    -- between
4945                                     'xbind',   -- bind variable
4946                                     'xbool',   -- boolean
4947                                     'xcase',   -- case
4948                                     'xcast',   -- cast
4949                                     'xcol',    -- column
4950                                     'xex',     -- exists
4951                                     'xfunc',   -- function
4952                                     'xin',     -- in
4953                                     'xisnull', -- is null
4954                                     'xnull',   -- null
4955                                     'xnum',    -- number
4956                                     'xop',     -- operator
4957                                     'xser',    -- series
4958                                     'xstr',    -- string
4959                                     'xsubq'    -- subquery
4960                                                                 ) ),
4961         parenthesize  BOOL          NOT NULL DEFAULT FALSE,
4962         parent_expr   INT           REFERENCES query.expression
4963                                     ON DELETE CASCADE
4964                                     DEFERRABLE INITIALLY DEFERRED,
4965         seq_no        INT           NOT NULL DEFAULT 1,
4966         literal       TEXT,
4967         table_alias   TEXT,
4968         column_name   TEXT,
4969         left_operand  INT           REFERENCES query.expression
4970                                     DEFERRABLE INITIALLY DEFERRED,
4971         operator      TEXT,
4972         right_operand INT           REFERENCES query.expression
4973                                     DEFERRABLE INITIALLY DEFERRED,
4974         function_id   INT           REFERENCES query.function_sig
4975                                     DEFERRABLE INITIALLY DEFERRED,
4976         subquery      INT           REFERENCES query.stored_query
4977                                     DEFERRABLE INITIALLY DEFERRED,
4978         cast_type     INT           REFERENCES query.datatype
4979                                     DEFERRABLE INITIALLY DEFERRED,
4980         negate        BOOL          NOT NULL DEFAULT FALSE,
4981         bind_variable TEXT          REFERENCES query.bind_variable
4982                                         DEFERRABLE INITIALLY DEFERRED
4983 );
4984
4985 CREATE UNIQUE INDEX query_expr_parent_seq
4986         ON query.expression( parent_expr, seq_no )
4987         WHERE parent_expr IS NOT NULL;
4988
4989 -- Due to some circular references, the following foreign key definitions
4990 -- had to be deferred until query.expression existed:
4991
4992 ALTER TABLE query.stored_query
4993         ADD FOREIGN KEY ( where_clause )
4994         REFERENCES query.expression( id )
4995         DEFERRABLE INITIALLY DEFERRED;
4996
4997 ALTER TABLE query.stored_query
4998         ADD FOREIGN KEY ( having_clause )
4999         REFERENCES query.expression( id )
5000         DEFERRABLE INITIALLY DEFERRED;
5001
5002 ALTER TABLE query.stored_query
5003     ADD FOREIGN KEY ( limit_count )
5004     REFERENCES query.expression( id )
5005     DEFERRABLE INITIALLY DEFERRED;
5006
5007 ALTER TABLE query.stored_query
5008     ADD FOREIGN KEY ( offset_count )
5009     REFERENCES query.expression( id )
5010     DEFERRABLE INITIALLY DEFERRED;
5011
5012 CREATE TABLE query.case_branch (
5013         id            SERIAL        PRIMARY KEY,
5014         parent_expr   INT           NOT NULL REFERENCES query.expression
5015                                     ON DELETE CASCADE
5016                                     DEFERRABLE INITIALLY DEFERRED,
5017         seq_no        INT           NOT NULL,
5018         condition     INT           REFERENCES query.expression
5019                                     DEFERRABLE INITIALLY DEFERRED,
5020         result        INT           NOT NULL REFERENCES query.expression
5021                                     DEFERRABLE INITIALLY DEFERRED,
5022         CONSTRAINT case_branch_parent_seq UNIQUE (parent_expr, seq_no)
5023 );
5024
5025 CREATE TABLE query.from_relation (
5026         id               SERIAL        PRIMARY KEY,
5027         type             TEXT          NOT NULL CONSTRAINT relation_type CHECK (
5028                                            type IN ( 'RELATION', 'SUBQUERY', 'FUNCTION' ) ),
5029         table_name       TEXT,
5030         class_name       TEXT,
5031         subquery         INT           REFERENCES query.stored_query,
5032         function_call    INT           REFERENCES query.expression,
5033         table_alias      TEXT,
5034         parent_relation  INT           REFERENCES query.from_relation
5035                                        ON DELETE CASCADE
5036                                        DEFERRABLE INITIALLY DEFERRED,
5037         seq_no           INT           NOT NULL DEFAULT 1,
5038         join_type        TEXT          CONSTRAINT good_join_type CHECK (
5039                                            join_type IS NULL OR join_type IN
5040                                            ( 'INNER', 'LEFT', 'RIGHT', 'FULL' )
5041                                        ),
5042         on_clause        INT           REFERENCES query.expression
5043                                        DEFERRABLE INITIALLY DEFERRED,
5044         CONSTRAINT join_or_core CHECK (
5045         ( parent_relation IS NULL AND join_type IS NULL
5046           AND on_clause IS NULL )
5047         OR
5048         ( parent_relation IS NOT NULL AND join_type IS NOT NULL
5049           AND on_clause IS NOT NULL )
5050         )
5051 );
5052
5053 CREATE UNIQUE INDEX from_parent_seq
5054         ON query.from_relation( parent_relation, seq_no )
5055         WHERE parent_relation IS NOT NULL;
5056
5057 -- The following foreign key had to be deferred until
5058 -- query.from_relation existed
5059
5060 ALTER TABLE query.stored_query
5061         ADD FOREIGN KEY (from_clause)
5062         REFERENCES query.from_relation
5063         DEFERRABLE INITIALLY DEFERRED;
5064
5065 CREATE TABLE query.record_column (
5066         id            SERIAL            PRIMARY KEY,
5067         from_relation INT               NOT NULL REFERENCES query.from_relation
5068                                         ON DELETE CASCADE
5069                                         DEFERRABLE INITIALLY DEFERRED,
5070         seq_no        INT               NOT NULL,
5071         column_name   TEXT              NOT NULL,
5072         column_type   INT               NOT NULL REFERENCES query.datatype
5073                                         ON DELETE CASCADE
5074                                                                         DEFERRABLE INITIALLY DEFERRED,
5075         CONSTRAINT column_sequence UNIQUE (from_relation, seq_no)
5076 );
5077
5078 CREATE TABLE query.select_item (
5079         id               SERIAL         PRIMARY KEY,
5080         stored_query     INT            NOT NULL REFERENCES query.stored_query
5081                                         ON DELETE CASCADE
5082                                         DEFERRABLE INITIALLY DEFERRED,
5083         seq_no           INT            NOT NULL,
5084         expression       INT            NOT NULL REFERENCES query.expression
5085                                         DEFERRABLE INITIALLY DEFERRED,
5086         column_alias     TEXT,
5087         grouped_by       BOOL           NOT NULL DEFAULT FALSE,
5088         CONSTRAINT select_sequence UNIQUE( stored_query, seq_no )
5089 );
5090
5091 CREATE TABLE query.order_by_item (
5092         id               SERIAL         PRIMARY KEY,
5093         stored_query     INT            NOT NULL REFERENCES query.stored_query
5094                                         ON DELETE CASCADE
5095                                         DEFERRABLE INITIALLY DEFERRED,
5096         seq_no           INT            NOT NULL,
5097         expression       INT            NOT NULL REFERENCES query.expression
5098                                         ON DELETE CASCADE
5099                                         DEFERRABLE INITIALLY DEFERRED,
5100         CONSTRAINT order_by_sequence UNIQUE( stored_query, seq_no )
5101 );
5102
5103 ------------------------------------------------------------
5104 -- Create updatable views for different kinds of expressions
5105 ------------------------------------------------------------
5106
5107 -- Create updatable view for BETWEEN expressions
5108
5109 CREATE OR REPLACE VIEW query.expr_xbet AS
5110     SELECT
5111                 id,
5112                 parenthesize,
5113                 parent_expr,
5114                 seq_no,
5115                 left_operand,
5116                 negate
5117     FROM
5118         query.expression
5119     WHERE
5120         type = 'xbet';
5121
5122 CREATE OR REPLACE RULE query_expr_xbet_insert_rule AS
5123     ON INSERT TO query.expr_xbet
5124     DO INSTEAD
5125     INSERT INTO query.expression (
5126                 id,
5127                 type,
5128                 parenthesize,
5129                 parent_expr,
5130                 seq_no,
5131                 left_operand,
5132                 negate
5133     ) VALUES (
5134         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5135         'xbet',
5136         COALESCE(NEW.parenthesize, FALSE),
5137         NEW.parent_expr,
5138         COALESCE(NEW.seq_no, 1),
5139                 NEW.left_operand,
5140                 COALESCE(NEW.negate, false)
5141     );
5142
5143 CREATE OR REPLACE RULE query_expr_xbet_update_rule AS
5144     ON UPDATE TO query.expr_xbet
5145     DO INSTEAD
5146     UPDATE query.expression SET
5147         id = NEW.id,
5148         parenthesize = NEW.parenthesize,
5149         parent_expr = NEW.parent_expr,
5150         seq_no = NEW.seq_no,
5151                 left_operand = NEW.left_operand,
5152                 negate = NEW.negate
5153     WHERE
5154         id = OLD.id;
5155
5156 CREATE OR REPLACE RULE query_expr_xbet_delete_rule AS
5157     ON DELETE TO query.expr_xbet
5158     DO INSTEAD
5159     DELETE FROM query.expression WHERE id = OLD.id;
5160
5161 -- Create updatable view for bind variable expressions
5162
5163 CREATE OR REPLACE VIEW query.expr_xbind AS
5164     SELECT
5165                 id,
5166                 parenthesize,
5167                 parent_expr,
5168                 seq_no,
5169                 bind_variable
5170     FROM
5171         query.expression
5172     WHERE
5173         type = 'xbind';
5174
5175 CREATE OR REPLACE RULE query_expr_xbind_insert_rule AS
5176     ON INSERT TO query.expr_xbind
5177     DO INSTEAD
5178     INSERT INTO query.expression (
5179                 id,
5180                 type,
5181                 parenthesize,
5182                 parent_expr,
5183                 seq_no,
5184                 bind_variable
5185     ) VALUES (
5186         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5187         'xbind',
5188         COALESCE(NEW.parenthesize, FALSE),
5189         NEW.parent_expr,
5190         COALESCE(NEW.seq_no, 1),
5191                 NEW.bind_variable
5192     );
5193
5194 CREATE OR REPLACE RULE query_expr_xbind_update_rule AS
5195     ON UPDATE TO query.expr_xbind
5196     DO INSTEAD
5197     UPDATE query.expression SET
5198         id = NEW.id,
5199         parenthesize = NEW.parenthesize,
5200         parent_expr = NEW.parent_expr,
5201         seq_no = NEW.seq_no,
5202                 bind_variable = NEW.bind_variable
5203     WHERE
5204         id = OLD.id;
5205
5206 CREATE OR REPLACE RULE query_expr_xbind_delete_rule AS
5207     ON DELETE TO query.expr_xbind
5208     DO INSTEAD
5209     DELETE FROM query.expression WHERE id = OLD.id;
5210
5211 -- Create updatable view for boolean expressions
5212
5213 CREATE OR REPLACE VIEW query.expr_xbool AS
5214     SELECT
5215                 id,
5216                 parenthesize,
5217                 parent_expr,
5218                 seq_no,
5219                 literal,
5220                 negate
5221     FROM
5222         query.expression
5223     WHERE
5224         type = 'xbool';
5225
5226 CREATE OR REPLACE RULE query_expr_xbool_insert_rule AS
5227     ON INSERT TO query.expr_xbool
5228     DO INSTEAD
5229     INSERT INTO query.expression (
5230                 id,
5231                 type,
5232                 parenthesize,
5233                 parent_expr,
5234                 seq_no,
5235                 literal,
5236                 negate
5237     ) VALUES (
5238         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5239         'xbool',
5240         COALESCE(NEW.parenthesize, FALSE),
5241         NEW.parent_expr,
5242         COALESCE(NEW.seq_no, 1),
5243         NEW.literal,
5244                 COALESCE(NEW.negate, false)
5245     );
5246
5247 CREATE OR REPLACE RULE query_expr_xbool_update_rule AS
5248     ON UPDATE TO query.expr_xbool
5249     DO INSTEAD
5250     UPDATE query.expression SET
5251         id = NEW.id,
5252         parenthesize = NEW.parenthesize,
5253         parent_expr = NEW.parent_expr,
5254         seq_no = NEW.seq_no,
5255         literal = NEW.literal,
5256                 negate = NEW.negate
5257     WHERE
5258         id = OLD.id;
5259
5260 CREATE OR REPLACE RULE query_expr_xbool_delete_rule AS
5261     ON DELETE TO query.expr_xbool
5262     DO INSTEAD
5263     DELETE FROM query.expression WHERE id = OLD.id;
5264
5265 -- Create updatable view for CASE expressions
5266
5267 CREATE OR REPLACE VIEW query.expr_xcase AS
5268     SELECT
5269                 id,
5270                 parenthesize,
5271                 parent_expr,
5272                 seq_no,
5273                 left_operand,
5274                 negate
5275     FROM
5276         query.expression
5277     WHERE
5278         type = 'xcase';
5279
5280 CREATE OR REPLACE RULE query_expr_xcase_insert_rule AS
5281     ON INSERT TO query.expr_xcase
5282     DO INSTEAD
5283     INSERT INTO query.expression (
5284                 id,
5285                 type,
5286                 parenthesize,
5287                 parent_expr,
5288                 seq_no,
5289                 left_operand,
5290                 negate
5291     ) VALUES (
5292         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5293         'xcase',
5294         COALESCE(NEW.parenthesize, FALSE),
5295         NEW.parent_expr,
5296         COALESCE(NEW.seq_no, 1),
5297                 NEW.left_operand,
5298                 COALESCE(NEW.negate, false)
5299     );
5300
5301 CREATE OR REPLACE RULE query_expr_xcase_update_rule AS
5302     ON UPDATE TO query.expr_xcase
5303     DO INSTEAD
5304     UPDATE query.expression SET
5305         id = NEW.id,
5306         parenthesize = NEW.parenthesize,
5307         parent_expr = NEW.parent_expr,
5308         seq_no = NEW.seq_no,
5309                 left_operand = NEW.left_operand,
5310                 negate = NEW.negate
5311     WHERE
5312         id = OLD.id;
5313
5314 CREATE OR REPLACE RULE query_expr_xcase_delete_rule AS
5315     ON DELETE TO query.expr_xcase
5316     DO INSTEAD
5317     DELETE FROM query.expression WHERE id = OLD.id;
5318
5319 -- Create updatable view for cast expressions
5320
5321 CREATE OR REPLACE VIEW query.expr_xcast AS
5322     SELECT
5323                 id,
5324                 parenthesize,
5325                 parent_expr,
5326                 seq_no,
5327                 left_operand,
5328                 cast_type,
5329                 negate
5330     FROM
5331         query.expression
5332     WHERE
5333         type = 'xcast';
5334
5335 CREATE OR REPLACE RULE query_expr_xcast_insert_rule AS
5336     ON INSERT TO query.expr_xcast
5337     DO INSTEAD
5338     INSERT INTO query.expression (
5339         id,
5340         type,
5341         parenthesize,
5342         parent_expr,
5343         seq_no,
5344         left_operand,
5345         cast_type,
5346         negate
5347     ) VALUES (
5348         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5349         'xcast',
5350         COALESCE(NEW.parenthesize, FALSE),
5351         NEW.parent_expr,
5352         COALESCE(NEW.seq_no, 1),
5353         NEW.left_operand,
5354         NEW.cast_type,
5355         COALESCE(NEW.negate, false)
5356     );
5357
5358 CREATE OR REPLACE RULE query_expr_xcast_update_rule AS
5359     ON UPDATE TO query.expr_xcast
5360     DO INSTEAD
5361     UPDATE query.expression SET
5362         id = NEW.id,
5363         parenthesize = NEW.parenthesize,
5364         parent_expr = NEW.parent_expr,
5365         seq_no = NEW.seq_no,
5366                 left_operand = NEW.left_operand,
5367                 cast_type = NEW.cast_type,
5368                 negate = NEW.negate
5369     WHERE
5370         id = OLD.id;
5371
5372 CREATE OR REPLACE RULE query_expr_xcast_delete_rule AS
5373     ON DELETE TO query.expr_xcast
5374     DO INSTEAD
5375     DELETE FROM query.expression WHERE id = OLD.id;
5376
5377 -- Create updatable view for column expressions
5378
5379 CREATE OR REPLACE VIEW query.expr_xcol AS
5380     SELECT
5381                 id,
5382                 parenthesize,
5383                 parent_expr,
5384                 seq_no,
5385                 table_alias,
5386                 column_name,
5387                 negate
5388     FROM
5389         query.expression
5390     WHERE
5391         type = 'xcol';
5392
5393 CREATE OR REPLACE RULE query_expr_xcol_insert_rule AS
5394     ON INSERT TO query.expr_xcol
5395     DO INSTEAD
5396     INSERT INTO query.expression (
5397                 id,
5398                 type,
5399                 parenthesize,
5400                 parent_expr,
5401                 seq_no,
5402                 table_alias,
5403                 column_name,
5404                 negate
5405     ) VALUES (
5406         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5407         'xcol',
5408         COALESCE(NEW.parenthesize, FALSE),
5409         NEW.parent_expr,
5410         COALESCE(NEW.seq_no, 1),
5411                 NEW.table_alias,
5412                 NEW.column_name,
5413                 COALESCE(NEW.negate, false)
5414     );
5415
5416 CREATE OR REPLACE RULE query_expr_xcol_update_rule AS
5417     ON UPDATE TO query.expr_xcol
5418     DO INSTEAD
5419     UPDATE query.expression SET
5420         id = NEW.id,
5421         parenthesize = NEW.parenthesize,
5422         parent_expr = NEW.parent_expr,
5423         seq_no = NEW.seq_no,
5424                 table_alias = NEW.table_alias,
5425                 column_name = NEW.column_name,
5426                 negate = NEW.negate
5427     WHERE
5428         id = OLD.id;
5429
5430 CREATE OR REPLACE RULE query_expr_xcol_delete_rule AS
5431     ON DELETE TO query.expr_xcol
5432     DO INSTEAD
5433     DELETE FROM query.expression WHERE id = OLD.id;
5434
5435 -- Create updatable view for EXISTS expressions
5436
5437 CREATE OR REPLACE VIEW query.expr_xex AS
5438     SELECT
5439                 id,
5440                 parenthesize,
5441                 parent_expr,
5442                 seq_no,
5443                 subquery,
5444                 negate
5445     FROM
5446         query.expression
5447     WHERE
5448         type = 'xex';
5449
5450 CREATE OR REPLACE RULE query_expr_xex_insert_rule AS
5451     ON INSERT TO query.expr_xex
5452     DO INSTEAD
5453     INSERT INTO query.expression (
5454                 id,
5455                 type,
5456                 parenthesize,
5457                 parent_expr,
5458                 seq_no,
5459                 subquery,
5460                 negate
5461     ) VALUES (
5462         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5463         'xex',
5464         COALESCE(NEW.parenthesize, FALSE),
5465         NEW.parent_expr,
5466         COALESCE(NEW.seq_no, 1),
5467                 NEW.subquery,
5468                 COALESCE(NEW.negate, false)
5469     );
5470
5471 CREATE OR REPLACE RULE query_expr_xex_update_rule AS
5472     ON UPDATE TO query.expr_xex
5473     DO INSTEAD
5474     UPDATE query.expression SET
5475         id = NEW.id,
5476         parenthesize = NEW.parenthesize,
5477         parent_expr = NEW.parent_expr,
5478         seq_no = NEW.seq_no,
5479                 subquery = NEW.subquery,
5480                 negate = NEW.negate
5481     WHERE
5482         id = OLD.id;
5483
5484 CREATE OR REPLACE RULE query_expr_xex_delete_rule AS
5485     ON DELETE TO query.expr_xex
5486     DO INSTEAD
5487     DELETE FROM query.expression WHERE id = OLD.id;
5488
5489 -- Create updatable view for function call expressions
5490
5491 CREATE OR REPLACE VIEW query.expr_xfunc AS
5492     SELECT
5493         id,
5494         parenthesize,
5495         parent_expr,
5496         seq_no,
5497         column_name,
5498         function_id,
5499         negate
5500     FROM
5501         query.expression
5502     WHERE
5503         type = 'xfunc';
5504
5505 CREATE OR REPLACE RULE query_expr_xfunc_insert_rule AS
5506     ON INSERT TO query.expr_xfunc
5507     DO INSTEAD
5508     INSERT INTO query.expression (
5509         id,
5510         type,
5511         parenthesize,
5512         parent_expr,
5513         seq_no,
5514         column_name,
5515         function_id,
5516         negate
5517     ) VALUES (
5518         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5519         'xfunc',
5520         COALESCE(NEW.parenthesize, FALSE),
5521         NEW.parent_expr,
5522         COALESCE(NEW.seq_no, 1),
5523         NEW.column_name,
5524         NEW.function_id,
5525         COALESCE(NEW.negate, false)
5526     );
5527
5528 CREATE OR REPLACE RULE query_expr_xfunc_update_rule AS
5529     ON UPDATE TO query.expr_xfunc
5530     DO INSTEAD
5531     UPDATE query.expression SET
5532         id = NEW.id,
5533         parenthesize = NEW.parenthesize,
5534         parent_expr = NEW.parent_expr,
5535         seq_no = NEW.seq_no,
5536         column_name = NEW.column_name,
5537         function_id = NEW.function_id,
5538         negate = NEW.negate
5539     WHERE
5540         id = OLD.id;
5541
5542 CREATE OR REPLACE RULE query_expr_xfunc_delete_rule AS
5543     ON DELETE TO query.expr_xfunc
5544     DO INSTEAD
5545     DELETE FROM query.expression WHERE id = OLD.id;
5546
5547 -- Create updatable view for IN expressions
5548
5549 CREATE OR REPLACE VIEW query.expr_xin AS
5550     SELECT
5551                 id,
5552                 parenthesize,
5553                 parent_expr,
5554                 seq_no,
5555                 left_operand,
5556                 subquery,
5557                 negate
5558     FROM
5559         query.expression
5560     WHERE
5561         type = 'xin';
5562
5563 CREATE OR REPLACE RULE query_expr_xin_insert_rule AS
5564     ON INSERT TO query.expr_xin
5565     DO INSTEAD
5566     INSERT INTO query.expression (
5567                 id,
5568                 type,
5569                 parenthesize,
5570                 parent_expr,
5571                 seq_no,
5572                 left_operand,
5573                 subquery,
5574                 negate
5575     ) VALUES (
5576         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5577         'xin',
5578         COALESCE(NEW.parenthesize, FALSE),
5579         NEW.parent_expr,
5580         COALESCE(NEW.seq_no, 1),
5581                 NEW.left_operand,
5582                 NEW.subquery,
5583                 COALESCE(NEW.negate, false)
5584     );
5585
5586 CREATE OR REPLACE RULE query_expr_xin_update_rule AS
5587     ON UPDATE TO query.expr_xin
5588     DO INSTEAD
5589     UPDATE query.expression SET
5590         id = NEW.id,
5591         parenthesize = NEW.parenthesize,
5592         parent_expr = NEW.parent_expr,
5593         seq_no = NEW.seq_no,
5594                 left_operand = NEW.left_operand,
5595                 subquery = NEW.subquery,
5596                 negate = NEW.negate
5597     WHERE
5598         id = OLD.id;
5599
5600 CREATE OR REPLACE RULE query_expr_xin_delete_rule AS
5601     ON DELETE TO query.expr_xin
5602     DO INSTEAD
5603     DELETE FROM query.expression WHERE id = OLD.id;
5604
5605 -- Create updatable view for IS NULL expressions
5606
5607 CREATE OR REPLACE VIEW query.expr_xisnull AS
5608     SELECT
5609                 id,
5610                 parenthesize,
5611                 parent_expr,
5612                 seq_no,
5613                 left_operand,
5614                 negate
5615     FROM
5616         query.expression
5617     WHERE
5618         type = 'xisnull';
5619
5620 CREATE OR REPLACE RULE query_expr_xisnull_insert_rule AS
5621     ON INSERT TO query.expr_xisnull
5622     DO INSTEAD
5623     INSERT INTO query.expression (
5624                 id,
5625                 type,
5626                 parenthesize,
5627                 parent_expr,
5628                 seq_no,
5629                 left_operand,
5630                 negate
5631     ) VALUES (
5632         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5633         'xisnull',
5634         COALESCE(NEW.parenthesize, FALSE),
5635         NEW.parent_expr,
5636         COALESCE(NEW.seq_no, 1),
5637                 NEW.left_operand,
5638                 COALESCE(NEW.negate, false)
5639     );
5640
5641 CREATE OR REPLACE RULE query_expr_xisnull_update_rule AS
5642     ON UPDATE TO query.expr_xisnull
5643     DO INSTEAD
5644     UPDATE query.expression SET
5645         id = NEW.id,
5646         parenthesize = NEW.parenthesize,
5647         parent_expr = NEW.parent_expr,
5648         seq_no = NEW.seq_no,
5649                 left_operand = NEW.left_operand,
5650                 negate = NEW.negate
5651     WHERE
5652         id = OLD.id;
5653
5654 CREATE OR REPLACE RULE query_expr_xisnull_delete_rule AS
5655     ON DELETE TO query.expr_xisnull
5656     DO INSTEAD
5657     DELETE FROM query.expression WHERE id = OLD.id;
5658
5659 -- Create updatable view for NULL expressions
5660
5661 CREATE OR REPLACE VIEW query.expr_xnull AS
5662     SELECT
5663                 id,
5664                 parenthesize,
5665                 parent_expr,
5666                 seq_no,
5667                 negate
5668     FROM
5669         query.expression
5670     WHERE
5671         type = 'xnull';
5672
5673 CREATE OR REPLACE RULE query_expr_xnull_insert_rule AS
5674     ON INSERT TO query.expr_xnull
5675     DO INSTEAD
5676     INSERT INTO query.expression (
5677                 id,
5678                 type,
5679                 parenthesize,
5680                 parent_expr,
5681                 seq_no,
5682                 negate
5683     ) VALUES (
5684         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5685         'xnull',
5686         COALESCE(NEW.parenthesize, FALSE),
5687         NEW.parent_expr,
5688         COALESCE(NEW.seq_no, 1),
5689                 COALESCE(NEW.negate, false)
5690     );
5691
5692 CREATE OR REPLACE RULE query_expr_xnull_update_rule AS
5693     ON UPDATE TO query.expr_xnull
5694     DO INSTEAD
5695     UPDATE query.expression SET
5696         id = NEW.id,
5697         parenthesize = NEW.parenthesize,
5698         parent_expr = NEW.parent_expr,
5699         seq_no = NEW.seq_no,
5700                 negate = NEW.negate
5701     WHERE
5702         id = OLD.id;
5703
5704 CREATE OR REPLACE RULE query_expr_xnull_delete_rule AS
5705     ON DELETE TO query.expr_xnull
5706     DO INSTEAD
5707     DELETE FROM query.expression WHERE id = OLD.id;
5708
5709 -- Create updatable view for numeric literal expressions
5710
5711 CREATE OR REPLACE VIEW query.expr_xnum AS
5712     SELECT
5713                 id,
5714                 parenthesize,
5715                 parent_expr,
5716                 seq_no,
5717                 literal
5718     FROM
5719         query.expression
5720     WHERE
5721         type = 'xnum';
5722
5723 CREATE OR REPLACE RULE query_expr_xnum_insert_rule AS
5724     ON INSERT TO query.expr_xnum
5725     DO INSTEAD
5726     INSERT INTO query.expression (
5727                 id,
5728                 type,
5729                 parenthesize,
5730                 parent_expr,
5731                 seq_no,
5732                 literal
5733     ) VALUES (
5734         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5735         'xnum',
5736         COALESCE(NEW.parenthesize, FALSE),
5737         NEW.parent_expr,
5738         COALESCE(NEW.seq_no, 1),
5739         NEW.literal
5740     );
5741
5742 CREATE OR REPLACE RULE query_expr_xnum_update_rule AS
5743     ON UPDATE TO query.expr_xnum
5744     DO INSTEAD
5745     UPDATE query.expression SET
5746         id = NEW.id,
5747         parenthesize = NEW.parenthesize,
5748         parent_expr = NEW.parent_expr,
5749         seq_no = NEW.seq_no,
5750         literal = NEW.literal
5751     WHERE
5752         id = OLD.id;
5753
5754 CREATE OR REPLACE RULE query_expr_xnum_delete_rule AS
5755     ON DELETE TO query.expr_xnum
5756     DO INSTEAD
5757     DELETE FROM query.expression WHERE id = OLD.id;
5758
5759 -- Create updatable view for operator expressions
5760
5761 CREATE OR REPLACE VIEW query.expr_xop AS
5762     SELECT
5763                 id,
5764                 parenthesize,
5765                 parent_expr,
5766                 seq_no,
5767                 left_operand,
5768                 operator,
5769                 right_operand,
5770                 negate
5771     FROM
5772         query.expression
5773     WHERE
5774         type = 'xop';
5775
5776 CREATE OR REPLACE RULE query_expr_xop_insert_rule AS
5777     ON INSERT TO query.expr_xop
5778     DO INSTEAD
5779     INSERT INTO query.expression (
5780                 id,
5781                 type,
5782                 parenthesize,
5783                 parent_expr,
5784                 seq_no,
5785                 left_operand,
5786                 operator,
5787                 right_operand,
5788                 negate
5789     ) VALUES (
5790         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5791         'xop',
5792         COALESCE(NEW.parenthesize, FALSE),
5793         NEW.parent_expr,
5794         COALESCE(NEW.seq_no, 1),
5795                 NEW.left_operand,
5796                 NEW.operator,
5797                 NEW.right_operand,
5798                 COALESCE(NEW.negate, false)
5799     );
5800
5801 CREATE OR REPLACE RULE query_expr_xop_update_rule AS
5802     ON UPDATE TO query.expr_xop
5803     DO INSTEAD
5804     UPDATE query.expression SET
5805         id = NEW.id,
5806         parenthesize = NEW.parenthesize,
5807         parent_expr = NEW.parent_expr,
5808         seq_no = NEW.seq_no,
5809                 left_operand = NEW.left_operand,
5810                 operator = NEW.operator,
5811                 right_operand = NEW.right_operand,
5812                 negate = NEW.negate
5813     WHERE
5814         id = OLD.id;
5815
5816 CREATE OR REPLACE RULE query_expr_xop_delete_rule AS
5817     ON DELETE TO query.expr_xop
5818     DO INSTEAD
5819     DELETE FROM query.expression WHERE id = OLD.id;
5820
5821 -- Create updatable view for series expressions
5822 -- i.e. series of expressions separated by operators
5823
5824 CREATE OR REPLACE VIEW query.expr_xser AS
5825     SELECT
5826                 id,
5827                 parenthesize,
5828                 parent_expr,
5829                 seq_no,
5830                 operator,
5831                 negate
5832     FROM
5833         query.expression
5834     WHERE
5835         type = 'xser';
5836
5837 CREATE OR REPLACE RULE query_expr_xser_insert_rule AS
5838     ON INSERT TO query.expr_xser
5839     DO INSTEAD
5840     INSERT INTO query.expression (
5841                 id,
5842                 type,
5843                 parenthesize,
5844                 parent_expr,
5845                 seq_no,
5846                 operator,
5847                 negate
5848     ) VALUES (
5849         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5850         'xser',
5851         COALESCE(NEW.parenthesize, FALSE),
5852         NEW.parent_expr,
5853         COALESCE(NEW.seq_no, 1),
5854                 NEW.operator,
5855                 COALESCE(NEW.negate, false)
5856     );
5857
5858 CREATE OR REPLACE RULE query_expr_xser_update_rule AS
5859     ON UPDATE TO query.expr_xser
5860     DO INSTEAD
5861     UPDATE query.expression SET
5862         id = NEW.id,
5863         parenthesize = NEW.parenthesize,
5864         parent_expr = NEW.parent_expr,
5865         seq_no = NEW.seq_no,
5866                 operator = NEW.operator,
5867                 negate = NEW.negate
5868     WHERE
5869         id = OLD.id;
5870
5871 CREATE OR REPLACE RULE query_expr_xser_delete_rule AS
5872     ON DELETE TO query.expr_xser
5873     DO INSTEAD
5874     DELETE FROM query.expression WHERE id = OLD.id;
5875
5876 -- Create updatable view for string literal expressions
5877
5878 CREATE OR REPLACE VIEW query.expr_xstr AS
5879     SELECT
5880         id,
5881         parenthesize,
5882         parent_expr,
5883         seq_no,
5884         literal
5885     FROM
5886         query.expression
5887     WHERE
5888         type = 'xstr';
5889
5890 CREATE OR REPLACE RULE query_expr_string_insert_rule AS
5891     ON INSERT TO query.expr_xstr
5892     DO INSTEAD
5893     INSERT INTO query.expression (
5894         id,
5895         type,
5896         parenthesize,
5897         parent_expr,
5898         seq_no,
5899         literal
5900     ) VALUES (
5901         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5902         'xstr',
5903         COALESCE(NEW.parenthesize, FALSE),
5904         NEW.parent_expr,
5905         COALESCE(NEW.seq_no, 1),
5906         NEW.literal
5907     );
5908
5909 CREATE OR REPLACE RULE query_expr_string_update_rule AS
5910     ON UPDATE TO query.expr_xstr
5911     DO INSTEAD
5912     UPDATE query.expression SET
5913         id = NEW.id,
5914         parenthesize = NEW.parenthesize,
5915         parent_expr = NEW.parent_expr,
5916         seq_no = NEW.seq_no,
5917         literal = NEW.literal
5918     WHERE
5919         id = OLD.id;
5920
5921 CREATE OR REPLACE RULE query_expr_string_delete_rule AS
5922     ON DELETE TO query.expr_xstr
5923     DO INSTEAD
5924     DELETE FROM query.expression WHERE id = OLD.id;
5925
5926 -- Create updatable view for subquery expressions
5927
5928 CREATE OR REPLACE VIEW query.expr_xsubq AS
5929     SELECT
5930                 id,
5931                 parenthesize,
5932                 parent_expr,
5933                 seq_no,
5934                 subquery,
5935                 negate
5936     FROM
5937         query.expression
5938     WHERE
5939         type = 'xsubq';
5940
5941 CREATE OR REPLACE RULE query_expr_xsubq_insert_rule AS
5942     ON INSERT TO query.expr_xsubq
5943     DO INSTEAD
5944     INSERT INTO query.expression (
5945                 id,
5946                 type,
5947                 parenthesize,
5948                 parent_expr,
5949                 seq_no,
5950                 subquery,
5951                 negate
5952     ) VALUES (
5953         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5954         'xsubq',
5955         COALESCE(NEW.parenthesize, FALSE),
5956         NEW.parent_expr,
5957         COALESCE(NEW.seq_no, 1),
5958                 NEW.subquery,
5959                 COALESCE(NEW.negate, false)
5960     );
5961
5962 CREATE OR REPLACE RULE query_expr_xsubq_update_rule AS
5963     ON UPDATE TO query.expr_xsubq
5964     DO INSTEAD
5965     UPDATE query.expression SET
5966         id = NEW.id,
5967         parenthesize = NEW.parenthesize,
5968         parent_expr = NEW.parent_expr,
5969         seq_no = NEW.seq_no,
5970                 subquery = NEW.subquery,
5971                 negate = NEW.negate
5972     WHERE
5973         id = OLD.id;
5974
5975 CREATE OR REPLACE RULE query_expr_xsubq_delete_rule AS
5976     ON DELETE TO query.expr_xsubq
5977     DO INSTEAD
5978     DELETE FROM query.expression WHERE id = OLD.id;
5979
5980 CREATE TABLE action.fieldset (
5981     id              SERIAL          PRIMARY KEY,
5982     owner           INT             NOT NULL REFERENCES actor.usr (id)
5983                                     DEFERRABLE INITIALLY DEFERRED,
5984     owning_lib      INT             NOT NULL REFERENCES actor.org_unit (id)
5985                                     DEFERRABLE INITIALLY DEFERRED,
5986     status          TEXT            NOT NULL
5987                                     CONSTRAINT valid_status CHECK ( status in
5988                                     ( 'PENDING', 'APPLIED', 'ERROR' )),
5989     creation_time   TIMESTAMPTZ     NOT NULL DEFAULT NOW(),
5990     scheduled_time  TIMESTAMPTZ,
5991     applied_time    TIMESTAMPTZ,
5992     classname       TEXT            NOT NULL, -- an IDL class name
5993     name            TEXT            NOT NULL,
5994     stored_query    INT             REFERENCES query.stored_query (id)
5995                                     DEFERRABLE INITIALLY DEFERRED,
5996     pkey_value      TEXT,
5997     CONSTRAINT lib_name_unique UNIQUE (owning_lib, name),
5998     CONSTRAINT fieldset_one_or_the_other CHECK (
5999         (stored_query IS NOT NULL AND pkey_value IS NULL) OR
6000         (pkey_value IS NOT NULL AND stored_query IS NULL)
6001     )
6002     -- the CHECK constraint means we can update the fields for a single
6003     -- row without all the extra overhead involved in a query
6004 );
6005
6006 CREATE INDEX action_fieldset_sched_time_idx ON action.fieldset( scheduled_time );
6007 CREATE INDEX action_owner_idx               ON action.fieldset( owner );
6008
6009 CREATE TABLE action.fieldset_col_val (
6010     id              SERIAL  PRIMARY KEY,
6011     fieldset        INT     NOT NULL REFERENCES action.fieldset
6012                                          ON DELETE CASCADE
6013                                          DEFERRABLE INITIALLY DEFERRED,
6014     col             TEXT    NOT NULL,  -- "field" from the idl ... the column on the table
6015     val             TEXT,              -- value for the column ... NULL means, well, NULL
6016     CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col)
6017 );
6018
6019 CREATE OR REPLACE FUNCTION action.apply_fieldset(
6020         fieldset_id IN INT,        -- id from action.fieldset
6021         table_name  IN TEXT,       -- table to be updated
6022         pkey_name   IN TEXT,       -- name of primary key column in that table
6023         query       IN TEXT        -- query constructed by qstore (for query-based
6024                                    --    fieldsets only; otherwise null
6025 )
6026 RETURNS TEXT AS $$
6027 DECLARE
6028         statement TEXT;
6029         fs_status TEXT;
6030         fs_pkey_value TEXT;
6031         fs_query TEXT;
6032         sep CHAR;
6033         status_code TEXT;
6034         msg TEXT;
6035         update_count INT;
6036         cv RECORD;
6037 BEGIN
6038         -- Sanity checks
6039         IF fieldset_id IS NULL THEN
6040                 RETURN 'Fieldset ID parameter is NULL';
6041         END IF;
6042         IF table_name IS NULL THEN
6043                 RETURN 'Table name parameter is NULL';
6044         END IF;
6045         IF pkey_name IS NULL THEN
6046                 RETURN 'Primary key name parameter is NULL';
6047         END IF;
6048         --
6049         statement := 'UPDATE ' || table_name || ' SET';
6050         --
6051         SELECT
6052                 status,
6053                 quote_literal( pkey_value )
6054         INTO
6055                 fs_status,
6056                 fs_pkey_value
6057         FROM
6058                 action.fieldset
6059         WHERE
6060                 id = fieldset_id;
6061         --
6062         IF fs_status IS NULL THEN
6063                 RETURN 'No fieldset found for id = ' || fieldset_id;
6064         ELSIF fs_status = 'APPLIED' THEN
6065                 RETURN 'Fieldset ' || fieldset_id || ' has already been applied';
6066         END IF;
6067         --
6068         sep := '';
6069         FOR cv IN
6070                 SELECT  col,
6071                                 val
6072                 FROM    action.fieldset_col_val
6073                 WHERE   fieldset = fieldset_id
6074         LOOP
6075                 statement := statement || sep || ' ' || cv.col
6076                                          || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' );
6077                 sep := ',';
6078         END LOOP;
6079         --
6080         IF sep = '' THEN
6081                 RETURN 'Fieldset ' || fieldset_id || ' has no column values defined';
6082         END IF;
6083         --
6084         -- Add the WHERE clause.  This differs according to whether it's a
6085         -- single-row fieldset or a query-based fieldset.
6086         --
6087         IF query IS NULL        AND fs_pkey_value IS NULL THEN
6088                 RETURN 'Incomplete fieldset: neither a primary key nor a query available';
6089         ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN
6090             fs_query := rtrim( query, ';' );
6091             statement := statement || ' WHERE ' || pkey_name || ' IN ( '
6092                          || fs_query || ' );';
6093         ELSIF query IS NULL     AND fs_pkey_value IS NOT NULL THEN
6094                 statement := statement || ' WHERE ' || pkey_name || ' = '
6095                                      || fs_pkey_value || ';';
6096         ELSE  -- both are not null
6097                 RETURN 'Ambiguous fieldset: both a primary key and a query provided';
6098         END IF;
6099         --
6100         -- Execute the update
6101         --
6102         BEGIN
6103                 EXECUTE statement;
6104                 GET DIAGNOSTICS update_count = ROW_COUNT;
6105                 --
6106                 IF UPDATE_COUNT > 0 THEN
6107                         status_code := 'APPLIED';
6108                         msg := NULL;
6109                 ELSE
6110                         status_code := 'ERROR';
6111                         msg := 'No eligible rows found for fieldset ' || fieldset_id;
6112         END IF;
6113         EXCEPTION WHEN OTHERS THEN
6114                 status_code := 'ERROR';
6115                 msg := 'Unable to apply fieldset ' || fieldset_id
6116                            || ': ' || sqlerrm;
6117         END;
6118         --
6119         -- Update fieldset status
6120         --
6121         UPDATE action.fieldset
6122         SET status       = status_code,
6123             applied_time = now()
6124         WHERE id = fieldset_id;
6125         --
6126         RETURN msg;
6127 END;
6128 $$ LANGUAGE plpgsql;
6129
6130 COMMENT ON FUNCTION action.apply_fieldset( INT, TEXT, TEXT, TEXT ) IS $$
6131 /**
6132  * Applies a specified fieldset, using a supplied table name and primary
6133  * key name.  The query parameter should be non-null only for
6134  * query-based fieldsets.
6135  *
6136  * Returns NULL if successful, or an error message if not.
6137  */
6138 $$;
6139
6140 CREATE INDEX uhr_hold_idx ON action.unfulfilled_hold_list (hold);
6141
6142 CREATE OR REPLACE VIEW action.unfulfilled_hold_loops AS
6143     SELECT  u.hold,
6144             c.circ_lib,
6145             count(*)
6146       FROM  action.unfulfilled_hold_list u
6147             JOIN asset.copy c ON (c.id = u.current_copy)
6148       GROUP BY 1,2;
6149
6150 CREATE OR REPLACE VIEW action.unfulfilled_hold_min_loop AS
6151     SELECT  hold,
6152             min(count)
6153       FROM  action.unfulfilled_hold_loops
6154       GROUP BY 1;
6155
6156 CREATE OR REPLACE VIEW action.unfulfilled_hold_innermost_loop AS
6157     SELECT  DISTINCT l.*
6158       FROM  action.unfulfilled_hold_loops l
6159             JOIN action.unfulfilled_hold_min_loop m USING (hold)
6160       WHERE l.count = m.min;
6161
6162 ALTER TABLE asset.copy
6163 ADD COLUMN dummy_isbn TEXT;
6164
6165 ALTER TABLE auditor.asset_copy_history
6166 ADD COLUMN dummy_isbn TEXT;
6167
6168 -- Add new column status_changed_date to asset.copy, with trigger to maintain it
6169 -- Add corresponding new column to auditor.asset_copy_history
6170
6171 ALTER TABLE asset.copy
6172         ADD COLUMN status_changed_time TIMESTAMPTZ;
6173
6174 ALTER TABLE auditor.asset_copy_history
6175         ADD COLUMN status_changed_time TIMESTAMPTZ;
6176
6177 CREATE OR REPLACE FUNCTION asset.acp_status_changed()
6178 RETURNS TRIGGER AS $$
6179 BEGIN
6180     IF NEW.status <> OLD.status THEN
6181         NEW.status_changed_time := now();
6182     END IF;
6183     RETURN NEW;
6184 END;
6185 $$ LANGUAGE plpgsql;
6186
6187 CREATE TRIGGER acp_status_changed_trig
6188         BEFORE UPDATE ON asset.copy
6189         FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed();
6190
6191 ALTER TABLE asset.copy
6192 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6193
6194 ALTER TABLE auditor.asset_copy_history
6195 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6196
6197 ALTER TABLE asset.copy ADD COLUMN floating BOOL NOT NULL DEFAULT FALSE;
6198 ALTER TABLE auditor.asset_copy_history ADD COLUMN floating BOOL;
6199
6200 DROP INDEX IF EXISTS asset.copy_barcode_key;
6201 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
6202
6203 -- Note: later we create a trigger a_opac_vis_mat_view_tgr
6204 -- AFTER INSERT OR UPDATE ON asset.copy
6205
6206 ALTER TABLE asset.copy ADD COLUMN cost NUMERIC(8,2);
6207 ALTER TABLE auditor.asset_copy_history ADD COLUMN cost NUMERIC(8,2);
6208
6209 -- Moke mostly parallel changes to action.circulation
6210 -- and action.aged_circulation
6211
6212 ALTER TABLE action.circulation
6213 ADD COLUMN workstation INT
6214     REFERENCES actor.workstation
6215         ON DELETE SET NULL
6216         DEFERRABLE INITIALLY DEFERRED;
6217
6218 ALTER TABLE action.aged_circulation
6219 ADD COLUMN workstation INT;
6220
6221 ALTER TABLE action.circulation
6222 ADD COLUMN parent_circ BIGINT
6223         REFERENCES action.circulation(id)
6224         DEFERRABLE INITIALLY DEFERRED;
6225
6226 CREATE UNIQUE INDEX circ_parent_idx
6227 ON action.circulation( parent_circ )
6228 WHERE parent_circ IS NOT NULL;
6229
6230 ALTER TABLE action.aged_circulation
6231 ADD COLUMN parent_circ BIGINT;
6232
6233 ALTER TABLE action.circulation
6234 ADD COLUMN checkin_workstation INT
6235         REFERENCES actor.workstation(id)
6236         ON DELETE SET NULL
6237         DEFERRABLE INITIALLY DEFERRED;
6238
6239 ALTER TABLE action.aged_circulation
6240 ADD COLUMN checkin_workstation INT;
6241
6242 ALTER TABLE action.circulation
6243 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6244
6245 ALTER TABLE action.aged_circulation
6246 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6247
6248 CREATE INDEX action_circulation_target_copy_idx
6249 ON action.circulation (target_copy);
6250
6251 CREATE INDEX action_aged_circulation_target_copy_idx
6252 ON action.aged_circulation (target_copy);
6253
6254 ALTER TABLE action.circulation
6255 DROP CONSTRAINT circulation_stop_fines_check;
6256
6257 ALTER TABLE action.circulation
6258         ADD CONSTRAINT circulation_stop_fines_check
6259         CHECK (stop_fines IN (
6260         'CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE','CLAIMSNEVERCHECKEDOUT'));
6261
6262 -- Hard due-date functionality
6263 CREATE TABLE config.hard_due_date (
6264         id          SERIAL      PRIMARY KEY,
6265         name        TEXT        NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
6266         ceiling_date    TIMESTAMPTZ NOT NULL,
6267         forceto     BOOL        NOT NULL,
6268         owner       INT         NOT NULL
6269 );
6270
6271 CREATE TABLE config.hard_due_date_values (
6272     id                  SERIAL      PRIMARY KEY,
6273     hard_due_date       INT         NOT NULL REFERENCES config.hard_due_date (id)
6274                                     DEFERRABLE INITIALLY DEFERRED,
6275     ceiling_date        TIMESTAMPTZ NOT NULL,
6276     active_date         TIMESTAMPTZ NOT NULL
6277 );
6278
6279 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN hard_due_date INT REFERENCES config.hard_due_date (id);
6280
6281 CREATE OR REPLACE FUNCTION config.update_hard_due_dates () RETURNS INT AS $func$
6282 DECLARE
6283     temp_value  config.hard_due_date_values%ROWTYPE;
6284     updated     INT := 0;
6285 BEGIN
6286     FOR temp_value IN
6287       SELECT  DISTINCT ON (hard_due_date) *
6288         FROM  config.hard_due_date_values
6289         WHERE active_date <= NOW() -- We've passed (or are at) the rollover time
6290         ORDER BY active_date DESC -- Latest (nearest to us) active time
6291    LOOP
6292         UPDATE  config.hard_due_date
6293           SET   ceiling_date = temp_value.ceiling_date
6294           WHERE id = temp_value.hard_due_date
6295                 AND ceiling_date <> temp_value.ceiling_date; -- Time is equal if we've already updated the chdd
6296
6297         IF FOUND THEN
6298             updated := updated + 1;
6299         END IF;
6300     END LOOP;
6301
6302     RETURN updated;
6303 END;
6304 $func$ LANGUAGE plpgsql;
6305
6306 -- Correct some long-standing misspellings involving variations of "recur"
6307
6308 ALTER TABLE action.circulation RENAME COLUMN recuring_fine TO recurring_fine;
6309 ALTER TABLE action.circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6310
6311 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine TO recurring_fine;
6312 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6313
6314 ALTER TABLE config.rule_recuring_fine RENAME TO rule_recurring_fine;
6315 ALTER TABLE config.rule_recuring_fine_id_seq RENAME TO rule_recurring_fine_id_seq;
6316
6317 ALTER TABLE config.rule_recurring_fine RENAME COLUMN recurance_interval TO recurrence_interval;
6318
6319 -- Might as well keep the comment in sync as well
6320 COMMENT ON TABLE config.rule_recurring_fine IS $$
6321 /*
6322  * Copyright (C) 2005  Georgia Public Library Service 
6323  * Mike Rylander <mrylander@gmail.com>
6324  *
6325  * Circulation Recurring Fine rules
6326  *
6327  * Each circulation is given a recurring fine amount based on one of
6328  * these rules.  The recurrence_interval should not be any shorter
6329  * than the interval between runs of the fine_processor.pl script
6330  * (which is run from CRON), or you could miss fines.
6331  * 
6332  *
6333  * ****
6334  *
6335  * This program is free software; you can redistribute it and/or
6336  * modify it under the terms of the GNU General Public License
6337  * as published by the Free Software Foundation; either version 2
6338  * of the License, or (at your option) any later version.
6339  *
6340  * This program is distributed in the hope that it will be useful,
6341  * but WITHOUT ANY WARRANTY; without even the implied warranty of
6342  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6343  * GNU General Public License for more details.
6344  */
6345 $$;
6346
6347 -- Extend the name change to some related views:
6348
6349 DROP VIEW IF EXISTS reporter.overdue_circs;
6350
6351 CREATE OR REPLACE VIEW reporter.overdue_circs AS
6352 SELECT  *
6353   FROM  action.circulation
6354     WHERE checkin_time is null
6355                 AND (stop_fines NOT IN ('LOST','CLAIMSRETURNED') OR stop_fines IS NULL)
6356                                 AND due_date < now();
6357
6358 DROP VIEW IF EXISTS stats.fleshed_circulation;
6359
6360 DROP VIEW IF EXISTS stats.fleshed_copy;
6361
6362 CREATE VIEW stats.fleshed_copy AS
6363         SELECT  cp.*,
6364         CAST(cp.create_date AS DATE) AS create_date_day,
6365         CAST(cp.edit_date AS DATE) AS edit_date_day,
6366         DATE_TRUNC('hour', cp.create_date) AS create_date_hour,
6367         DATE_TRUNC('hour', cp.edit_date) AS edit_date_hour,
6368                 cn.label AS call_number_label,
6369                 cn.owning_lib,
6370                 rd.item_lang,
6371                 rd.item_type,
6372                 rd.item_form
6373         FROM    asset.copy cp
6374                 JOIN asset.call_number cn ON (cp.call_number = cn.id)
6375                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
6376
6377 CREATE VIEW stats.fleshed_circulation AS
6378         SELECT  c.*,
6379                 CAST(c.xact_start AS DATE) AS start_date_day,
6380                 CAST(c.xact_finish AS DATE) AS finish_date_day,
6381                 DATE_TRUNC('hour', c.xact_start) AS start_date_hour,
6382                 DATE_TRUNC('hour', c.xact_finish) AS finish_date_hour,
6383                 cp.call_number_label,
6384                 cp.owning_lib,
6385                 cp.item_lang,
6386                 cp.item_type,
6387                 cp.item_form
6388         FROM    action.circulation c
6389                 JOIN stats.fleshed_copy cp ON (cp.id = c.target_copy);
6390
6391 -- Drop a view temporarily in order to alter action.all_circulation, upon
6392 -- which it is dependent.  We will recreate the view later.
6393
6394 DROP VIEW IF EXISTS extend_reporter.full_circ_count;
6395
6396 -- You would think that CREATE OR REPLACE would be enough, but in testing
6397 -- PostgreSQL complained about renaming the columns in the view. So we
6398 -- drop the view first.
6399 DROP VIEW IF EXISTS action.all_circulation;
6400
6401 CREATE OR REPLACE VIEW action.all_circulation AS
6402     SELECT  id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6403         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6404         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6405         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6406         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6407         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6408       FROM  action.aged_circulation
6409             UNION ALL
6410     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,
6411         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,
6412         cn.record AS copy_bib_record, circ.xact_start, circ.xact_finish, circ.target_copy, circ.circ_lib, circ.circ_staff, circ.checkin_staff,
6413         circ.checkin_lib, circ.renewal_remaining, circ.due_date, circ.stop_fines_time, circ.checkin_time, circ.create_time, circ.duration,
6414         circ.fine_interval, circ.recurring_fine, circ.max_fine, circ.phone_renewal, circ.desk_renewal, circ.opac_renewal, circ.duration_rule,
6415         circ.recurring_fine_rule, circ.max_fine_rule, circ.stop_fines, circ.workstation, circ.checkin_workstation, circ.checkin_scan_time,
6416         circ.parent_circ
6417       FROM  action.circulation circ
6418         JOIN asset.copy cp ON (circ.target_copy = cp.id)
6419         JOIN asset.call_number cn ON (cp.call_number = cn.id)
6420         JOIN actor.usr p ON (circ.usr = p.id)
6421         LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
6422         LEFT JOIN actor.usr_address b ON (p.billing_address = a.id);
6423
6424 -- Recreate the temporarily dropped view, having altered the action.all_circulation view:
6425
6426 CREATE OR REPLACE VIEW extend_reporter.full_circ_count AS
6427  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
6428    FROM asset."copy" cp
6429    LEFT JOIN extend_reporter.legacy_circ_count c USING (id)
6430    LEFT JOIN "action".circulation circ ON circ.target_copy = cp.id
6431    LEFT JOIN "action".aged_circulation acirc ON acirc.target_copy = cp.id
6432   GROUP BY cp.id;
6433
6434 CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON action.circulation(target_copy) WHERE checkin_time IS NULL;
6435
6436 ALTER TABLE action.circulation DROP CONSTRAINT action_circulation_target_copy_fkey;
6437
6438 -- Rebuild dependent views
6439
6440 DROP VIEW IF EXISTS action.billable_circulations;
6441
6442 CREATE OR REPLACE VIEW action.billable_circulations AS
6443     SELECT  *
6444       FROM  action.circulation
6445       WHERE xact_finish IS NULL;
6446
6447 DROP VIEW IF EXISTS action.open_circulation;
6448
6449 CREATE OR REPLACE VIEW action.open_circulation AS
6450     SELECT  *
6451       FROM  action.circulation
6452       WHERE checkin_time IS NULL
6453       ORDER BY due_date;
6454
6455 CREATE OR REPLACE FUNCTION action.age_circ_on_delete () RETURNS TRIGGER AS $$
6456 DECLARE
6457 found char := 'N';
6458 BEGIN
6459
6460     -- If there are any renewals for this circulation, don't archive or delete
6461     -- it yet.   We'll do so later, when we archive and delete the renewals.
6462
6463     SELECT 'Y' INTO found
6464     FROM action.circulation
6465     WHERE parent_circ = OLD.id
6466     LIMIT 1;
6467
6468     IF found = 'Y' THEN
6469         RETURN NULL;  -- don't delete
6470         END IF;
6471
6472     -- Archive a copy of the old row to action.aged_circulation
6473
6474     INSERT INTO action.aged_circulation
6475         (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6476         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6477         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6478         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6479         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6480         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ)
6481       SELECT
6482         id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6483         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6484         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6485         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6486         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6487         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6488         FROM action.all_circulation WHERE id = OLD.id;
6489
6490     RETURN OLD;
6491 END;
6492 $$ LANGUAGE 'plpgsql';
6493
6494 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND name = 'title';
6495
6496 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND truncation = 0;
6497
6498 -- Adding circ.holds.target_skip_me OU setting logic to the pre-matchpoint tests
6499
6500 CREATE OR REPLACE FUNCTION action.find_hold_matrix_matchpoint( pickup_ou INT, request_ou INT, match_item BIGINT, match_user INT, match_requestor INT ) RETURNS INT AS $func$
6501 DECLARE
6502     current_requestor_group    permission.grp_tree%ROWTYPE;
6503     requestor_object    actor.usr%ROWTYPE;
6504     user_object        actor.usr%ROWTYPE;
6505     item_object        asset.copy%ROWTYPE;
6506     item_cn_object        asset.call_number%ROWTYPE;
6507     rec_descriptor        metabib.rec_descriptor%ROWTYPE;
6508     current_mp_weight    FLOAT;
6509     matchpoint_weight    FLOAT;
6510     tmp_weight        FLOAT;
6511     current_mp        config.hold_matrix_matchpoint%ROWTYPE;
6512     matchpoint        config.hold_matrix_matchpoint%ROWTYPE;
6513 BEGIN
6514     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6515     SELECT INTO requestor_object * FROM actor.usr WHERE id = match_requestor;
6516     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6517     SELECT INTO item_cn_object * FROM asset.call_number WHERE id = item_object.call_number;
6518     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r WHERE r.record = item_cn_object.record;
6519
6520     PERFORM * FROM config.internal_flag WHERE name = 'circ.holds.usr_not_requestor' AND enabled;
6521
6522     IF NOT FOUND THEN
6523         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = requestor_object.profile;
6524     ELSE
6525         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = user_object.profile;
6526     END IF;
6527
6528     LOOP 
6529         -- for each potential matchpoint for this ou and group ...
6530         FOR current_mp IN
6531             SELECT    m.*
6532               FROM    config.hold_matrix_matchpoint m
6533               WHERE    m.requestor_grp = current_requestor_group.id AND m.active
6534               ORDER BY    CASE WHEN m.circ_modifier    IS NOT NULL THEN 16 ELSE 0 END +
6535                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 16 ELSE 0 END +
6536                     CASE WHEN m.marc_type        IS NOT NULL THEN 8 ELSE 0 END +
6537                     CASE WHEN m.marc_form        IS NOT NULL THEN 4 ELSE 0 END +
6538                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 2 ELSE 0 END +
6539                     CASE WHEN m.ref_flag        IS NOT NULL THEN 1 ELSE 0 END DESC LOOP
6540
6541             current_mp_weight := 5.0;
6542
6543             IF current_mp.circ_modifier IS NOT NULL THEN
6544                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
6545             END IF;
6546
6547             IF current_mp.marc_type IS NOT NULL THEN
6548                 IF item_object.circ_as_type IS NOT NULL THEN
6549                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
6550                 ELSE
6551                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
6552                 END IF;
6553             END IF;
6554
6555             IF current_mp.marc_form IS NOT NULL THEN
6556                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
6557             END IF;
6558
6559             IF current_mp.marc_vr_format IS NOT NULL THEN
6560                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
6561             END IF;
6562
6563             IF current_mp.juvenile_flag IS NOT NULL THEN
6564                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
6565             END IF;
6566
6567             IF current_mp.ref_flag IS NOT NULL THEN
6568                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
6569             END IF;
6570
6571
6572             -- caclulate the rule match weight
6573             IF current_mp.item_owning_ou IS NOT NULL THEN
6574                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.item_owning_ou, item_cn_object.owning_lib)::FLOAT + 1.0)::FLOAT;
6575                 current_mp_weight := current_mp_weight - tmp_weight;
6576             END IF; 
6577
6578             IF current_mp.item_circ_ou IS NOT NULL THEN
6579                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.item_circ_ou, item_object.circ_lib)::FLOAT + 1.0)::FLOAT;
6580                 current_mp_weight := current_mp_weight - tmp_weight;
6581             END IF; 
6582
6583             IF current_mp.pickup_ou IS NOT NULL THEN
6584                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.pickup_ou, pickup_ou)::FLOAT + 1.0)::FLOAT;
6585                 current_mp_weight := current_mp_weight - tmp_weight;
6586             END IF; 
6587
6588             IF current_mp.request_ou IS NOT NULL THEN
6589                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.request_ou, request_ou)::FLOAT + 1.0)::FLOAT;
6590                 current_mp_weight := current_mp_weight - tmp_weight;
6591             END IF; 
6592
6593             IF current_mp.user_home_ou IS NOT NULL THEN
6594                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.user_home_ou, user_object.home_ou)::FLOAT + 1.0)::FLOAT;
6595                 current_mp_weight := current_mp_weight - tmp_weight;
6596             END IF; 
6597
6598             -- set the matchpoint if we found the best one
6599             IF matchpoint_weight IS NULL OR matchpoint_weight > current_mp_weight THEN
6600                 matchpoint = current_mp;
6601                 matchpoint_weight = current_mp_weight;
6602             END IF;
6603
6604         END LOOP;
6605
6606         EXIT WHEN current_requestor_group.parent IS NULL OR matchpoint.id IS NOT NULL;
6607
6608         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = current_requestor_group.parent;
6609     END LOOP;
6610
6611     RETURN matchpoint.id;
6612 END;
6613 $func$ LANGUAGE plpgsql;
6614
6615 CREATE OR REPLACE FUNCTION action.hold_request_permit_test( pickup_ou INT, request_ou INT, match_item BIGINT, match_user INT, match_requestor INT, retargetting BOOL ) RETURNS SETOF action.matrix_test_result AS $func$
6616 DECLARE
6617     matchpoint_id        INT;
6618     user_object        actor.usr%ROWTYPE;
6619     age_protect_object    config.rule_age_hold_protect%ROWTYPE;
6620     standing_penalty    config.standing_penalty%ROWTYPE;
6621     transit_range_ou_type    actor.org_unit_type%ROWTYPE;
6622     transit_source        actor.org_unit%ROWTYPE;
6623     item_object        asset.copy%ROWTYPE;
6624     ou_skip              actor.org_unit_setting%ROWTYPE;
6625     result            action.matrix_test_result;
6626     hold_test        config.hold_matrix_matchpoint%ROWTYPE;
6627     hold_count        INT;
6628     hold_transit_prox    INT;
6629     frozen_hold_count    INT;
6630     context_org_list    INT[];
6631     done            BOOL := FALSE;
6632 BEGIN
6633     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6634     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( pickup_ou );
6635
6636     result.success := TRUE;
6637
6638     -- Fail if we couldn't find a user
6639     IF user_object.id IS NULL THEN
6640         result.fail_part := 'no_user';
6641         result.success := FALSE;
6642         done := TRUE;
6643         RETURN NEXT result;
6644         RETURN;
6645     END IF;
6646
6647     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6648
6649     -- Fail if we couldn't find a copy
6650     IF item_object.id IS NULL THEN
6651         result.fail_part := 'no_item';
6652         result.success := FALSE;
6653         done := TRUE;
6654         RETURN NEXT result;
6655         RETURN;
6656     END IF;
6657
6658     SELECT INTO matchpoint_id action.find_hold_matrix_matchpoint(pickup_ou, request_ou, match_item, match_user, match_requestor);
6659     result.matchpoint := matchpoint_id;
6660
6661     SELECT INTO ou_skip * FROM actor.org_unit_setting WHERE name = 'circ.holds.target_skip_me' AND org_unit = item_object.circ_lib;
6662
6663     -- Fail if the circ_lib for the item has circ.holds.target_skip_me set to true
6664     IF ou_skip.id IS NOT NULL AND ou_skip.value = 'true' THEN
6665         result.fail_part := 'circ.holds.target_skip_me';
6666         result.success := FALSE;
6667         done := TRUE;
6668         RETURN NEXT result;
6669         RETURN;
6670     END IF;
6671
6672     -- Fail if user is barred
6673     IF user_object.barred IS TRUE THEN
6674         result.fail_part := 'actor.usr.barred';
6675         result.success := FALSE;
6676         done := TRUE;
6677         RETURN NEXT result;
6678         RETURN;
6679     END IF;
6680
6681     -- Fail if we couldn't find any matchpoint (requires a default)
6682     IF matchpoint_id IS NULL THEN
6683         result.fail_part := 'no_matchpoint';
6684         result.success := FALSE;
6685         done := TRUE;
6686         RETURN NEXT result;
6687         RETURN;
6688     END IF;
6689
6690     SELECT INTO hold_test * FROM config.hold_matrix_matchpoint WHERE id = matchpoint_id;
6691
6692     IF hold_test.holdable IS FALSE THEN
6693         result.fail_part := 'config.hold_matrix_test.holdable';
6694         result.success := FALSE;
6695         done := TRUE;
6696         RETURN NEXT result;
6697     END IF;
6698
6699     IF hold_test.transit_range IS NOT NULL THEN
6700         SELECT INTO transit_range_ou_type * FROM actor.org_unit_type WHERE id = hold_test.transit_range;
6701         IF hold_test.distance_is_from_owner THEN
6702             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;
6703         ELSE
6704             SELECT INTO transit_source * FROM actor.org_unit WHERE id = item_object.circ_lib;
6705         END IF;
6706
6707         PERFORM * FROM actor.org_unit_descendants( transit_source.id, transit_range_ou_type.depth ) WHERE id = pickup_ou;
6708
6709         IF NOT FOUND THEN
6710             result.fail_part := 'transit_range';
6711             result.success := FALSE;
6712             done := TRUE;
6713             RETURN NEXT result;
6714         END IF;
6715     END IF;
6716  
6717     IF NOT retargetting THEN
6718         FOR standing_penalty IN
6719             SELECT  DISTINCT csp.*
6720               FROM  actor.usr_standing_penalty usp
6721                     JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6722               WHERE usr = match_user
6723                     AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6724                     AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6725                     AND csp.block_list LIKE '%HOLD%' LOOP
6726     
6727             result.fail_part := standing_penalty.name;
6728             result.success := FALSE;
6729             done := TRUE;
6730             RETURN NEXT result;
6731         END LOOP;
6732     
6733         IF hold_test.stop_blocked_user IS TRUE THEN
6734             FOR standing_penalty IN
6735                 SELECT  DISTINCT csp.*
6736                   FROM  actor.usr_standing_penalty usp
6737                         JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6738                   WHERE usr = match_user
6739                         AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6740                         AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6741                         AND csp.block_list LIKE '%CIRC%' LOOP
6742         
6743                 result.fail_part := standing_penalty.name;
6744                 result.success := FALSE;
6745                 done := TRUE;
6746                 RETURN NEXT result;
6747             END LOOP;
6748         END IF;
6749     
6750         IF hold_test.max_holds IS NOT NULL THEN
6751             SELECT    INTO hold_count COUNT(*)
6752               FROM    action.hold_request
6753               WHERE    usr = match_user
6754                 AND fulfillment_time IS NULL
6755                 AND cancel_time IS NULL
6756                 AND CASE WHEN hold_test.include_frozen_holds THEN TRUE ELSE frozen IS FALSE END;
6757     
6758             IF hold_count >= hold_test.max_holds THEN
6759                 result.fail_part := 'config.hold_matrix_test.max_holds';
6760                 result.success := FALSE;
6761                 done := TRUE;
6762                 RETURN NEXT result;
6763             END IF;
6764         END IF;
6765     END IF;
6766
6767     IF item_object.age_protect IS NOT NULL THEN
6768         SELECT INTO age_protect_object * FROM config.rule_age_hold_protect WHERE id = item_object.age_protect;
6769
6770         IF item_object.create_date + age_protect_object.age > NOW() THEN
6771             IF hold_test.distance_is_from_owner THEN
6772                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_cn_object.owning_lib AND to_org = pickup_ou;
6773             ELSE
6774                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_object.circ_lib AND to_org = pickup_ou;
6775             END IF;
6776
6777             IF hold_transit_prox > age_protect_object.prox THEN
6778                 result.fail_part := 'config.rule_age_hold_protect.prox';
6779                 result.success := FALSE;
6780                 done := TRUE;
6781                 RETURN NEXT result;
6782             END IF;
6783         END IF;
6784     END IF;
6785
6786     IF NOT done THEN
6787         RETURN NEXT result;
6788     END IF;
6789
6790     RETURN;
6791 END;
6792 $func$ LANGUAGE plpgsql;
6793
6794 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$
6795     SELECT * FROM action.hold_request_permit_test( $1, $2, $3, $4, $5, FALSE);
6796 $func$ LANGUAGE SQL;
6797
6798 CREATE OR REPLACE FUNCTION action.hold_retarget_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$
6799     SELECT * FROM action.hold_request_permit_test( $1, $2, $3, $4, $5, TRUE );
6800 $func$ LANGUAGE SQL;
6801
6802 -- New post-delete trigger to propagate deletions to parent(s)
6803
6804 CREATE OR REPLACE FUNCTION action.age_parent_circ_on_delete () RETURNS TRIGGER AS $$
6805 BEGIN
6806
6807     -- Having deleted a renewal, we can delete the original circulation (or a previous
6808     -- renewal, if that's what parent_circ is pointing to).  That deletion will trigger
6809     -- deletion of any prior parents, etc. recursively.
6810
6811     IF OLD.parent_circ IS NOT NULL THEN
6812         DELETE FROM action.circulation
6813         WHERE id = OLD.parent_circ;
6814     END IF;
6815
6816     RETURN OLD;
6817 END;
6818 $$ LANGUAGE 'plpgsql';
6819
6820 CREATE TRIGGER age_parent_circ AFTER DELETE ON action.circulation
6821 FOR EACH ROW EXECUTE PROCEDURE action.age_parent_circ_on_delete ();
6822
6823 -- This only gets inserted if there are no other id > 100 billing types
6824 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;
6825 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101) FROM config.billing_type_id_seq WHERE last_value < 101;
6826
6827 -- Populate xact_type column in the materialized version of billable_xact_summary
6828
6829 CREATE OR REPLACE FUNCTION money.mat_summary_create () RETURNS TRIGGER AS $$
6830 BEGIN
6831         INSERT INTO money.materialized_billable_xact_summary (id, usr, xact_start, xact_finish, total_paid, total_owed, balance_owed, xact_type)
6832                 VALUES ( NEW.id, NEW.usr, NEW.xact_start, NEW.xact_finish, 0.0, 0.0, 0.0, TG_ARGV[0]);
6833         RETURN NEW;
6834 END;
6835 $$ LANGUAGE PLPGSQL;
6836  
6837 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON action.circulation;
6838 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('circulation');
6839  
6840 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON money.grocery;
6841 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON money.grocery FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('grocery');
6842
6843 CREATE RULE money_payment_view_update AS ON UPDATE TO money.payment_view DO INSTEAD 
6844     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;
6845
6846 -- Generate the equivalent of compound subject entries from the existing rows
6847 -- so that we don't have to laboriously reindex them
6848
6849 --INSERT INTO config.metabib_field (field_class, name, format, xpath ) VALUES
6850 --    ( 'subject', 'complete', 'mods32', $$//mods32:mods/mods32:subject//text()$$ );
6851 --
6852 --CREATE INDEX metabib_subject_field_entry_source_idx ON metabib.subject_field_entry (source);
6853 --
6854 --INSERT INTO metabib.subject_field_entry (source, field, value)
6855 --    SELECT source, (
6856 --            SELECT id 
6857 --            FROM config.metabib_field
6858 --            WHERE field_class = 'subject' AND name = 'complete'
6859 --        ), 
6860 --        ARRAY_TO_STRING ( 
6861 --            ARRAY (
6862 --                SELECT value 
6863 --                FROM metabib.subject_field_entry msfe
6864 --                WHERE msfe.source = groupee.source
6865 --                ORDER BY source 
6866 --            ), ' ' 
6867 --        ) AS grouped
6868 --    FROM ( 
6869 --        SELECT source
6870 --        FROM metabib.subject_field_entry
6871 --        GROUP BY source
6872 --    ) AS groupee;
6873
6874 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_del () RETURNS TRIGGER AS $$
6875 DECLARE
6876         prev_billing    money.billing%ROWTYPE;
6877         old_billing     money.billing%ROWTYPE;
6878 BEGIN
6879         SELECT * INTO prev_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1 OFFSET 1;
6880         SELECT * INTO old_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1;
6881
6882         IF OLD.id = old_billing.id THEN
6883                 UPDATE  money.materialized_billable_xact_summary
6884                   SET   last_billing_ts = prev_billing.billing_ts,
6885                         last_billing_note = prev_billing.note,
6886                         last_billing_type = prev_billing.billing_type
6887                   WHERE id = OLD.xact;
6888         END IF;
6889
6890         IF NOT OLD.voided THEN
6891                 UPDATE  money.materialized_billable_xact_summary
6892                   SET   total_owed = total_owed - OLD.amount,
6893                         balance_owed = balance_owed + OLD.amount
6894                   WHERE id = OLD.xact;
6895         END IF;
6896
6897         RETURN OLD;
6898 END;
6899 $$ LANGUAGE PLPGSQL;
6900
6901 -- ARG! need to rid ourselves of the broken table definition ... this mechanism is not ideal, sorry.
6902 DROP TABLE IF EXISTS config.index_normalizer CASCADE;
6903
6904 CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT, TEXT ) RETURNS TEXT AS $func$
6905     use Unicode::Normalize;
6906     use Encode;
6907
6908     # When working with Unicode data, the first step is to decode it to
6909     # a byte string; after that, lowercasing is safe
6910     my $txt = lc(decode_utf8(shift));
6911     my $sf = shift;
6912
6913     $txt = NFD($txt);
6914     $txt =~ s/\pM+//go;     # Remove diacritics
6915
6916     $txt =~ s/\xE6/AE/go;   # Convert ae digraph
6917     $txt =~ s/\x{153}/OE/go;# Convert oe digraph
6918     $txt =~ s/\xFE/TH/go;   # Convert Icelandic thorn
6919
6920     $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
6921     $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
6922
6923     $txt =~ tr/\x{0251}\x{03B1}\x{03B2}\x{0262}\x{03B3}/AABGG/;         # Convert Latin and Greek
6924     $txt =~ tr/\x{2113}\xF0\x{111}\!\"\(\)\-\{\}\<\>\;\:\.\?\xA1\xBF\/\\\@\*\%\=\xB1\+\xAE\xA9\x{2117}\$\xA3\x{FFE1}\xB0\^\_\~\`/LDD /;     # Convert Misc
6925     $txt =~ tr/\'\[\]\|//d;                         # Remove Misc
6926
6927     if ($sf && $sf =~ /^a/o) {
6928         my $commapos = index($txt,',');
6929         if ($commapos > -1) {
6930             if ($commapos != length($txt) - 1) {
6931                 my @list = split /,/, $txt;
6932                 my $first = shift @list;
6933                 $txt = $first . ',' . join(' ', @list);
6934             } else {
6935                 $txt =~ s/,/ /go;
6936             }
6937         }
6938     } else {
6939         $txt =~ s/,/ /go;
6940     }
6941
6942     $txt =~ s/\s+/ /go;     # Compress multiple spaces
6943     $txt =~ s/^\s+//o;      # Remove leading space
6944     $txt =~ s/\s+$//o;      # Remove trailing space
6945
6946     # Encoding the outgoing string is good practice, but not strictly
6947     # necessary in this case because we've stripped everything from it
6948     return encode_utf8($txt);
6949 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6950
6951 -- Some handy functions, based on existing ones, to provide optional ingest normalization
6952
6953 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6954         SELECT SUBSTRING($1,$2);
6955 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6956
6957 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6958         SELECT SUBSTRING($1,1,$2);
6959 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6960
6961 CREATE OR REPLACE FUNCTION public.naco_normalize_keep_comma( TEXT ) RETURNS TEXT AS $func$
6962         SELECT public.naco_normalize($1,'a');
6963 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6964
6965 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
6966         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
6967 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6968
6969 -- And ... a table in which to register them
6970
6971 CREATE TABLE config.index_normalizer (
6972         id              SERIAL  PRIMARY KEY,
6973         name            TEXT    UNIQUE NOT NULL,
6974         description     TEXT,
6975         func            TEXT    NOT NULL,
6976         param_count     INT     NOT NULL DEFAULT 0
6977 );
6978
6979 CREATE TABLE config.metabib_field_index_norm_map (
6980         id      SERIAL  PRIMARY KEY,
6981         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6982         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6983         params  TEXT,
6984         pos     INT     NOT NULL DEFAULT 0
6985 );
6986
6987 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6988         'NACO Normalize',
6989         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
6990         'naco_normalize',
6991         0
6992 );
6993
6994 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6995         'Normalize date range',
6996         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
6997         'split_date_range',
6998         1
6999 );
7000
7001 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7002         'NACO Normalize -- retain first comma',
7003         '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.',
7004         'naco_normalize_keep_comma',
7005         0
7006 );
7007
7008 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7009         'Strip Diacritics',
7010         'Convert text to NFD form and remove non-spacing combining marks.',
7011         'remove_diacritics',
7012         0
7013 );
7014
7015 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7016         'Up-case',
7017         'Convert text upper case.',
7018         'uppercase',
7019         0
7020 );
7021
7022 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7023         'Down-case',
7024         'Convert text lower case.',
7025         'lowercase',
7026         0
7027 );
7028
7029 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7030         'Extract Dewey-like number',
7031         'Extract a string of numeric characters ther resembles a DDC number.',
7032         'call_number_dewey',
7033         0
7034 );
7035
7036 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7037         'Left truncation',
7038         'Discard the specified number of characters from the left side of the string.',
7039         'left_trunc',
7040         1
7041 );
7042
7043 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7044         'Right truncation',
7045         'Include only the specified number of characters from the left side of the string.',
7046         'right_trunc',
7047         1
7048 );
7049
7050 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7051         'First word',
7052         'Include only the first space-separated word of a string.',
7053         'first_word',
7054         0
7055 );
7056
7057 INSERT INTO config.metabib_field_index_norm_map (field,norm)
7058         SELECT  m.id,
7059                 i.id
7060           FROM  config.metabib_field m,
7061                 config.index_normalizer i
7062           WHERE i.func IN ('naco_normalize','split_date_range');
7063
7064 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
7065 DECLARE
7066     normalizer      RECORD;
7067     value           TEXT := '';
7068 BEGIN
7069
7070     value := NEW.value;
7071
7072     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
7073         FOR normalizer IN
7074             SELECT  n.func AS func,
7075                     n.param_count AS param_count,
7076                     m.params AS params
7077               FROM  config.index_normalizer n
7078                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
7079               WHERE field = NEW.field AND m.pos < 0
7080               ORDER BY m.pos LOOP
7081                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
7082                     quote_literal( value ) ||
7083                     CASE
7084                         WHEN normalizer.param_count > 0
7085                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
7086                             ELSE ''
7087                         END ||
7088                     ')' INTO value;
7089
7090         END LOOP;
7091
7092         NEW.value := value;
7093     END IF;
7094
7095     IF NEW.index_vector = ''::tsvector THEN
7096         RETURN NEW;
7097     END IF;
7098
7099     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
7100         FOR normalizer IN
7101             SELECT  n.func AS func,
7102                     n.param_count AS param_count,
7103                     m.params AS params
7104               FROM  config.index_normalizer n
7105                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
7106               WHERE field = NEW.field AND m.pos >= 0
7107               ORDER BY m.pos LOOP
7108                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
7109                     quote_literal( value ) ||
7110                     CASE
7111                         WHEN normalizer.param_count > 0
7112                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
7113                             ELSE ''
7114                         END ||
7115                     ')' INTO value;
7116
7117         END LOOP;
7118     END IF;
7119
7120     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
7121         NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
7122     ELSE
7123         NEW.index_vector = to_tsvector(TG_ARGV[0], value);
7124     END IF;
7125
7126     RETURN NEW;
7127 END;
7128 $$ LANGUAGE PLPGSQL;
7129
7130 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
7131
7132 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
7133
7134 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
7135     SELECT  ARRAY_TO_STRING(
7136                 oils_xpath(
7137                     $1 ||
7138                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
7139                     $2,
7140                     $4
7141                 ),
7142                 $3
7143             );
7144 $func$ LANGUAGE SQL IMMUTABLE;
7145
7146 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
7147     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
7148 $func$ LANGUAGE SQL IMMUTABLE;
7149
7150 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
7151     SELECT oils_xpath_string( $1, $2, '', $3 );
7152 $func$ LANGUAGE SQL IMMUTABLE;
7153
7154 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
7155     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
7156 $func$ LANGUAGE SQL IMMUTABLE;
7157
7158 CREATE TYPE metabib.field_entry_template AS (
7159         field_class     TEXT,
7160         field           INT,
7161         source          BIGINT,
7162         value           TEXT
7163 );
7164
7165 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
7166   use strict;
7167
7168   use XML::LibXSLT;
7169   use XML::LibXML;
7170
7171   my $doc = shift;
7172   my $xslt = shift;
7173
7174   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
7175   # methods of parsing XML documents and stylesheets, in the hopes of broader
7176   # compatibility with distributions
7177   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
7178
7179   # Cache the XML parser, if we do not already have one
7180   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
7181     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
7182
7183   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
7184
7185   # Cache the XSLT processor, if we do not already have one
7186   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
7187     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
7188
7189   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
7190     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
7191
7192   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
7193     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
7194
7195   return $stylesheet->output_string(
7196     $stylesheet->transform(
7197       $parser->parse_string($doc)
7198     )
7199   );
7200
7201 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
7202
7203 -- Add two columns so that the following function will compile.
7204 -- Eventually the label column will be NOT NULL, but not yet.
7205 ALTER TABLE config.metabib_field ADD COLUMN label TEXT;
7206 ALTER TABLE config.metabib_field ADD COLUMN facet_xpath TEXT;
7207
7208 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( rid BIGINT, default_joiner TEXT ) RETURNS SETOF metabib.field_entry_template AS $func$
7209 DECLARE
7210     bib     biblio.record_entry%ROWTYPE;
7211     idx     config.metabib_field%ROWTYPE;
7212     xfrm        config.xml_transform%ROWTYPE;
7213     prev_xfrm   TEXT;
7214     transformed_xml TEXT;
7215     xml_node    TEXT;
7216     xml_node_list   TEXT[];
7217     facet_text  TEXT;
7218     raw_text    TEXT;
7219     curr_text   TEXT;
7220     joiner      TEXT := default_joiner; -- XXX will index defs supply a joiner?
7221     output_row  metabib.field_entry_template%ROWTYPE;
7222 BEGIN
7223
7224     -- Get the record
7225     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7226
7227     -- Loop over the indexing entries
7228     FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP
7229
7230         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
7231
7232         -- See if we can skip the XSLT ... it's expensive
7233         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
7234             -- Can't skip the transform
7235             IF xfrm.xslt <> '---' THEN
7236                 transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt);
7237             ELSE
7238                 transformed_xml := bib.marc;
7239             END IF;
7240
7241             prev_xfrm := xfrm.name;
7242         END IF;
7243
7244         xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7245
7246         raw_text := NULL;
7247         FOR xml_node IN SELECT x FROM explode_array(xml_node_list) AS x LOOP
7248             CONTINUE WHEN xml_node !~ E'^\\s*<';
7249
7250             curr_text := ARRAY_TO_STRING(
7251                 oils_xpath( '//text()',
7252                     REGEXP_REPLACE( -- This escapes all &s not followed by "amp;".  Data ise returned from oils_xpath (above) in UTF-8, not entity encoded
7253                         REGEXP_REPLACE( -- This escapes embeded <s
7254                             xml_node,
7255                             $re$(>[^<]+)(<)([^>]+<)$re$,
7256                             E'\\1&lt;\\3',
7257                             'g'
7258                         ),
7259                         '&(?!amp;)',
7260                         '&amp;',
7261                         'g'
7262                     )
7263                 ),
7264                 ' '
7265             );
7266
7267             CONTINUE WHEN curr_text IS NULL OR curr_text = '';
7268
7269             IF raw_text IS NOT NULL THEN
7270                 raw_text := raw_text || joiner;
7271             END IF;
7272
7273             raw_text := COALESCE(raw_text,'') || curr_text;
7274
7275             -- insert raw node text for faceting
7276             IF idx.facet_field THEN
7277
7278                 IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN
7279                     facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7280                 ELSE
7281                     facet_text := curr_text;
7282                 END IF;
7283
7284                 output_row.field_class = idx.field_class;
7285                 output_row.field = -1 * idx.id;
7286                 output_row.source = rid;
7287                 output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g'));
7288
7289                 RETURN NEXT output_row;
7290             END IF;
7291
7292         END LOOP;
7293
7294         CONTINUE WHEN raw_text IS NULL OR raw_text = '';
7295
7296         -- insert combined node text for searching
7297         IF idx.search_field THEN
7298             output_row.field_class = idx.field_class;
7299             output_row.field = idx.id;
7300             output_row.source = rid;
7301             output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g'));
7302
7303             RETURN NEXT output_row;
7304         END IF;
7305
7306     END LOOP;
7307
7308 END;
7309 $func$ LANGUAGE PLPGSQL;
7310
7311 -- default to a space joiner
7312 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( BIGINT ) RETURNS SETOF metabib.field_entry_template AS $func$
7313         SELECT * FROM biblio.extract_metabib_field_entry($1, ' ');
7314 $func$ LANGUAGE SQL;
7315
7316 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
7317
7318 use MARC::Record;
7319 use MARC::File::XML (BinaryEncoding => 'UTF-8');
7320
7321 my $xml = shift;
7322 my $r = MARC::Record->new_from_xml( $xml );
7323
7324 return_next( { tag => 'LDR', value => $r->leader } );
7325
7326 for my $f ( $r->fields ) {
7327     if ($f->is_control_field) {
7328         return_next({ tag => $f->tag, value => $f->data });
7329     } else {
7330         for my $s ($f->subfields) {
7331             return_next({
7332                 tag      => $f->tag,
7333                 ind1     => $f->indicator(1),
7334                 ind2     => $f->indicator(2),
7335                 subfield => $s->[0],
7336                 value    => $s->[1]
7337             });
7338
7339             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
7340                 my $trim = $f->indicator(2) || 0;
7341                 return_next({
7342                     tag      => 'tnf',
7343                     ind1     => $f->indicator(1),
7344                     ind2     => $f->indicator(2),
7345                     subfield => 'a',
7346                     value    => substr( $s->[1], $trim )
7347                 });
7348             }
7349         }
7350     }
7351 }
7352
7353 return undef;
7354
7355 $func$ LANGUAGE PLPERLU;
7356
7357 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( rid BIGINT ) RETURNS SETOF metabib.full_rec AS $func$
7358 DECLARE
7359     bib biblio.record_entry%ROWTYPE;
7360     output  metabib.full_rec%ROWTYPE;
7361     field   RECORD;
7362 BEGIN
7363     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7364
7365     FOR field IN SELECT * FROM biblio.flatten_marc( bib.marc ) LOOP
7366         output.record := rid;
7367         output.ind1 := field.ind1;
7368         output.ind2 := field.ind2;
7369         output.tag := field.tag;
7370         output.subfield := field.subfield;
7371         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
7372             output.value := naco_normalize(field.value, field.subfield);
7373         ELSE
7374             output.value := field.value;
7375         END IF;
7376
7377         CONTINUE WHEN output.value IS NULL;
7378
7379         RETURN NEXT output;
7380     END LOOP;
7381 END;
7382 $func$ LANGUAGE PLPGSQL;
7383
7384 -- functions to create auditor objects
7385
7386 CREATE FUNCTION auditor.create_auditor_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7387 BEGIN
7388     EXECUTE $$
7389         CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
7390     $$;
7391         RETURN TRUE;
7392 END;
7393 $creator$ LANGUAGE 'plpgsql';
7394
7395 CREATE FUNCTION auditor.create_auditor_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7396 BEGIN
7397     EXECUTE $$
7398         CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history (
7399             audit_id    BIGINT                          PRIMARY KEY,
7400             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
7401             audit_action        TEXT                            NOT NULL,
7402             LIKE $$ || sch || $$.$$ || tbl || $$
7403         );
7404     $$;
7405         RETURN TRUE;
7406 END;
7407 $creator$ LANGUAGE 'plpgsql';
7408
7409 CREATE FUNCTION auditor.create_auditor_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7410 BEGIN
7411     EXECUTE $$
7412         CREATE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ()
7413         RETURNS TRIGGER AS $func$
7414         BEGIN
7415             INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history
7416                 SELECT  nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
7417                     now(),
7418                     SUBSTR(TG_OP,1,1),
7419                     OLD.*;
7420             RETURN NULL;
7421         END;
7422         $func$ LANGUAGE 'plpgsql';
7423     $$;
7424         RETURN TRUE;
7425 END;
7426 $creator$ LANGUAGE 'plpgsql';
7427
7428 CREATE FUNCTION auditor.create_auditor_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7429 BEGIN
7430     EXECUTE $$
7431         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
7432             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
7433             EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ();
7434     $$;
7435         RETURN TRUE;
7436 END;
7437 $creator$ LANGUAGE 'plpgsql';
7438
7439 CREATE FUNCTION auditor.create_auditor_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7440 BEGIN
7441     EXECUTE $$
7442         CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
7443             SELECT      -1, now() as audit_time, '-' as audit_action, *
7444               FROM      $$ || sch || $$.$$ || tbl || $$
7445                 UNION ALL
7446             SELECT      *
7447               FROM      auditor.$$ || sch || $$_$$ || tbl || $$_history;
7448     $$;
7449         RETURN TRUE;
7450 END;
7451 $creator$ LANGUAGE 'plpgsql';
7452
7453 DROP FUNCTION IF EXISTS auditor.create_auditor (TEXT, TEXT);
7454
7455 -- The main event
7456
7457 CREATE FUNCTION auditor.create_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7458 BEGIN
7459     PERFORM auditor.create_auditor_seq(sch, tbl);
7460     PERFORM auditor.create_auditor_history(sch, tbl);
7461     PERFORM auditor.create_auditor_func(sch, tbl);
7462     PERFORM auditor.create_auditor_update_trigger(sch, tbl);
7463     PERFORM auditor.create_auditor_lifecycle(sch, tbl);
7464     RETURN TRUE;
7465 END;
7466 $creator$ LANGUAGE 'plpgsql';
7467
7468 ALTER TABLE action.hold_request ADD COLUMN cut_in_line BOOL;
7469
7470 ALTER TABLE action.hold_request
7471 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
7472
7473 ALTER TABLE action.hold_request
7474 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
7475
7476 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_current_copy_fkey;
7477
7478 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_hold_type_check;
7479
7480 UPDATE config.index_normalizer SET param_count = 0 WHERE func = 'split_date_range';
7481
7482 CREATE INDEX actor_usr_usrgroup_idx ON actor.usr (usrgroup);
7483
7484 -- Add claims_never_checked_out_count to actor.usr, related history
7485
7486 ALTER TABLE actor.usr ADD COLUMN
7487         claims_never_checked_out_count  INT         NOT NULL DEFAULT 0;
7488
7489 ALTER TABLE AUDITOR.actor_usr_history ADD COLUMN 
7490         claims_never_checked_out_count INT;
7491
7492 DROP VIEW IF EXISTS auditor.actor_usr_lifecycle;
7493
7494 SELECT auditor.create_auditor_lifecycle( 'actor', 'usr' );
7495
7496 -----------
7497
7498 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
7499 BEGIN
7500         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
7501                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
7502                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
7503                 END IF;
7504                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
7505                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
7506                 END IF;
7507                 IF NEW.stop_fines = 'LOST' THEN
7508                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
7509                 END IF;
7510         END IF;
7511         RETURN NEW;
7512 END;
7513 $$ LANGUAGE 'plpgsql';
7514
7515 -- Create new table acq.fund_allocation_percent
7516 -- Populate it from acq.fund_allocation
7517 -- Convert all percentages to amounts in acq.fund_allocation
7518
7519 CREATE TABLE acq.fund_allocation_percent
7520 (
7521     id                   SERIAL            PRIMARY KEY,
7522     funding_source       INT               NOT NULL REFERENCES acq.funding_source
7523                                                DEFERRABLE INITIALLY DEFERRED,
7524     org                  INT               NOT NULL REFERENCES actor.org_unit
7525                                                DEFERRABLE INITIALLY DEFERRED,
7526     fund_code            TEXT,
7527     percent              NUMERIC           NOT NULL,
7528     allocator            INTEGER           NOT NULL REFERENCES actor.usr
7529                                                DEFERRABLE INITIALLY DEFERRED,
7530     note                 TEXT,
7531     create_time          TIMESTAMPTZ       NOT NULL DEFAULT now(),
7532     CONSTRAINT logical_key UNIQUE( funding_source, org, fund_code ),
7533     CONSTRAINT percentage_range CHECK( percent >= 0 AND percent <= 100 )
7534 );
7535
7536 -- Trigger function to validate combination of org_unit and fund_code
7537
7538 CREATE OR REPLACE FUNCTION acq.fund_alloc_percent_val()
7539 RETURNS TRIGGER AS $$
7540 --
7541 DECLARE
7542 --
7543 dummy int := 0;
7544 --
7545 BEGIN
7546     SELECT
7547         1
7548     INTO
7549         dummy
7550     FROM
7551         acq.fund
7552     WHERE
7553         org = NEW.org
7554         AND code = NEW.fund_code
7555         LIMIT 1;
7556     --
7557     IF dummy = 1 then
7558         RETURN NEW;
7559     ELSE
7560         RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code;
7561     END IF;
7562 END;
7563 $$ LANGUAGE plpgsql;
7564
7565 CREATE TRIGGER acq_fund_alloc_percent_val_trig
7566     BEFORE INSERT OR UPDATE ON acq.fund_allocation_percent
7567     FOR EACH ROW EXECUTE PROCEDURE acq.fund_alloc_percent_val();
7568
7569 CREATE OR REPLACE FUNCTION acq.fap_limit_100()
7570 RETURNS TRIGGER AS $$
7571 DECLARE
7572 --
7573 total_percent numeric;
7574 --
7575 BEGIN
7576     SELECT
7577         sum( percent )
7578     INTO
7579         total_percent
7580     FROM
7581         acq.fund_allocation_percent AS fap
7582     WHERE
7583         fap.funding_source = NEW.funding_source;
7584     --
7585     IF total_percent > 100 THEN
7586         RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %',
7587             NEW.funding_source;
7588     ELSE
7589         RETURN NEW;
7590     END IF;
7591 END;
7592 $$ LANGUAGE plpgsql;
7593
7594 CREATE TRIGGER acqfap_limit_100_trig
7595     AFTER INSERT OR UPDATE ON acq.fund_allocation_percent
7596     FOR EACH ROW EXECUTE PROCEDURE acq.fap_limit_100();
7597
7598 -- Populate new table from acq.fund_allocation
7599
7600 INSERT INTO acq.fund_allocation_percent
7601 (
7602     funding_source,
7603     org,
7604     fund_code,
7605     percent,
7606     allocator,
7607     note,
7608     create_time
7609 )
7610     SELECT
7611         fa.funding_source,
7612         fund.org,
7613         fund.code,
7614         fa.percent,
7615         fa.allocator,
7616         fa.note,
7617         fa.create_time
7618     FROM
7619         acq.fund_allocation AS fa
7620             INNER JOIN acq.fund AS fund
7621                 ON ( fa.fund = fund.id )
7622     WHERE
7623         fa.percent is not null
7624     ORDER BY
7625         fund.org;
7626
7627 -- Temporary function to convert percentages to amounts in acq.fund_allocation
7628
7629 -- Algorithm to apply to each funding source:
7630
7631 -- 1. Add up the credits.
7632 -- 2. Add up the percentages.
7633 -- 3. Multiply the sum of the percentages times the sum of the credits.  Drop any
7634 --    fractional cents from the result.  This is the total amount to be allocated.
7635 -- 4. For each allocation: multiply the percentage by the total allocation.  Drop any
7636 --    fractional cents to get a preliminary amount.
7637 -- 5. Add up the preliminary amounts for all the allocations.
7638 -- 6. Subtract the results of step 5 from the result of step 3.  The difference is the
7639 --    number of residual cents (resulting from having dropped fractional cents) that
7640 --    must be distributed across the funds in order to make the total of the amounts
7641 --    match the total allocation.
7642 -- 7. Make a second pass through the allocations, in decreasing order of the fractional
7643 --    cents that were dropped from their amounts in step 4.  Add one cent to the amount
7644 --    for each successive fund, until all the residual cents have been exhausted.
7645
7646 -- Result: the sum of the individual allocations now equals the total to be allocated,
7647 -- to the penny.  The individual amounts match the percentages as closely as possible,
7648 -- given the constraint that the total must match.
7649
7650 CREATE OR REPLACE FUNCTION acq.apply_percents()
7651 RETURNS VOID AS $$
7652 declare
7653 --
7654 tot              RECORD;
7655 fund             RECORD;
7656 tot_cents        INTEGER;
7657 src              INTEGER;
7658 id               INTEGER[];
7659 curr_id          INTEGER;
7660 pennies          NUMERIC[];
7661 curr_amount      NUMERIC;
7662 i                INTEGER;
7663 total_of_floors  INTEGER;
7664 total_percent    NUMERIC;
7665 total_allocation INTEGER;
7666 residue          INTEGER;
7667 --
7668 begin
7669         RAISE NOTICE 'Applying percents';
7670         FOR tot IN
7671                 SELECT
7672                         fsrc.funding_source,
7673                         sum( fsrc.amount ) AS total
7674                 FROM
7675                         acq.funding_source_credit AS fsrc
7676                 WHERE fsrc.funding_source IN
7677                         ( SELECT DISTINCT fa.funding_source
7678                           FROM acq.fund_allocation AS fa
7679                           WHERE fa.percent IS NOT NULL )
7680                 GROUP BY
7681                         fsrc.funding_source
7682         LOOP
7683                 tot_cents = floor( tot.total * 100 );
7684                 src = tot.funding_source;
7685                 RAISE NOTICE 'Funding source % total %',
7686                         src, tot_cents;
7687                 i := 0;
7688                 total_of_floors := 0;
7689                 total_percent := 0;
7690                 --
7691                 FOR fund in
7692                         SELECT
7693                                 fa.id,
7694                                 fa.percent,
7695                                 floor( fa.percent * tot_cents / 100 ) as floor_pennies
7696                         FROM
7697                                 acq.fund_allocation AS fa
7698                         WHERE
7699                                 fa.funding_source = src
7700                                 AND fa.percent IS NOT NULL
7701                         ORDER BY
7702                                 mod( fa.percent * tot_cents / 100, 1 ),
7703                                 fa.fund,
7704                                 fa.id
7705                 LOOP
7706                         RAISE NOTICE '   %: %',
7707                                 fund.id,
7708                                 fund.floor_pennies;
7709                         i := i + 1;
7710                         id[i] = fund.id;
7711                         pennies[i] = fund.floor_pennies;
7712                         total_percent := total_percent + fund.percent;
7713                         total_of_floors := total_of_floors + pennies[i];
7714                 END LOOP;
7715                 total_allocation := floor( total_percent * tot_cents /100 );
7716                 RAISE NOTICE 'Total before distributing residue: %', total_of_floors;
7717                 residue := total_allocation - total_of_floors;
7718                 RAISE NOTICE 'Residue: %', residue;
7719                 --
7720                 -- Post the calculated amounts, revising as needed to
7721                 -- distribute the rounding error
7722                 --
7723                 WHILE i > 0 LOOP
7724                         IF residue > 0 THEN
7725                                 pennies[i] = pennies[i] + 1;
7726                                 residue := residue - 1;
7727                         END IF;
7728                         --
7729                         -- Post amount
7730                         --
7731                         curr_id     := id[i];
7732                         curr_amount := trunc( pennies[i] / 100, 2 );
7733                         --
7734                         UPDATE
7735                                 acq.fund_allocation AS fa
7736                         SET
7737                                 amount = curr_amount,
7738                                 percent = NULL
7739                         WHERE
7740                                 fa.id = curr_id;
7741                         --
7742                         RAISE NOTICE '   ID % and amount %',
7743                                 curr_id,
7744                                 curr_amount;
7745                         i = i - 1;
7746                 END LOOP;
7747         END LOOP;
7748 end;
7749 $$ LANGUAGE 'plpgsql';
7750
7751 -- Run the temporary function
7752
7753 select * from acq.apply_percents();
7754
7755 -- Drop the temporary function now that we're done with it
7756
7757 DROP FUNCTION IF EXISTS acq.apply_percents();
7758
7759 -- Eliminate acq.fund_allocation.percent, which has been moved to the acq.fund_allocation_percent table.
7760
7761 -- If the following step fails, it's probably because there are still some non-null percent values in
7762 -- acq.fund_allocation.  They should have all been converted to amounts, and then set to null, by a
7763 -- previous upgrade step based on 0049.schema.acq_funding_allocation_percent.sql.  If there are any
7764 -- non-null values, then either that step didn't run, or it didn't work, or some non-null values
7765 -- slipped in afterwards.
7766
7767 -- To convert any remaining percents to amounts: create, run, and then drop the temporary stored
7768 -- procedure acq.apply_percents() as defined above.
7769
7770 ALTER TABLE acq.fund_allocation
7771 ALTER COLUMN amount SET NOT NULL;
7772
7773 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
7774     SELECT  fund,
7775             SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
7776     FROM acq.fund_allocation a
7777          JOIN acq.fund f ON (a.fund = f.id)
7778          JOIN acq.funding_source s ON (a.funding_source = s.id)
7779     GROUP BY 1;
7780
7781 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
7782     SELECT  funding_source,
7783             SUM(a.amount)::NUMERIC(100,2) AS amount
7784     FROM  acq.fund_allocation a
7785     GROUP BY 1;
7786
7787 ALTER TABLE acq.fund_allocation
7788 DROP COLUMN percent;
7789
7790 CREATE TABLE asset.copy_location_order
7791 (
7792         id              SERIAL           PRIMARY KEY,
7793         location        INT              NOT NULL
7794                                              REFERENCES asset.copy_location
7795                                              ON DELETE CASCADE
7796                                              DEFERRABLE INITIALLY DEFERRED,
7797         org             INT              NOT NULL
7798                                              REFERENCES actor.org_unit
7799                                              ON DELETE CASCADE
7800                                              DEFERRABLE INITIALLY DEFERRED,
7801         position        INT              NOT NULL DEFAULT 0,
7802         CONSTRAINT acplo_once_per_org UNIQUE ( location, org )
7803 );
7804
7805 ALTER TABLE money.credit_card_payment ADD COLUMN cc_processor TEXT;
7806
7807 -- If you ran this before its most recent incarnation:
7808 -- delete from config.upgrade_log where version = '0328';
7809 -- alter table money.credit_card_payment drop column cc_name;
7810
7811 ALTER TABLE money.credit_card_payment ADD COLUMN cc_first_name TEXT;
7812 ALTER TABLE money.credit_card_payment ADD COLUMN cc_last_name TEXT;
7813
7814 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$
7815 DECLARE
7816     current_group    permission.grp_tree%ROWTYPE;
7817     user_object    actor.usr%ROWTYPE;
7818     item_object    asset.copy%ROWTYPE;
7819     cn_object    asset.call_number%ROWTYPE;
7820     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
7821     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
7822     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
7823 BEGIN
7824     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7825     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7826     SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number;
7827     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
7828     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
7829
7830     LOOP 
7831         -- for each potential matchpoint for this ou and group ...
7832         FOR current_mp IN
7833             SELECT  m.*
7834               FROM  config.circ_matrix_matchpoint m
7835                     JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
7836                     LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
7837               WHERE m.grp = current_group.id
7838                     AND m.active
7839                     AND (m.copy_owning_lib IS NULL OR cn_object.owning_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_owning_lib) ))
7840                     AND (m.copy_circ_lib   IS NULL OR item_object.circ_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_circ_lib)   ))
7841               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
7842                     CASE WHEN m.copy_owning_lib IS NOT NULL
7843                         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 )
7844                         ELSE 0
7845                     END +
7846                     CASE WHEN m.copy_circ_lib IS NOT NULL
7847                         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 )
7848                         ELSE 0
7849                     END +
7850                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
7851                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
7852                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
7853                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
7854                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
7855                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
7856                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
7857                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
7858                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
7859
7860             IF current_mp.is_renewal IS NOT NULL THEN
7861                 CONTINUE WHEN current_mp.is_renewal <> renewal;
7862             END IF;
7863
7864             IF current_mp.circ_modifier IS NOT NULL THEN
7865                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
7866             END IF;
7867
7868             IF current_mp.marc_type IS NOT NULL THEN
7869                 IF item_object.circ_as_type IS NOT NULL THEN
7870                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
7871                 ELSE
7872                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
7873                 END IF;
7874             END IF;
7875
7876             IF current_mp.marc_form IS NOT NULL THEN
7877                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
7878             END IF;
7879
7880             IF current_mp.marc_vr_format IS NOT NULL THEN
7881                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
7882             END IF;
7883
7884             IF current_mp.ref_flag IS NOT NULL THEN
7885                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
7886             END IF;
7887
7888             IF current_mp.juvenile_flag IS NOT NULL THEN
7889                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
7890             END IF;
7891
7892             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
7893                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
7894             END IF;
7895
7896             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
7897                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
7898             END IF;
7899
7900
7901             -- everything was undefined or matched
7902             matchpoint = current_mp;
7903
7904             EXIT WHEN matchpoint.id IS NOT NULL;
7905         END LOOP;
7906
7907         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
7908
7909         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
7910     END LOOP;
7911
7912     RETURN matchpoint;
7913 END;
7914 $func$ LANGUAGE plpgsql;
7915
7916 CREATE TYPE action.hold_stats AS (
7917     hold_count              INT,
7918     copy_count              INT,
7919     available_count         INT,
7920     total_copy_ratio        FLOAT,
7921     available_copy_ratio    FLOAT
7922 );
7923
7924 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
7925 DECLARE
7926     output          action.hold_stats%ROWTYPE;
7927     hold_count      INT := 0;
7928     copy_count      INT := 0;
7929     available_count INT := 0;
7930     hold_map_data   RECORD;
7931 BEGIN
7932
7933     output.hold_count := 0;
7934     output.copy_count := 0;
7935     output.available_count := 0;
7936
7937     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
7938       FROM  action.hold_copy_map m
7939             JOIN action.hold_request h ON (m.hold = h.id)
7940       WHERE m.target_copy = copy_id
7941             AND NOT h.frozen;
7942
7943     output.hold_count := hold_count;
7944
7945     IF output.hold_count > 0 THEN
7946         FOR hold_map_data IN
7947             SELECT  DISTINCT m.target_copy,
7948                     acp.status
7949               FROM  action.hold_copy_map m
7950                     JOIN asset.copy acp ON (m.target_copy = acp.id)
7951                     JOIN action.hold_request h ON (m.hold = h.id)
7952               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
7953         LOOP
7954             output.copy_count := output.copy_count + 1;
7955             IF hold_map_data.status IN (0,7,12) THEN
7956                 output.available_count := output.available_count + 1;
7957             END IF;
7958         END LOOP;
7959         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
7960         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
7961
7962     END IF;
7963
7964     RETURN output;
7965
7966 END;
7967 $func$ LANGUAGE PLPGSQL;
7968
7969 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN total_copy_hold_ratio FLOAT;
7970 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN available_copy_hold_ratio FLOAT;
7971
7972 ALTER TABLE config.circ_matrix_matchpoint DROP CONSTRAINT ep_once_per_grp_loc_mod_marc;
7973
7974 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_circ_lib   INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7975 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_owning_lib INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7976
7977 ALTER TABLE config.circ_matrix_matchpoint ADD CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (
7978     grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag,
7979     juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal, copy_circ_lib,
7980     copy_owning_lib
7981 );
7982
7983 -- Return the correct fail_part when the item can't be found
7984 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$
7985 DECLARE
7986     user_object        actor.usr%ROWTYPE;
7987     standing_penalty    config.standing_penalty%ROWTYPE;
7988     item_object        asset.copy%ROWTYPE;
7989     item_status_object    config.copy_status%ROWTYPE;
7990     item_location_object    asset.copy_location%ROWTYPE;
7991     result            action.matrix_test_result;
7992     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
7993     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
7994     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
7995     hold_ratio          action.hold_stats%ROWTYPE;
7996     penalty_type         TEXT;
7997     tmp_grp         INT;
7998     items_out        INT;
7999     context_org_list        INT[];
8000     done            BOOL := FALSE;
8001 BEGIN
8002     result.success := TRUE;
8003
8004     -- Fail if the user is BARRED
8005     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8006
8007     -- Fail if we couldn't find the user 
8008     IF user_object.id IS NULL THEN
8009         result.fail_part := 'no_user';
8010         result.success := FALSE;
8011         done := TRUE;
8012         RETURN NEXT result;
8013         RETURN;
8014     END IF;
8015
8016     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
8017
8018     -- Fail if we couldn't find the item 
8019     IF item_object.id IS NULL THEN
8020         result.fail_part := 'no_item';
8021         result.success := FALSE;
8022         done := TRUE;
8023         RETURN NEXT result;
8024         RETURN;
8025     END IF;
8026
8027     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
8028     result.matchpoint := circ_test.id;
8029
8030     -- Fail if we couldn't find a matchpoint
8031     IF result.matchpoint IS NULL THEN
8032         result.fail_part := 'no_matchpoint';
8033         result.success := FALSE;
8034         done := TRUE;
8035         RETURN NEXT result;
8036     END IF;
8037
8038     IF user_object.barred IS TRUE THEN
8039         result.fail_part := 'actor.usr.barred';
8040         result.success := FALSE;
8041         done := TRUE;
8042         RETURN NEXT result;
8043     END IF;
8044
8045     -- Fail if the item can't circulate
8046     IF item_object.circulate IS FALSE THEN
8047         result.fail_part := 'asset.copy.circulate';
8048         result.success := FALSE;
8049         done := TRUE;
8050         RETURN NEXT result;
8051     END IF;
8052
8053     -- Fail if the item isn't in a circulateable status on a non-renewal
8054     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN
8055         result.fail_part := 'asset.copy.status';
8056         result.success := FALSE;
8057         done := TRUE;
8058         RETURN NEXT result;
8059     ELSIF renewal AND item_object.status <> 1 THEN
8060         result.fail_part := 'asset.copy.status';
8061         result.success := FALSE;
8062         done := TRUE;
8063         RETURN NEXT result;
8064     END IF;
8065
8066     -- Fail if the item can't circulate because of the shelving location
8067     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
8068     IF item_location_object.circulate IS FALSE THEN
8069         result.fail_part := 'asset.copy_location.circulate';
8070         result.success := FALSE;
8071         done := TRUE;
8072         RETURN NEXT result;
8073     END IF;
8074
8075     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
8076
8077     -- Fail if the test is set to hard non-circulating
8078     IF circ_test.circulate IS FALSE THEN
8079         result.fail_part := 'config.circ_matrix_test.circulate';
8080         result.success := FALSE;
8081         done := TRUE;
8082         RETURN NEXT result;
8083     END IF;
8084
8085     -- Fail if the total copy-hold ratio is too low
8086     IF circ_test.total_copy_hold_ratio IS NOT NULL THEN
8087         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
8088         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_test.total_copy_hold_ratio THEN
8089             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
8090             result.success := FALSE;
8091             done := TRUE;
8092             RETURN NEXT result;
8093         END IF;
8094     END IF;
8095
8096     -- Fail if the available copy-hold ratio is too low
8097     IF circ_test.available_copy_hold_ratio IS NOT NULL THEN
8098         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
8099         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_test.available_copy_hold_ratio THEN
8100             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
8101             result.success := FALSE;
8102             done := TRUE;
8103             RETURN NEXT result;
8104         END IF;
8105     END IF;
8106
8107     IF renewal THEN
8108         penalty_type = '%RENEW%';
8109     ELSE
8110         penalty_type = '%CIRC%';
8111     END IF;
8112
8113     FOR standing_penalty IN
8114         SELECT  DISTINCT csp.*
8115           FROM  actor.usr_standing_penalty usp
8116                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
8117           WHERE usr = match_user
8118                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
8119                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
8120                 AND csp.block_list LIKE penalty_type LOOP
8121
8122         result.fail_part := standing_penalty.name;
8123         result.success := FALSE;
8124         done := TRUE;
8125         RETURN NEXT result;
8126     END LOOP;
8127
8128     -- Fail if the user has too many items with specific circ_modifiers checked out
8129     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
8130         SELECT  INTO items_out COUNT(*)
8131           FROM  action.circulation circ
8132             JOIN asset.copy cp ON (cp.id = circ.target_copy)
8133           WHERE circ.usr = match_user
8134                AND circ.circ_lib IN ( SELECT * FROM explode_array(context_org_list) )
8135             AND circ.checkin_time IS NULL
8136             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
8137             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);
8138         IF items_out >= out_by_circ_mod.items_out THEN
8139             result.fail_part := 'config.circ_matrix_circ_mod_test';
8140             result.success := FALSE;
8141             done := TRUE;
8142             RETURN NEXT result;
8143         END IF;
8144     END LOOP;
8145
8146     -- If we passed everything, return the successful matchpoint id
8147     IF NOT done THEN
8148         RETURN NEXT result;
8149     END IF;
8150
8151     RETURN;
8152 END;
8153 $func$ LANGUAGE plpgsql;
8154
8155 CREATE TABLE config.remote_account (
8156     id          SERIAL  PRIMARY KEY,
8157     label       TEXT    NOT NULL,
8158     host        TEXT    NOT NULL,   -- name or IP, :port optional
8159     username    TEXT,               -- optional, since we could default to $USER
8160     password    TEXT,               -- optional, since we could use SSH keys, or anonymous login.
8161     account     TEXT,               -- aka profile or FTP "account" command
8162     path        TEXT,               -- aka directory
8163     owner       INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
8164     last_activity TIMESTAMP WITH TIME ZONE
8165 );
8166
8167 CREATE TABLE acq.edi_account (      -- similar tables can extend remote_account for other parts of EG
8168     provider    INT     NOT NULL REFERENCES acq.provider          (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
8169     in_dir      TEXT,   -- incoming messages dir (probably different than config.remote_account.path, the outgoing dir)
8170         vendcode    TEXT,
8171         vendacct    TEXT
8172
8173 ) INHERITS (config.remote_account);
8174
8175 ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
8176
8177 CREATE TABLE acq.claim_type (
8178         id             SERIAL           PRIMARY KEY,
8179         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8180                                                  DEFERRABLE INITIALLY DEFERRED,
8181         code           TEXT             NOT NULL,
8182         description    TEXT             NOT NULL,
8183         CONSTRAINT claim_type_once_per_org UNIQUE ( org_unit, code )
8184 );
8185
8186 CREATE TABLE acq.claim (
8187         id             SERIAL           PRIMARY KEY,
8188         type           INT              NOT NULL REFERENCES acq.claim_type
8189                                                  DEFERRABLE INITIALLY DEFERRED,
8190         lineitem_detail BIGINT          NOT NULL REFERENCES acq.lineitem_detail
8191                                                  DEFERRABLE INITIALLY DEFERRED
8192 );
8193
8194 CREATE TABLE acq.claim_policy (
8195         id              SERIAL       PRIMARY KEY,
8196         org_unit        INT          NOT NULL REFERENCES actor.org_unit
8197                                      DEFERRABLE INITIALLY DEFERRED,
8198         name            TEXT         NOT NULL,
8199         description     TEXT         NOT NULL,
8200         CONSTRAINT name_once_per_org UNIQUE (org_unit, name)
8201 );
8202
8203 -- Add a san column for EDI. 
8204 -- See: http://isbn.org/standards/home/isbn/us/san/san-qa.asp
8205
8206 ALTER TABLE acq.provider ADD COLUMN san INT;
8207
8208 ALTER TABLE acq.provider ALTER COLUMN san TYPE TEXT USING lpad(text(san), 7, '0');
8209
8210 -- null edi_default is OK... it has to be, since we have no values in acq.edi_account yet
8211 ALTER TABLE acq.provider ADD COLUMN edi_default INT REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
8212
8213 ALTER TABLE acq.provider
8214         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
8215
8216 ALTER TABLE acq.provider
8217         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
8218
8219 ALTER TABLE acq.provider
8220         ADD COLUMN url TEXT;
8221
8222 ALTER TABLE acq.provider
8223         ADD COLUMN email TEXT;
8224
8225 ALTER TABLE acq.provider
8226         ADD COLUMN phone TEXT;
8227
8228 ALTER TABLE acq.provider
8229         ADD COLUMN fax_phone TEXT;
8230
8231 ALTER TABLE acq.provider
8232         ADD COLUMN default_claim_policy INT
8233                 REFERENCES acq.claim_policy
8234                 DEFERRABLE INITIALLY DEFERRED;
8235
8236 ALTER TABLE action.transit_copy
8237 ADD COLUMN prev_dest INTEGER REFERENCES actor.org_unit( id )
8238                                                          DEFERRABLE INITIALLY DEFERRED;
8239
8240 DROP SCHEMA IF EXISTS booking CASCADE;
8241
8242 CREATE SCHEMA booking;
8243
8244 CREATE TABLE booking.resource_type (
8245         id             SERIAL          PRIMARY KEY,
8246         name           TEXT            NOT NULL,
8247         fine_interval  INTERVAL,
8248         fine_amount    DECIMAL(8,2)    NOT NULL DEFAULT 0,
8249         owner          INT             NOT NULL
8250                                        REFERENCES actor.org_unit( id )
8251                                        DEFERRABLE INITIALLY DEFERRED,
8252         catalog_item   BOOLEAN         NOT NULL DEFAULT FALSE,
8253         transferable   BOOLEAN         NOT NULL DEFAULT FALSE,
8254     record         BIGINT          REFERENCES biblio.record_entry (id)
8255                                        DEFERRABLE INITIALLY DEFERRED,
8256     max_fine       NUMERIC(8,2),
8257     elbow_room     INTERVAL,
8258     CONSTRAINT brt_name_and_record_once_per_owner UNIQUE(owner, name, record)
8259 );
8260
8261 CREATE TABLE booking.resource (
8262         id             SERIAL           PRIMARY KEY,
8263         owner          INT              NOT NULL
8264                                         REFERENCES actor.org_unit(id)
8265                                         DEFERRABLE INITIALLY DEFERRED,
8266         type           INT              NOT NULL
8267                                         REFERENCES booking.resource_type(id)
8268                                         DEFERRABLE INITIALLY DEFERRED,
8269         overbook       BOOLEAN          NOT NULL DEFAULT FALSE,
8270         barcode        TEXT             NOT NULL,
8271         deposit        BOOLEAN          NOT NULL DEFAULT FALSE,
8272         deposit_amount DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
8273         user_fee       DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
8274         CONSTRAINT br_unique UNIQUE (owner, barcode)
8275 );
8276
8277 -- For non-catalog items: hijack barcode for name/description
8278
8279 CREATE TABLE booking.resource_attr (
8280         id              SERIAL          PRIMARY KEY,
8281         owner           INT             NOT NULL
8282                                         REFERENCES actor.org_unit(id)
8283                                         DEFERRABLE INITIALLY DEFERRED,
8284         name            TEXT            NOT NULL,
8285         resource_type   INT             NOT NULL
8286                                         REFERENCES booking.resource_type(id)
8287                                         ON DELETE CASCADE
8288                                         DEFERRABLE INITIALLY DEFERRED,
8289         required        BOOLEAN         NOT NULL DEFAULT FALSE,
8290         CONSTRAINT bra_name_once_per_type UNIQUE(resource_type, name)
8291 );
8292
8293 CREATE TABLE booking.resource_attr_value (
8294         id               SERIAL         PRIMARY KEY,
8295         owner            INT            NOT NULL
8296                                         REFERENCES actor.org_unit(id)
8297                                         DEFERRABLE INITIALLY DEFERRED,
8298         attr             INT            NOT NULL
8299                                         REFERENCES booking.resource_attr(id)
8300                                         DEFERRABLE INITIALLY DEFERRED,
8301         valid_value      TEXT           NOT NULL,
8302         CONSTRAINT brav_logical_key UNIQUE(owner, attr, valid_value)
8303 );
8304
8305 CREATE TABLE booking.resource_attr_map (
8306         id               SERIAL         PRIMARY KEY,
8307         resource         INT            NOT NULL
8308                                         REFERENCES booking.resource(id)
8309                                         ON DELETE CASCADE
8310                                         DEFERRABLE INITIALLY DEFERRED,
8311         resource_attr    INT            NOT NULL
8312                                         REFERENCES booking.resource_attr(id)
8313                                         ON DELETE CASCADE
8314                                         DEFERRABLE INITIALLY DEFERRED,
8315         value            INT            NOT NULL
8316                                         REFERENCES booking.resource_attr_value(id)
8317                                         DEFERRABLE INITIALLY DEFERRED,
8318         CONSTRAINT bram_one_value_per_attr UNIQUE(resource, resource_attr)
8319 );
8320
8321 CREATE TABLE booking.reservation (
8322         request_time     TIMESTAMPTZ   NOT NULL DEFAULT now(),
8323         start_time       TIMESTAMPTZ,
8324         end_time         TIMESTAMPTZ,
8325         capture_time     TIMESTAMPTZ,
8326         cancel_time      TIMESTAMPTZ,
8327         pickup_time      TIMESTAMPTZ,
8328         return_time      TIMESTAMPTZ,
8329         booking_interval INTERVAL,
8330         fine_interval    INTERVAL,
8331         fine_amount      DECIMAL(8,2),
8332         target_resource_type  INT       NOT NULL
8333                                         REFERENCES booking.resource_type(id)
8334                                         ON DELETE CASCADE
8335                                         DEFERRABLE INITIALLY DEFERRED,
8336         target_resource  INT            REFERENCES booking.resource(id)
8337                                         ON DELETE CASCADE
8338                                         DEFERRABLE INITIALLY DEFERRED,
8339         current_resource INT            REFERENCES booking.resource(id)
8340                                         ON DELETE CASCADE
8341                                         DEFERRABLE INITIALLY DEFERRED,
8342         request_lib      INT            NOT NULL
8343                                         REFERENCES actor.org_unit(id)
8344                                         DEFERRABLE INITIALLY DEFERRED,
8345         pickup_lib       INT            REFERENCES actor.org_unit(id)
8346                                         DEFERRABLE INITIALLY DEFERRED,
8347         capture_staff    INT            REFERENCES actor.usr(id)
8348                                         DEFERRABLE INITIALLY DEFERRED,
8349     max_fine         NUMERIC(8,2)
8350 ) INHERITS (money.billable_xact);
8351
8352 ALTER TABLE booking.reservation ADD PRIMARY KEY (id);
8353
8354 ALTER TABLE booking.reservation
8355         ADD CONSTRAINT booking_reservation_usr_fkey
8356         FOREIGN KEY (usr) REFERENCES actor.usr (id)
8357         DEFERRABLE INITIALLY DEFERRED;
8358
8359 CREATE TABLE booking.reservation_attr_value_map (
8360         id               SERIAL         PRIMARY KEY,
8361         reservation      INT            NOT NULL
8362                                         REFERENCES booking.reservation(id)
8363                                         ON DELETE CASCADE
8364                                         DEFERRABLE INITIALLY DEFERRED,
8365         attr_value       INT            NOT NULL
8366                                         REFERENCES booking.resource_attr_value(id)
8367                                         ON DELETE CASCADE
8368                                         DEFERRABLE INITIALLY DEFERRED,
8369         CONSTRAINT bravm_logical_key UNIQUE(reservation, attr_value)
8370 );
8371
8372 -- represents a circ chain summary
8373 CREATE TYPE action.circ_chain_summary AS (
8374     num_circs INTEGER,
8375     start_time TIMESTAMP WITH TIME ZONE,
8376     checkout_workstation TEXT,
8377     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
8378     last_stop_fines TEXT,
8379     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
8380     last_renewal_workstation TEXT, -- NULL if no renewals
8381     last_checkin_workstation TEXT,
8382     last_checkin_time TIMESTAMP WITH TIME ZONE,
8383     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
8384 );
8385
8386 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id INTEGER ) RETURNS SETOF action.circulation AS $$
8387 DECLARE
8388     tmp_circ action.circulation%ROWTYPE;
8389     circ_0 action.circulation%ROWTYPE;
8390 BEGIN
8391
8392     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
8393
8394     IF tmp_circ IS NULL THEN
8395         RETURN NEXT tmp_circ;
8396     END IF;
8397     circ_0 := tmp_circ;
8398
8399     -- find the front of the chain
8400     WHILE TRUE LOOP
8401         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
8402         IF tmp_circ IS NULL THEN
8403             EXIT;
8404         END IF;
8405         circ_0 := tmp_circ;
8406     END LOOP;
8407
8408     -- now send the circs to the caller, oldest to newest
8409     tmp_circ := circ_0;
8410     WHILE TRUE LOOP
8411         IF tmp_circ IS NULL THEN
8412             EXIT;
8413         END IF;
8414         RETURN NEXT tmp_circ;
8415         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
8416     END LOOP;
8417
8418 END;
8419 $$ LANGUAGE 'plpgsql';
8420
8421 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id INTEGER ) RETURNS action.circ_chain_summary AS $$
8422
8423 DECLARE
8424
8425     -- first circ in the chain
8426     circ_0 action.circulation%ROWTYPE;
8427
8428     -- last circ in the chain
8429     circ_n action.circulation%ROWTYPE;
8430
8431     -- circ chain under construction
8432     chain action.circ_chain_summary;
8433     tmp_circ action.circulation%ROWTYPE;
8434
8435 BEGIN
8436     
8437     chain.num_circs := 0;
8438     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
8439
8440         IF chain.num_circs = 0 THEN
8441             circ_0 := tmp_circ;
8442         END IF;
8443
8444         chain.num_circs := chain.num_circs + 1;
8445         circ_n := tmp_circ;
8446     END LOOP;
8447
8448     chain.start_time := circ_0.xact_start;
8449     chain.last_stop_fines := circ_n.stop_fines;
8450     chain.last_stop_fines_time := circ_n.stop_fines_time;
8451     chain.last_checkin_time := circ_n.checkin_time;
8452     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
8453     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
8454     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
8455
8456     IF chain.num_circs > 1 THEN
8457         chain.last_renewal_time := circ_n.xact_start;
8458         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
8459     END IF;
8460
8461     RETURN chain;
8462
8463 END;
8464 $$ LANGUAGE 'plpgsql';
8465
8466 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('reservation');
8467 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
8468 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
8469
8470 ALTER TABLE config.standing_penalty
8471         ADD COLUMN org_depth   INTEGER;
8472
8473 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
8474 DECLARE
8475     user_object         actor.usr%ROWTYPE;
8476     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
8477     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
8478     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
8479     max_fines           permission.grp_penalty_threshold%ROWTYPE;
8480     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
8481     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
8482     tmp_grp             INT;
8483     items_overdue       INT;
8484     items_out           INT;
8485     context_org_list    INT[];
8486     current_fines        NUMERIC(8,2) := 0.0;
8487     tmp_fines            NUMERIC(8,2);
8488     tmp_groc            RECORD;
8489     tmp_circ            RECORD;
8490     tmp_org             actor.org_unit%ROWTYPE;
8491     tmp_penalty         config.standing_penalty%ROWTYPE;
8492     tmp_depth           INTEGER;
8493 BEGIN
8494     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8495
8496     -- Max fines
8497     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8498
8499     -- Fail if the user has a high fine balance
8500     LOOP
8501         tmp_grp := user_object.profile;
8502         LOOP
8503             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
8504
8505             IF max_fines.threshold IS NULL THEN
8506                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8507             ELSE
8508                 EXIT;
8509             END IF;
8510
8511             IF tmp_grp IS NULL THEN
8512                 EXIT;
8513             END IF;
8514         END LOOP;
8515
8516         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8517             EXIT;
8518         END IF;
8519
8520         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8521
8522     END LOOP;
8523
8524     IF max_fines.threshold IS NOT NULL THEN
8525
8526         FOR existing_sp_row IN
8527                 SELECT  *
8528                   FROM  actor.usr_standing_penalty
8529                   WHERE usr = match_user
8530                         AND org_unit = max_fines.org_unit
8531                         AND (stop_date IS NULL or stop_date > NOW())
8532                         AND standing_penalty = 1
8533                 LOOP
8534             RETURN NEXT existing_sp_row;
8535         END LOOP;
8536
8537         SELECT  SUM(f.balance_owed) INTO current_fines
8538           FROM  money.materialized_billable_xact_summary f
8539                 JOIN (
8540                     SELECT  r.id
8541                       FROM  booking.reservation r
8542                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8543                       WHERE usr = match_user
8544                             AND xact_finish IS NULL
8545                                 UNION ALL
8546                     SELECT  g.id
8547                       FROM  money.grocery g
8548                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8549                       WHERE usr = match_user
8550                             AND xact_finish IS NULL
8551                                 UNION ALL
8552                     SELECT  circ.id
8553                       FROM  action.circulation circ
8554                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8555                       WHERE usr = match_user
8556                             AND xact_finish IS NULL ) l USING (id);
8557
8558         IF current_fines >= max_fines.threshold THEN
8559             new_sp_row.usr := match_user;
8560             new_sp_row.org_unit := max_fines.org_unit;
8561             new_sp_row.standing_penalty := 1;
8562             RETURN NEXT new_sp_row;
8563         END IF;
8564     END IF;
8565
8566     -- Start over for max overdue
8567     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8568
8569     -- Fail if the user has too many overdue items
8570     LOOP
8571         tmp_grp := user_object.profile;
8572         LOOP
8573
8574             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
8575
8576             IF max_overdue.threshold IS NULL THEN
8577                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8578             ELSE
8579                 EXIT;
8580             END IF;
8581
8582             IF tmp_grp IS NULL THEN
8583                 EXIT;
8584             END IF;
8585         END LOOP;
8586
8587         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8588             EXIT;
8589         END IF;
8590
8591         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8592
8593     END LOOP;
8594
8595     IF max_overdue.threshold IS NOT NULL THEN
8596
8597         FOR existing_sp_row IN
8598                 SELECT  *
8599                   FROM  actor.usr_standing_penalty
8600                   WHERE usr = match_user
8601                         AND org_unit = max_overdue.org_unit
8602                         AND (stop_date IS NULL or stop_date > NOW())
8603                         AND standing_penalty = 2
8604                 LOOP
8605             RETURN NEXT existing_sp_row;
8606         END LOOP;
8607
8608         SELECT  INTO items_overdue COUNT(*)
8609           FROM  action.circulation circ
8610                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
8611           WHERE circ.usr = match_user
8612             AND circ.checkin_time IS NULL
8613             AND circ.due_date < NOW()
8614             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
8615
8616         IF items_overdue >= max_overdue.threshold::INT THEN
8617             new_sp_row.usr := match_user;
8618             new_sp_row.org_unit := max_overdue.org_unit;
8619             new_sp_row.standing_penalty := 2;
8620             RETURN NEXT new_sp_row;
8621         END IF;
8622     END IF;
8623
8624     -- Start over for max out
8625     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8626
8627     -- Fail if the user has too many checked out items
8628     LOOP
8629         tmp_grp := user_object.profile;
8630         LOOP
8631             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
8632
8633             IF max_items_out.threshold IS NULL THEN
8634                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8635             ELSE
8636                 EXIT;
8637             END IF;
8638
8639             IF tmp_grp IS NULL THEN
8640                 EXIT;
8641             END IF;
8642         END LOOP;
8643
8644         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8645             EXIT;
8646         END IF;
8647
8648         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8649
8650     END LOOP;
8651
8652
8653     -- Fail if the user has too many items checked out
8654     IF max_items_out.threshold IS NOT NULL THEN
8655
8656         FOR existing_sp_row IN
8657                 SELECT  *
8658                   FROM  actor.usr_standing_penalty
8659                   WHERE usr = match_user
8660                         AND org_unit = max_items_out.org_unit
8661                         AND (stop_date IS NULL or stop_date > NOW())
8662                         AND standing_penalty = 3
8663                 LOOP
8664             RETURN NEXT existing_sp_row;
8665         END LOOP;
8666
8667         SELECT  INTO items_out COUNT(*)
8668           FROM  action.circulation circ
8669                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
8670           WHERE circ.usr = match_user
8671                 AND circ.checkin_time IS NULL
8672                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
8673
8674            IF items_out >= max_items_out.threshold::INT THEN
8675             new_sp_row.usr := match_user;
8676             new_sp_row.org_unit := max_items_out.org_unit;
8677             new_sp_row.standing_penalty := 3;
8678             RETURN NEXT new_sp_row;
8679            END IF;
8680     END IF;
8681
8682     -- Start over for collections warning
8683     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8684
8685     -- Fail if the user has a collections-level fine balance
8686     LOOP
8687         tmp_grp := user_object.profile;
8688         LOOP
8689             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
8690
8691             IF max_fines.threshold IS NULL THEN
8692                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8693             ELSE
8694                 EXIT;
8695             END IF;
8696
8697             IF tmp_grp IS NULL THEN
8698                 EXIT;
8699             END IF;
8700         END LOOP;
8701
8702         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8703             EXIT;
8704         END IF;
8705
8706         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8707
8708     END LOOP;
8709
8710     IF max_fines.threshold IS NOT NULL THEN
8711
8712         FOR existing_sp_row IN
8713                 SELECT  *
8714                   FROM  actor.usr_standing_penalty
8715                   WHERE usr = match_user
8716                         AND org_unit = max_fines.org_unit
8717                         AND (stop_date IS NULL or stop_date > NOW())
8718                         AND standing_penalty = 4
8719                 LOOP
8720             RETURN NEXT existing_sp_row;
8721         END LOOP;
8722
8723         SELECT  SUM(f.balance_owed) INTO current_fines
8724           FROM  money.materialized_billable_xact_summary f
8725                 JOIN (
8726                     SELECT  r.id
8727                       FROM  booking.reservation r
8728                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8729                       WHERE usr = match_user
8730                             AND xact_finish IS NULL
8731                                 UNION ALL
8732                     SELECT  g.id
8733                       FROM  money.grocery g
8734                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8735                       WHERE usr = match_user
8736                             AND xact_finish IS NULL
8737                                 UNION ALL
8738                     SELECT  circ.id
8739                       FROM  action.circulation circ
8740                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8741                       WHERE usr = match_user
8742                             AND xact_finish IS NULL ) l USING (id);
8743
8744         IF current_fines >= max_fines.threshold THEN
8745             new_sp_row.usr := match_user;
8746             new_sp_row.org_unit := max_fines.org_unit;
8747             new_sp_row.standing_penalty := 4;
8748             RETURN NEXT new_sp_row;
8749         END IF;
8750     END IF;
8751
8752     -- Start over for in collections
8753     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8754
8755     -- Remove the in-collections penalty if the user has paid down enough
8756     -- This penalty is different, because this code is not responsible for creating 
8757     -- new in-collections penalties, only for removing them
8758     LOOP
8759         tmp_grp := user_object.profile;
8760         LOOP
8761             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
8762
8763             IF max_fines.threshold IS NULL THEN
8764                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8765             ELSE
8766                 EXIT;
8767             END IF;
8768
8769             IF tmp_grp IS NULL THEN
8770                 EXIT;
8771             END IF;
8772         END LOOP;
8773
8774         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8775             EXIT;
8776         END IF;
8777
8778         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8779
8780     END LOOP;
8781
8782     IF max_fines.threshold IS NOT NULL THEN
8783
8784         -- first, see if the user had paid down to the threshold
8785         SELECT  SUM(f.balance_owed) INTO current_fines
8786           FROM  money.materialized_billable_xact_summary f
8787                 JOIN (
8788                     SELECT  r.id
8789                       FROM  booking.reservation r
8790                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8791                       WHERE usr = match_user
8792                             AND xact_finish IS NULL
8793                                 UNION ALL
8794                     SELECT  g.id
8795                       FROM  money.grocery g
8796                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8797                       WHERE usr = match_user
8798                             AND xact_finish IS NULL
8799                                 UNION ALL
8800                     SELECT  circ.id
8801                       FROM  action.circulation circ
8802                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8803                       WHERE usr = match_user
8804                             AND xact_finish IS NULL ) l USING (id);
8805
8806         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
8807             -- patron has paid down enough
8808
8809             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
8810
8811             IF tmp_penalty.org_depth IS NOT NULL THEN
8812
8813                 -- since this code is not responsible for applying the penalty, it can't 
8814                 -- guarantee the current context org will match the org at which the penalty 
8815                 --- was applied.  search up the org tree until we hit the configured penalty depth
8816                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8817                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8818
8819                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
8820
8821                     FOR existing_sp_row IN
8822                             SELECT  *
8823                             FROM  actor.usr_standing_penalty
8824                             WHERE usr = match_user
8825                                     AND org_unit = tmp_org.id
8826                                     AND (stop_date IS NULL or stop_date > NOW())
8827                                     AND standing_penalty = 30 
8828                             LOOP
8829
8830                         -- Penalty exists, return it for removal
8831                         RETURN NEXT existing_sp_row;
8832                     END LOOP;
8833
8834                     IF tmp_org.parent_ou IS NULL THEN
8835                         EXIT;
8836                     END IF;
8837
8838                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8839                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8840                 END LOOP;
8841
8842             ELSE
8843
8844                 -- no penalty depth is defined, look for exact matches
8845
8846                 FOR existing_sp_row IN
8847                         SELECT  *
8848                         FROM  actor.usr_standing_penalty
8849                         WHERE usr = match_user
8850                                 AND org_unit = max_fines.org_unit
8851                                 AND (stop_date IS NULL or stop_date > NOW())
8852                                 AND standing_penalty = 30 
8853                         LOOP
8854                     -- Penalty exists, return it for removal
8855                     RETURN NEXT existing_sp_row;
8856                 END LOOP;
8857             END IF;
8858     
8859         END IF;
8860
8861     END IF;
8862
8863     RETURN;
8864 END;
8865 $func$ LANGUAGE plpgsql;
8866
8867 -- Create a default row in acq.fiscal_calendar
8868 -- Add a column in actor.org_unit to point to it
8869
8870 INSERT INTO acq.fiscal_calendar ( id, name ) VALUES ( 1, 'Default' );
8871
8872 ALTER TABLE actor.org_unit
8873 ADD COLUMN fiscal_calendar INT NOT NULL
8874         REFERENCES acq.fiscal_calendar( id )
8875         DEFERRABLE INITIALLY DEFERRED
8876         DEFAULT 1;
8877
8878 ALTER TABLE auditor.actor_org_unit_history
8879         ADD COLUMN fiscal_calendar INT;
8880
8881 DROP VIEW IF EXISTS auditor.actor_org_unit_lifecycle;
8882
8883 SELECT auditor.create_auditor_lifecycle( 'actor', 'org_unit' );
8884
8885 ALTER TABLE acq.funding_source_credit
8886 ADD COLUMN deadline_date TIMESTAMPTZ;
8887
8888 ALTER TABLE acq.funding_source_credit
8889 ADD COLUMN effective_date TIMESTAMPTZ NOT NULL DEFAULT now();
8890
8891 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
8892
8893 CREATE TABLE acq.fund_transfer (
8894         id               SERIAL         PRIMARY KEY,
8895         src_fund         INT            NOT NULL REFERENCES acq.fund( id )
8896                                         DEFERRABLE INITIALLY DEFERRED,
8897         src_amount       NUMERIC        NOT NULL,
8898         dest_fund        INT            REFERENCES acq.fund( id )
8899                                         DEFERRABLE INITIALLY DEFERRED,
8900         dest_amount      NUMERIC,
8901         transfer_time    TIMESTAMPTZ    NOT NULL DEFAULT now(),
8902         transfer_user    INT            NOT NULL REFERENCES actor.usr( id )
8903                                         DEFERRABLE INITIALLY DEFERRED,
8904         note             TEXT,
8905     funding_source_credit INTEGER   NOT NULL
8906                                         REFERENCES acq.funding_source_credit(id)
8907                                         DEFERRABLE INITIALLY DEFERRED
8908 );
8909
8910 CREATE INDEX acqftr_usr_idx
8911 ON acq.fund_transfer( transfer_user );
8912
8913 COMMENT ON TABLE acq.fund_transfer IS $$
8914 /*
8915  * Copyright (C) 2009  Georgia Public Library Service
8916  * Scott McKellar <scott@esilibrary.com>
8917  *
8918  * Fund Transfer
8919  *
8920  * Each row represents the transfer of money from a source fund
8921  * to a destination fund.  There should be corresponding entries
8922  * in acq.fund_allocation.  The purpose of acq.fund_transfer is
8923  * to record how much money moved from which fund to which other
8924  * fund.
8925  * 
8926  * The presence of two amount fields, rather than one, reflects
8927  * the possibility that the two funds are denominated in different
8928  * currencies.  If they use the same currency type, the two
8929  * amounts should be the same.
8930  *
8931  * ****
8932  *
8933  * This program is free software; you can redistribute it and/or
8934  * modify it under the terms of the GNU General Public License
8935  * as published by the Free Software Foundation; either version 2
8936  * of the License, or (at your option) any later version.
8937  *
8938  * This program is distributed in the hope that it will be useful,
8939  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8940  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8941  * GNU General Public License for more details.
8942  */
8943 $$;
8944
8945 CREATE TABLE acq.claim_event_type (
8946         id             SERIAL           PRIMARY KEY,
8947         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8948                                                  DEFERRABLE INITIALLY DEFERRED,
8949         code           TEXT             NOT NULL,
8950         description    TEXT             NOT NULL,
8951         library_initiated BOOL          NOT NULL DEFAULT FALSE,
8952         CONSTRAINT event_type_once_per_org UNIQUE ( org_unit, code )
8953 );
8954
8955 CREATE TABLE acq.claim_event (
8956         id             BIGSERIAL        PRIMARY KEY,
8957         type           INT              NOT NULL REFERENCES acq.claim_event_type
8958                                                  DEFERRABLE INITIALLY DEFERRED,
8959         claim          SERIAL           NOT NULL REFERENCES acq.claim
8960                                                  DEFERRABLE INITIALLY DEFERRED,
8961         event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
8962         creator        INT              NOT NULL REFERENCES actor.usr
8963                                                  DEFERRABLE INITIALLY DEFERRED,
8964         note           TEXT
8965 );
8966
8967 CREATE INDEX claim_event_claim_date_idx ON acq.claim_event( claim, event_date );
8968
8969 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
8970         src_usr  IN INTEGER,
8971         dest_usr IN INTEGER
8972 ) RETURNS VOID AS $$
8973 DECLARE
8974         suffix TEXT;
8975         renamable_row RECORD;
8976 BEGIN
8977
8978         UPDATE actor.usr SET
8979                 active = FALSE,
8980                 card = NULL,
8981                 mailing_address = NULL,
8982                 billing_address = NULL
8983         WHERE id = src_usr;
8984
8985         -- acq.*
8986         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
8987         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
8988         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
8989         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
8990         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
8991         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
8992         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
8993
8994         -- Update with a rename to avoid collisions
8995         FOR renamable_row in
8996                 SELECT id, name
8997                 FROM   acq.picklist
8998                 WHERE  owner = src_usr
8999         LOOP
9000                 suffix := ' (' || src_usr || ')';
9001                 LOOP
9002                         BEGIN
9003                                 UPDATE  acq.picklist
9004                                 SET     owner = dest_usr, name = name || suffix
9005                                 WHERE   id = renamable_row.id;
9006                         EXCEPTION WHEN unique_violation THEN
9007                                 suffix := suffix || ' ';
9008                                 CONTINUE;
9009                         END;
9010                         EXIT;
9011                 END LOOP;
9012         END LOOP;
9013
9014         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
9015         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
9016         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
9017         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
9018         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
9019         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
9020         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
9021         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
9022
9023         -- action.*
9024         DELETE FROM action.circulation WHERE usr = src_usr;
9025         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
9026         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
9027         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
9028         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
9029         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
9030         DELETE FROM action.hold_request WHERE usr = src_usr;
9031         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
9032         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
9033         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
9034         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
9035         DELETE FROM action.survey_response WHERE usr = src_usr;
9036         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
9037
9038         -- actor.*
9039         DELETE FROM actor.card WHERE usr = src_usr;
9040         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
9041
9042         -- The following update is intended to avoid transient violations of a foreign
9043         -- key constraint, whereby actor.usr_address references itself.  It may not be
9044         -- necessary, but it does no harm.
9045         UPDATE actor.usr_address SET replaces = NULL
9046                 WHERE usr = src_usr AND replaces IS NOT NULL;
9047         DELETE FROM actor.usr_address WHERE usr = src_usr;
9048         DELETE FROM actor.usr_note WHERE usr = src_usr;
9049         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
9050         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
9051         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
9052         DELETE FROM actor.usr_setting WHERE usr = src_usr;
9053         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
9054         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
9055
9056         -- asset.*
9057         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
9058         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
9059         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
9060         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
9061         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
9062         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
9063
9064         -- auditor.*
9065         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
9066         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
9067         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
9068         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
9069         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
9070         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
9071         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
9072         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
9073
9074         -- biblio.*
9075         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
9076         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
9077         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
9078         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
9079
9080         -- container.*
9081         -- Update buckets with a rename to avoid collisions
9082         FOR renamable_row in
9083                 SELECT id, name
9084                 FROM   container.biblio_record_entry_bucket
9085                 WHERE  owner = src_usr
9086         LOOP
9087                 suffix := ' (' || src_usr || ')';
9088                 LOOP
9089                         BEGIN
9090                                 UPDATE  container.biblio_record_entry_bucket
9091                                 SET     owner = dest_usr, name = name || suffix
9092                                 WHERE   id = renamable_row.id;
9093                         EXCEPTION WHEN unique_violation THEN
9094                                 suffix := suffix || ' ';
9095                                 CONTINUE;
9096                         END;
9097                         EXIT;
9098                 END LOOP;
9099         END LOOP;
9100
9101         FOR renamable_row in
9102                 SELECT id, name
9103                 FROM   container.call_number_bucket
9104                 WHERE  owner = src_usr
9105         LOOP
9106                 suffix := ' (' || src_usr || ')';
9107                 LOOP
9108                         BEGIN
9109                                 UPDATE  container.call_number_bucket
9110                                 SET     owner = dest_usr, name = name || suffix
9111                                 WHERE   id = renamable_row.id;
9112                         EXCEPTION WHEN unique_violation THEN
9113                                 suffix := suffix || ' ';
9114                                 CONTINUE;
9115                         END;
9116                         EXIT;
9117                 END LOOP;
9118         END LOOP;
9119
9120         FOR renamable_row in
9121                 SELECT id, name
9122                 FROM   container.copy_bucket
9123                 WHERE  owner = src_usr
9124         LOOP
9125                 suffix := ' (' || src_usr || ')';
9126                 LOOP
9127                         BEGIN
9128                                 UPDATE  container.copy_bucket
9129                                 SET     owner = dest_usr, name = name || suffix
9130                                 WHERE   id = renamable_row.id;
9131                         EXCEPTION WHEN unique_violation THEN
9132                                 suffix := suffix || ' ';
9133                                 CONTINUE;
9134                         END;
9135                         EXIT;
9136                 END LOOP;
9137         END LOOP;
9138
9139         FOR renamable_row in
9140                 SELECT id, name
9141                 FROM   container.user_bucket
9142                 WHERE  owner = src_usr
9143         LOOP
9144                 suffix := ' (' || src_usr || ')';
9145                 LOOP
9146                         BEGIN
9147                                 UPDATE  container.user_bucket
9148                                 SET     owner = dest_usr, name = name || suffix
9149                                 WHERE   id = renamable_row.id;
9150                         EXCEPTION WHEN unique_violation THEN
9151                                 suffix := suffix || ' ';
9152                                 CONTINUE;
9153                         END;
9154                         EXIT;
9155                 END LOOP;
9156         END LOOP;
9157
9158         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
9159
9160         -- money.*
9161         DELETE FROM money.billable_xact WHERE usr = src_usr;
9162         DELETE FROM money.collections_tracker WHERE usr = src_usr;
9163         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
9164
9165         -- permission.*
9166         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
9167         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
9168         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
9169         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
9170
9171         -- reporter.*
9172         -- Update with a rename to avoid collisions
9173         BEGIN
9174                 FOR renamable_row in
9175                         SELECT id, name
9176                         FROM   reporter.output_folder
9177                         WHERE  owner = src_usr
9178                 LOOP
9179                         suffix := ' (' || src_usr || ')';
9180                         LOOP
9181                                 BEGIN
9182                                         UPDATE  reporter.output_folder
9183                                         SET     owner = dest_usr, name = name || suffix
9184                                         WHERE   id = renamable_row.id;
9185                                 EXCEPTION WHEN unique_violation THEN
9186                                         suffix := suffix || ' ';
9187                                         CONTINUE;
9188                                 END;
9189                                 EXIT;
9190                         END LOOP;
9191                 END LOOP;
9192         EXCEPTION WHEN undefined_table THEN
9193                 -- do nothing
9194         END;
9195
9196         BEGIN
9197                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
9198         EXCEPTION WHEN undefined_table THEN
9199                 -- do nothing
9200         END;
9201
9202         -- Update with a rename to avoid collisions
9203         BEGIN
9204                 FOR renamable_row in
9205                         SELECT id, name
9206                         FROM   reporter.report_folder
9207                         WHERE  owner = src_usr
9208                 LOOP
9209                         suffix := ' (' || src_usr || ')';
9210                         LOOP
9211                                 BEGIN
9212                                         UPDATE  reporter.report_folder
9213                                         SET     owner = dest_usr, name = name || suffix
9214                                         WHERE   id = renamable_row.id;
9215                                 EXCEPTION WHEN unique_violation THEN
9216                                         suffix := suffix || ' ';
9217                                         CONTINUE;
9218                                 END;
9219                                 EXIT;
9220                         END LOOP;
9221                 END LOOP;
9222         EXCEPTION WHEN undefined_table THEN
9223                 -- do nothing
9224         END;
9225
9226         BEGIN
9227                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
9228         EXCEPTION WHEN undefined_table THEN
9229                 -- do nothing
9230         END;
9231
9232         BEGIN
9233                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
9234         EXCEPTION WHEN undefined_table THEN
9235                 -- do nothing
9236         END;
9237
9238         -- Update with a rename to avoid collisions
9239         BEGIN
9240                 FOR renamable_row in
9241                         SELECT id, name
9242                         FROM   reporter.template_folder
9243                         WHERE  owner = src_usr
9244                 LOOP
9245                         suffix := ' (' || src_usr || ')';
9246                         LOOP
9247                                 BEGIN
9248                                         UPDATE  reporter.template_folder
9249                                         SET     owner = dest_usr, name = name || suffix
9250                                         WHERE   id = renamable_row.id;
9251                                 EXCEPTION WHEN unique_violation THEN
9252                                         suffix := suffix || ' ';
9253                                         CONTINUE;
9254                                 END;
9255                                 EXIT;
9256                         END LOOP;
9257                 END LOOP;
9258         EXCEPTION WHEN undefined_table THEN
9259         -- do nothing
9260         END;
9261
9262         -- vandelay.*
9263         -- Update with a rename to avoid collisions
9264         FOR renamable_row in
9265                 SELECT id, name
9266                 FROM   vandelay.queue
9267                 WHERE  owner = src_usr
9268         LOOP
9269                 suffix := ' (' || src_usr || ')';
9270                 LOOP
9271                         BEGIN
9272                                 UPDATE  vandelay.queue
9273                                 SET     owner = dest_usr, name = name || suffix
9274                                 WHERE   id = renamable_row.id;
9275                         EXCEPTION WHEN unique_violation THEN
9276                                 suffix := suffix || ' ';
9277                                 CONTINUE;
9278                         END;
9279                         EXIT;
9280                 END LOOP;
9281         END LOOP;
9282
9283 END;
9284 $$ LANGUAGE plpgsql;
9285
9286 COMMENT ON FUNCTION actor.usr_purge_data(INT, INT) IS $$
9287 /**
9288  * Finds rows dependent on a given row in actor.usr and either deletes them
9289  * or reassigns them to a different user.
9290  */
9291 $$;
9292
9293 CREATE OR REPLACE FUNCTION actor.usr_delete(
9294         src_usr  IN INTEGER,
9295         dest_usr IN INTEGER
9296 ) RETURNS VOID AS $$
9297 DECLARE
9298         old_profile actor.usr.profile%type;
9299         old_home_ou actor.usr.home_ou%type;
9300         new_profile actor.usr.profile%type;
9301         new_home_ou actor.usr.home_ou%type;
9302         new_name    text;
9303         new_dob     actor.usr.dob%type;
9304 BEGIN
9305         SELECT
9306                 id || '-PURGED-' || now(),
9307                 profile,
9308                 home_ou,
9309                 dob
9310         INTO
9311                 new_name,
9312                 old_profile,
9313                 old_home_ou,
9314                 new_dob
9315         FROM
9316                 actor.usr
9317         WHERE
9318                 id = src_usr;
9319         --
9320         -- Quit if no such user
9321         --
9322         IF old_profile IS NULL THEN
9323                 RETURN;
9324         END IF;
9325         --
9326         perform actor.usr_purge_data( src_usr, dest_usr );
9327         --
9328         -- Find the root grp_tree and the root org_unit.  This would be simpler if we 
9329         -- could assume that there is only one root.  Theoretically, someday, maybe,
9330         -- there could be multiple roots, so we take extra trouble to get the right ones.
9331         --
9332         SELECT
9333                 id
9334         INTO
9335                 new_profile
9336         FROM
9337                 permission.grp_ancestors( old_profile )
9338         WHERE
9339                 parent is null;
9340         --
9341         SELECT
9342                 id
9343         INTO
9344                 new_home_ou
9345         FROM
9346                 actor.org_unit_ancestors( old_home_ou )
9347         WHERE
9348                 parent_ou is null;
9349         --
9350         -- Truncate date of birth
9351         --
9352         IF new_dob IS NOT NULL THEN
9353                 new_dob := date_trunc( 'year', new_dob );
9354         END IF;
9355         --
9356         UPDATE
9357                 actor.usr
9358                 SET
9359                         card = NULL,
9360                         profile = new_profile,
9361                         usrname = new_name,
9362                         email = NULL,
9363                         passwd = random()::text,
9364                         standing = DEFAULT,
9365                         ident_type = 
9366                         (
9367                                 SELECT MIN( id )
9368                                 FROM config.identification_type
9369                         ),
9370                         ident_value = NULL,
9371                         ident_type2 = NULL,
9372                         ident_value2 = NULL,
9373                         net_access_level = DEFAULT,
9374                         photo_url = NULL,
9375                         prefix = NULL,
9376                         first_given_name = new_name,
9377                         second_given_name = NULL,
9378                         family_name = new_name,
9379                         suffix = NULL,
9380                         alias = NULL,
9381                         day_phone = NULL,
9382                         evening_phone = NULL,
9383                         other_phone = NULL,
9384                         mailing_address = NULL,
9385                         billing_address = NULL,
9386                         home_ou = new_home_ou,
9387                         dob = new_dob,
9388                         active = FALSE,
9389                         master_account = DEFAULT, 
9390                         super_user = DEFAULT,
9391                         barred = FALSE,
9392                         deleted = TRUE,
9393                         juvenile = DEFAULT,
9394                         usrgroup = 0,
9395                         claims_returned_count = DEFAULT,
9396                         credit_forward_balance = DEFAULT,
9397                         last_xact_id = DEFAULT,
9398                         alert_message = NULL,
9399                         create_date = now(),
9400                         expire_date = now()
9401         WHERE
9402                 id = src_usr;
9403 END;
9404 $$ LANGUAGE plpgsql;
9405
9406 COMMENT ON FUNCTION actor.usr_delete(INT, INT) IS $$
9407 /**
9408  * Logically deletes a user.  Removes personally identifiable information,
9409  * and purges associated data in other tables.
9410  */
9411 $$;
9412
9413 -- INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
9414
9415 ALTER TABLE acq.fund
9416 ADD COLUMN rollover BOOL NOT NULL DEFAULT FALSE;
9417
9418 ALTER TABLE acq.fund
9419         ADD COLUMN propagate BOOLEAN NOT NULL DEFAULT TRUE;
9420
9421 -- A fund can't roll over if it doesn't propagate from one year to the next
9422
9423 ALTER TABLE acq.fund
9424         ADD CONSTRAINT acq_fund_rollover_implies_propagate CHECK
9425         ( propagate OR NOT rollover );
9426
9427 ALTER TABLE acq.fund
9428         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
9429
9430 ALTER TABLE acq.fund
9431     ADD COLUMN balance_warning_percent INT
9432     CONSTRAINT balance_warning_percent_limit
9433         CHECK( balance_warning_percent <= 100 );
9434
9435 ALTER TABLE acq.fund
9436     ADD COLUMN balance_stop_percent INT
9437     CONSTRAINT balance_stop_percent_limit
9438         CHECK( balance_stop_percent <= 100 );
9439
9440 CREATE VIEW acq.ordered_funding_source_credit AS
9441         SELECT
9442                 CASE WHEN deadline_date IS NULL THEN
9443                         2
9444                 ELSE
9445                         1
9446                 END AS sort_priority,
9447                 CASE WHEN deadline_date IS NULL THEN
9448                         effective_date
9449                 ELSE
9450                         deadline_date
9451                 END AS sort_date,
9452                 id,
9453                 funding_source,
9454                 amount,
9455                 note
9456         FROM
9457                 acq.funding_source_credit;
9458
9459 COMMENT ON VIEW acq.ordered_funding_source_credit IS $$
9460 /*
9461  * Copyright (C) 2009  Georgia Public Library Service
9462  * Scott McKellar <scott@gmail.com>
9463  *
9464  * The acq.ordered_funding_source_credit view is a prioritized
9465  * ordering of funding source credits.  When ordered by the first
9466  * three columns, this view defines the order in which the various
9467  * credits are to be tapped for spending, subject to the allocations
9468  * in the acq.fund_allocation table.
9469  *
9470  * The first column reflects the principle that we should spend
9471  * money with deadlines before spending money without deadlines.
9472  *
9473  * The second column reflects the principle that we should spend the
9474  * oldest money first.  For money with deadlines, that means that we
9475  * spend first from the credit with the earliest deadline.  For
9476  * money without deadlines, we spend first from the credit with the
9477  * earliest effective date.  
9478  *
9479  * The third column is a tie breaker to ensure a consistent
9480  * ordering.
9481  *
9482  * ****
9483  *
9484  * This program is free software; you can redistribute it and/or
9485  * modify it under the terms of the GNU General Public License
9486  * as published by the Free Software Foundation; either version 2
9487  * of the License, or (at your option) any later version.
9488  *
9489  * This program is distributed in the hope that it will be useful,
9490  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9491  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9492  * GNU General Public License for more details.
9493  */
9494 $$;
9495
9496 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
9497     SELECT  m.*, COALESCE(c.circ_lib, g.billing_location, r.pickup_lib) AS billing_location
9498       FROM  money.materialized_billable_xact_summary m
9499             LEFT JOIN action.circulation c ON (c.id = m.id)
9500             LEFT JOIN money.grocery g ON (g.id = m.id)
9501             LEFT JOIN booking.reservation r ON (r.id = m.id);
9502
9503 CREATE TABLE config.marc21_rec_type_map (
9504     code        TEXT    PRIMARY KEY,
9505     type_val    TEXT    NOT NULL,
9506     blvl_val    TEXT    NOT NULL
9507 );
9508
9509 CREATE TABLE config.marc21_ff_pos_map (
9510     id          SERIAL  PRIMARY KEY,
9511     fixed_field TEXT    NOT NULL,
9512     tag         TEXT    NOT NULL,
9513     rec_type    TEXT    NOT NULL,
9514     start_pos   INT     NOT NULL,
9515     length      INT     NOT NULL,
9516     default_val TEXT    NOT NULL DEFAULT ' '
9517 );
9518
9519 CREATE TABLE config.marc21_physical_characteristic_type_map (
9520     ptype_key   TEXT    PRIMARY KEY,
9521     label       TEXT    NOT NULL -- I18N
9522 );
9523
9524 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
9525     id          SERIAL  PRIMARY KEY,
9526     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
9527     subfield    TEXT    NOT NULL,
9528     start_pos   INT     NOT NULL,
9529     length      INT     NOT NULL,
9530     label       TEXT    NOT NULL -- I18N
9531 );
9532
9533 CREATE TABLE config.marc21_physical_characteristic_value_map (
9534     id              SERIAL  PRIMARY KEY,
9535     value           TEXT    NOT NULL,
9536     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
9537     label           TEXT    NOT NULL -- I18N
9538 );
9539
9540 ----------------------------------
9541 -- MARC21 record structure data --
9542 ----------------------------------
9543
9544 -- Record type map
9545 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
9546 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
9547 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
9548 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
9549 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
9550 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
9551 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
9552 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
9553
9554 ------ Physical Characteristics
9555
9556 -- Map
9557 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
9558 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
9559 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
9560 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
9561 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
9562 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
9563 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
9564 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');
9565 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
9566 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9567 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
9568 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9569 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
9570 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');
9571 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9572 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
9573 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9574 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9575 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9576 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9577 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9578 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9579 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9580 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9581 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');
9582 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');
9583 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');
9584 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');
9585 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9586 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');
9587 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9588 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
9589 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9590 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');
9591 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9592 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9593 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details');
9594 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');
9595 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
9596 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');
9597 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
9598 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9599 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9600 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
9601 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9602 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9603 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9604 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');
9605
9606 -- Electronic Resource
9607 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
9608 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
9609 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');
9610 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');
9611 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');
9612 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');
9613 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');
9614 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');
9615 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');
9616 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');
9617 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
9618 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9619 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9620 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
9621 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');
9622 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');
9623 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9624 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');
9625 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9626 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');
9627 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9628 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9629 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
9630 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.');
9631 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.');
9632 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.');
9633 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.');
9634 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.');
9635 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');
9636 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.');
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 ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 in.');
9639 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9640 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound');
9641 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)');
9642 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
9643 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9644 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
9645 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9646 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
9647 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');
9648 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
9649 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');
9650 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');
9651 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9652 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
9653 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
9654 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');
9655 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
9656 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9657 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
9658 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');
9659 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');
9660 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');
9661 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)');
9662 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9663 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');
9664 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9665 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression');
9666 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
9667 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
9668 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
9669 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9670 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9671 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
9672 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
9673 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');
9674 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
9675 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
9676 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9677
9678 -- Globe
9679 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
9680 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
9681 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');
9682 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');
9683 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');
9684 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');
9685 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9686 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9687 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color');
9688 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');
9689 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9690 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
9691 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9692 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9693 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9694 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9695 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9696 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9697 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9698 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9699 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9700 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9701 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
9702 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9703 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9704 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9705 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9706
9707 -- Tactile Material
9708 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
9709 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
9710 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
9711 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille');
9712 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9713 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');
9714 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9715 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9716 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
9717 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');
9718 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');
9719 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');
9720 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');
9721 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');
9722 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');
9723 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9724 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9725 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9726 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','4','1','Level of contraction');
9727 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
9728 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
9729 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9730 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');
9731 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9732 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9733 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
9734 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');
9735 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');
9736 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');
9737 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
9738 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');
9739 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');
9740 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');
9741 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');
9742 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');
9743 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');
9744 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
9745 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');
9746 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');
9747 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9748 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9749 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
9750 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');
9751 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');
9752 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');
9753 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9754 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9755
9756 -- Projected Graphic
9757 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
9758 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
9759 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');
9760 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
9761 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');
9762 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');
9763 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
9764 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
9765 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9766 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
9767 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');
9768 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9769 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');
9770 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9771 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');
9772 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9773 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9774 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
9775 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9776 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9777 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');
9778 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');
9779 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');
9780 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9782 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9783 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');
9784 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');
9785 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');
9786 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9787 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
9788 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');
9789 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');
9790 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');
9791 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');
9792 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');
9793 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');
9794 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');
9795 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9796 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9797 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9798 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9799 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
9800 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.');
9801 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.');
9802 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.');
9803 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.');
9804 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.');
9805 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.');
9806 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.');
9807 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.)');
9808 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.)');
9809 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.)');
9810 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.)');
9811 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9812 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.)');
9813 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.)');
9814 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.)');
9815 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.)');
9816 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9817 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material');
9818 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
9819 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9820 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9821 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
9822 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');
9823 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');
9824 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');
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
9828 -- Microform
9829 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
9830 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
9831 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');
9832 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');
9833 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');
9834 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');
9835 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
9836 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');
9837 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
9838 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9839 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9840 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative');
9841 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9842 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9843 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9844 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9845 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
9846 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.');
9847 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.');
9848 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.');
9849 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
9850 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.');
9851 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.)');
9852 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.)');
9853 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.)');
9854 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.)');
9855 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9856 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9857 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');
9858 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)');
9859 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)');
9860 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)');
9861 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)');
9862 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-)');
9863 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9864 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');
9865 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
9866 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');
9867 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9868 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9869 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9870 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9871 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
9872 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');
9873 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
9874 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
9875 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9876 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');
9877 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9878 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9879 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
9880 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');
9881 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');
9882 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');
9883 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');
9884 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9885 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
9886 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');
9887 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');
9888 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');
9889 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');
9890 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');
9891 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');
9892 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');
9893 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');
9894 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');
9895 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9896 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9897
9898 -- Non-projected Graphic
9899 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
9900 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
9901 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
9902 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
9903 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
9904 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');
9905 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
9906 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
9907 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
9908 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
9909 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');
9910 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
9911 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');
9912 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9913 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9914 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
9915 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');
9916 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');
9917 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9918 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');
9919 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9920 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9921 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9922 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
9923 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9924 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');
9925 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');
9926 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9927 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9928 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9929 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9930 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9931 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');
9932 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9933 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9934 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9935 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9936 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9937 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9938 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9939 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9940 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material');
9941 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9942 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');
9943 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');
9944 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9945 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9946 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9947 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9948 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9949 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');
9950 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9951 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9952 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9953 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9954 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9955 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9956 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9957 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9958
9959 -- Motion Picture
9960 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
9961 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
9962 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');
9963 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');
9964 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');
9965 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9966 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9967 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color');
9968 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');
9969 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9970 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');
9971 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9972 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9973 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9974 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
9975 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');
9976 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)');
9977 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
9978 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)');
9979 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');
9980 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');
9981 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9982 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9983 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');
9984 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');
9985 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');
9986 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9987 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
9988 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');
9989 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');
9990 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');
9991 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');
9992 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');
9993 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');
9994 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');
9995 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9996 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9997 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9998 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9999 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
10000 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.');
10001 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.');
10002 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.');
10003 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.');
10004 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.');
10005 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.');
10006 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.');
10007 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10008 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10009 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels');
10010 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10011 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10012 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');
10013 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');
10014 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10015 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10016 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10017 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements');
10018 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');
10019 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
10020 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
10021 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
10022 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');
10023 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');
10024 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');
10025 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');
10026 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10027
10028 -- Remote-sensing Image
10029 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
10030 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
10031 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10032 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor');
10033 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface');
10034 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
10035 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
10036 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');
10037 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10038 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10039 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor');
10040 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');
10041 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');
10042 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
10043 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
10044 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10045 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
10046 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%');
10047 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%');
10048 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%');
10049 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%');
10050 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%');
10051 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%');
10052 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%');
10053 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%');
10054 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%');
10055 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%');
10056 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');
10057 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10058 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
10059 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
10060 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');
10061 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');
10062 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');
10063 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');
10064 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');
10065 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');
10066 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');
10067 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');
10068 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');
10069 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10070 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10071 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
10072 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
10073 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');
10074 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');
10075 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');
10076 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');
10077 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10078 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10079 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
10080 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
10081 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
10082 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10083 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10084 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
10085 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');
10086 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');
10087 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');
10088 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');
10089 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');
10090 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)');
10091 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');
10092 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
10093 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');
10094 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)');
10095 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)');
10096 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)');
10097 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');
10098 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');
10099 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');
10100 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');
10101 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');
10102 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');
10103 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');
10104 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');
10105 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');
10106 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');
10107 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');
10108 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');
10109 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');
10110 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');
10111 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');
10112 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');
10113 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');
10114 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');
10115 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');
10116 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');
10117 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');
10118 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)');
10119 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');
10120 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
10121 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
10122 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');
10123 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');
10124 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10125 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10126
10127 -- Sound Recording
10128 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
10129 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
10130 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');
10131 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
10132 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');
10133 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');
10134 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
10135 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');
10136 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');
10137 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10138 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');
10139 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10140 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
10141 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');
10142 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');
10143 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');
10144 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');
10145 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');
10146 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');
10147 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');
10148 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');
10149 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');
10150 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');
10151 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');
10152 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');
10153 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');
10154 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');
10155 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10156 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10157 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels');
10158 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10159 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
10160 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10161 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10162 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10163 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch');
10164 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');
10165 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');
10166 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');
10167 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10168 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10169 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions');
10170 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.');
10171 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.');
10172 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.');
10173 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.');
10174 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.');
10175 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.');
10176 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.)');
10177 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.');
10178 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');
10179 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.');
10180 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.');
10181 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10182 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10183 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
10184 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.');
10185 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.');
10186 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');
10187 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.');
10188 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.');
10189 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10190 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10191 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
10192 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');
10193 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');
10194 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');
10195 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');
10196 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');
10197 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');
10198 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');
10199 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10200 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10201 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
10202 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');
10203 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');
10204 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');
10205 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');
10206 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');
10207 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');
10208 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');
10209 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');
10210 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');
10211 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10212 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10213 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
10214 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');
10215 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');
10216 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');
10217 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');
10218 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10219 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10220
10221 -- Videorecording
10222 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
10223 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
10224 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
10225 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10226 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
10227 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
10228 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10229 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10230 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color');
10231 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');
10232 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
10233 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10234 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');
10235 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10236 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10237 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
10238 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
10239 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
10240 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');
10241 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
10242 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');
10243 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
10244 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
10245 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
10246 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
10247 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');
10248 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');
10249 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');
10250 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');
10251 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.');
10252 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.');
10253 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10254 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
10255 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10256 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');
10257 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');
10258 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');
10259 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10260 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
10261 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');
10262 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');
10263 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');
10264 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');
10265 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');
10266 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');
10267 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');
10268 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
10269 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10270 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10271 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10272 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
10273 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.');
10274 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.');
10275 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.');
10276 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.');
10277 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.');
10278 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.');
10279 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10280 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10281 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
10282 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10283 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10284 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');
10285 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');
10286 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10287 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10288 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10289
10290 -- Fixed Field position data -- 0-based!
10291 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
10292 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
10293 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
10294 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
10295 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
10296 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
10297 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
10298 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
10299 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
10300 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
10301 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
10302 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
10303 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
10304 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
10305 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
10306 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
10307 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
10308 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
10309 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
10310 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
10311 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
10312 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
10313 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
10314 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
10315 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
10316 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
10317 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
10318 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
10319 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
10320 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
10321 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
10322 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
10323 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
10324 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
10325 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
10326 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
10327 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
10328 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
10329 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
10330 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
10331 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
10332 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
10333 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
10334 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
10335 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
10336 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
10337 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
10338 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
10339 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
10340 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
10341 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
10342 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
10343 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
10344 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
10345 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
10346 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
10347 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
10348 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
10349 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
10350 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
10351 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
10352 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
10353 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
10354 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
10355 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
10356 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
10357 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
10358 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
10359 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
10360 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
10361 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
10362 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
10363 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
10364 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
10365 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
10366 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
10367 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
10368 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
10369 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
10370 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
10371 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
10372 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
10373 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
10374 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
10375 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
10376 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
10377 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
10378 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
10379 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
10380 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
10381 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
10382 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
10383 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
10384 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
10385 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
10386 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
10387 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
10388 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
10389 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
10390 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
10391 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
10392 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
10393 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
10394 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
10395 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
10396 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
10397 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
10398 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
10399 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
10400 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
10401 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
10402 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
10403 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
10404 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
10405 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
10406 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
10407 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
10408 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
10409 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
10410 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
10411 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
10412 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
10413 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
10414 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
10415 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
10416 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
10417 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
10418 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
10419 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
10420 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
10421 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
10422 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
10423 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
10424 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
10425 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');
10426 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');
10427 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
10428 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
10429 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
10430 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
10431 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
10432 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
10433 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
10434 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
10435 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
10436 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
10437
10438 CREATE OR REPLACE FUNCTION biblio.marc21_record_type( rid BIGINT ) RETURNS config.marc21_rec_type_map AS $func$
10439 DECLARE
10440         ldr         RECORD;
10441         tval        TEXT;
10442         tval_rec    RECORD;
10443         bval        TEXT;
10444         bval_rec    RECORD;
10445     retval      config.marc21_rec_type_map%ROWTYPE;
10446 BEGIN
10447     SELECT * INTO ldr FROM metabib.full_rec WHERE record = rid AND tag = 'LDR' LIMIT 1;
10448
10449     IF ldr.id IS NULL THEN
10450         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10451         RETURN retval;
10452     END IF;
10453
10454     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10455     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10456
10457
10458     tval := SUBSTRING( ldr.value, tval_rec.start_pos + 1, tval_rec.length );
10459     bval := SUBSTRING( ldr.value, bval_rec.start_pos + 1, bval_rec.length );
10460
10461     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr.value;
10462
10463     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10464
10465
10466     IF retval.code IS NULL THEN
10467         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10468     END IF;
10469
10470     RETURN retval;
10471 END;
10472 $func$ LANGUAGE PLPGSQL;
10473
10474 CREATE OR REPLACE FUNCTION biblio.marc21_extract_fixed_field( rid BIGINT, ff TEXT ) RETURNS TEXT AS $func$
10475 DECLARE
10476     rtype       TEXT;
10477     ff_pos      RECORD;
10478     tag_data    RECORD;
10479     val         TEXT;
10480 BEGIN
10481     rtype := (biblio.marc21_record_type( rid )).code;
10482     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
10483         FOR tag_data IN SELECT * FROM metabib.full_rec WHERE tag = UPPER(ff_pos.tag) AND record = rid LOOP
10484             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
10485             RETURN val;
10486         END LOOP;
10487         val := REPEAT( ff_pos.default_val, ff_pos.length );
10488         RETURN val;
10489     END LOOP;
10490
10491     RETURN NULL;
10492 END;
10493 $func$ LANGUAGE PLPGSQL;
10494
10495 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
10496 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
10497 DECLARE
10498     rowid   INT := 0;
10499     _007    RECORD;
10500     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
10501     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
10502     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
10503     retval  biblio.marc21_physical_characteristics%ROWTYPE;
10504 BEGIN
10505
10506     SELECT * INTO _007 FROM metabib.full_rec WHERE record = rid AND tag = '007' LIMIT 1;
10507
10508     IF _007.id IS NOT NULL THEN
10509         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007.value, 1, 1 );
10510
10511         IF ptype.ptype_key IS NOT NULL THEN
10512             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
10513                 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 );
10514
10515                 IF pval.id IS NOT NULL THEN
10516                     rowid := rowid + 1;
10517                     retval.id := rowid;
10518                     retval.record := rid;
10519                     retval.ptype := ptype.ptype_key;
10520                     retval.subfield := psf.id;
10521                     retval.value := pval.id;
10522                     RETURN NEXT retval;
10523                 END IF;
10524
10525             END LOOP;
10526         END IF;
10527     END IF;
10528
10529     RETURN;
10530 END;
10531 $func$ LANGUAGE PLPGSQL;
10532
10533 DROP VIEW IF EXISTS money.open_usr_circulation_summary;
10534 DROP VIEW IF EXISTS money.open_usr_summary;
10535 DROP VIEW IF EXISTS money.open_billable_xact_summary;
10536
10537 -- The view should supply defaults for numeric (amount) columns
10538 CREATE OR REPLACE VIEW money.billable_xact_summary AS
10539     SELECT  xact.id,
10540         xact.usr,
10541         xact.xact_start,
10542         xact.xact_finish,
10543         COALESCE(credit.amount, 0.0::numeric) AS total_paid,
10544         credit.payment_ts AS last_payment_ts,
10545         credit.note AS last_payment_note,
10546         credit.payment_type AS last_payment_type,
10547         COALESCE(debit.amount, 0.0::numeric) AS total_owed,
10548         debit.billing_ts AS last_billing_ts,
10549         debit.note AS last_billing_note,
10550         debit.billing_type AS last_billing_type,
10551         COALESCE(debit.amount, 0.0::numeric) - COALESCE(credit.amount, 0.0::numeric) AS balance_owed,
10552         p.relname AS xact_type
10553       FROM  money.billable_xact xact
10554         JOIN pg_class p ON xact.tableoid = p.oid
10555         LEFT JOIN (
10556             SELECT  billing.xact,
10557                 sum(billing.amount) AS amount,
10558                 max(billing.billing_ts) AS billing_ts,
10559                 last(billing.note) AS note,
10560                 last(billing.billing_type) AS billing_type
10561               FROM  money.billing
10562               WHERE billing.voided IS FALSE
10563               GROUP BY billing.xact
10564             ) debit ON xact.id = debit.xact
10565         LEFT JOIN (
10566             SELECT  payment_view.xact,
10567                 sum(payment_view.amount) AS amount,
10568                 max(payment_view.payment_ts) AS payment_ts,
10569                 last(payment_view.note) AS note,
10570                 last(payment_view.payment_type) AS payment_type
10571               FROM  money.payment_view
10572               WHERE payment_view.voided IS FALSE
10573               GROUP BY payment_view.xact
10574             ) credit ON xact.id = credit.xact
10575       ORDER BY debit.billing_ts, credit.payment_ts;
10576
10577 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
10578     SELECT * FROM money.billable_xact_summary_location_view
10579     WHERE xact_finish IS NULL;
10580
10581 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
10582     SELECT 
10583         usr,
10584         SUM(total_paid) AS total_paid,
10585         SUM(total_owed) AS total_owed,
10586         SUM(balance_owed) AS balance_owed
10587     FROM  money.materialized_billable_xact_summary
10588     WHERE xact_type = 'circulation' AND xact_finish IS NULL
10589     GROUP BY usr;
10590
10591 CREATE OR REPLACE VIEW money.usr_summary AS
10592     SELECT 
10593         usr, 
10594         sum(total_paid) AS total_paid, 
10595         sum(total_owed) AS total_owed, 
10596         sum(balance_owed) AS balance_owed
10597     FROM money.materialized_billable_xact_summary
10598     GROUP BY usr;
10599
10600 CREATE OR REPLACE VIEW money.open_usr_summary AS
10601     SELECT 
10602         usr, 
10603         sum(total_paid) AS total_paid, 
10604         sum(total_owed) AS total_owed, 
10605         sum(balance_owed) AS balance_owed
10606     FROM money.materialized_billable_xact_summary
10607     WHERE xact_finish IS NULL
10608     GROUP BY usr;
10609
10610 -- 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;
10611
10612 CREATE TABLE config.biblio_fingerprint (
10613         id                      SERIAL  PRIMARY KEY,
10614         name            TEXT    NOT NULL, 
10615         xpath           TEXT    NOT NULL,
10616     first_word  BOOL    NOT NULL DEFAULT FALSE,
10617         format          TEXT    NOT NULL DEFAULT 'marcxml'
10618 );
10619
10620 INSERT INTO config.biblio_fingerprint (name, xpath, format)
10621     VALUES (
10622         'Title',
10623         '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' ||
10624             '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' ||
10625             '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' ||
10626             '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' ||
10627             '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]',
10628         'marcxml'
10629     );
10630
10631 INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word)
10632     VALUES (
10633         'Author',
10634         '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|'
10635             '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|'
10636             '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|'
10637             '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|'
10638             '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]',
10639         'marcxml',
10640         TRUE
10641     );
10642
10643 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$
10644 DECLARE
10645     qual        INT;
10646     ldr         TEXT;
10647     tval        TEXT;
10648     tval_rec    RECORD;
10649     bval        TEXT;
10650     bval_rec    RECORD;
10651     type_map    RECORD;
10652     ff_pos      RECORD;
10653     ff_tag_data TEXT;
10654 BEGIN
10655
10656     IF marc IS NULL OR marc = '' THEN
10657         RETURN NULL;
10658     END IF;
10659
10660     -- First, the count of tags
10661     qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1);
10662
10663     -- now go through a bunch of pain to get the record type
10664     IF best_type IS NOT NULL THEN
10665         ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1];
10666
10667         IF ldr IS NOT NULL THEN
10668             SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10669             SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10670
10671
10672             tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
10673             bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
10674
10675             -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
10676
10677             SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10678
10679             IF type_map.code IS NOT NULL THEN
10680                 IF best_type = type_map.code THEN
10681                     qual := qual + qual / 2;
10682                 END IF;
10683
10684                 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
10685                     ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length);
10686                     IF ff_tag_data = best_lang THEN
10687                             qual := qual + 100;
10688                     END IF;
10689                 END LOOP;
10690             END IF;
10691         END IF;
10692     END IF;
10693
10694     -- Now look for some quality metrics
10695     -- DCL record?
10696     IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN
10697         qual := qual + 10;
10698     END IF;
10699
10700     -- From OCLC?
10701     IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN
10702         qual := qual + 10;
10703     END IF;
10704
10705     RETURN qual;
10706
10707 END;
10708 $func$ LANGUAGE PLPGSQL;
10709
10710 CREATE OR REPLACE FUNCTION biblio.extract_fingerprint ( marc text ) RETURNS TEXT AS $func$
10711 DECLARE
10712     idx     config.biblio_fingerprint%ROWTYPE;
10713     xfrm        config.xml_transform%ROWTYPE;
10714     prev_xfrm   TEXT;
10715     transformed_xml TEXT;
10716     xml_node    TEXT;
10717     xml_node_list   TEXT[];
10718     raw_text    TEXT;
10719     output_text TEXT := '';
10720 BEGIN
10721
10722     IF marc IS NULL OR marc = '' THEN
10723         RETURN NULL;
10724     END IF;
10725
10726     -- Loop over the indexing entries
10727     FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP
10728
10729         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
10730
10731         -- See if we can skip the XSLT ... it's expensive
10732         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
10733             -- Can't skip the transform
10734             IF xfrm.xslt <> '---' THEN
10735                 transformed_xml := oils_xslt_process(marc,xfrm.xslt);
10736             ELSE
10737                 transformed_xml := marc;
10738             END IF;
10739
10740             prev_xfrm := xfrm.name;
10741         END IF;
10742
10743         raw_text := COALESCE(
10744             naco_normalize(
10745                 ARRAY_TO_STRING(
10746                     oils_xpath(
10747                         '//text()',
10748                         (oils_xpath(
10749                             idx.xpath,
10750                             transformed_xml,
10751                             ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]
10752                         ))[1]
10753                     ),
10754                     ''
10755                 )
10756             ),
10757             ''
10758         );
10759
10760         raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E'');
10761         raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain!
10762
10763         IF idx.first_word IS TRUE THEN
10764             raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1');
10765         END IF;
10766
10767         output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g');
10768
10769     END LOOP;
10770
10771     RETURN output_text;
10772
10773 END;
10774 $func$ LANGUAGE PLPGSQL;
10775
10776 -- BEFORE UPDATE OR INSERT trigger for biblio.record_entry
10777 CREATE OR REPLACE FUNCTION biblio.fingerprint_trigger () RETURNS TRIGGER AS $func$
10778 BEGIN
10779
10780     -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS')
10781
10782     IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we?
10783         RETURN NEW;
10784     END IF;
10785
10786     NEW.fingerprint := biblio.extract_fingerprint(NEW.marc);
10787     NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]);
10788
10789     RETURN NEW;
10790
10791 END;
10792 $func$ LANGUAGE PLPGSQL;
10793
10794 CREATE TABLE config.internal_flag (
10795     name    TEXT    PRIMARY KEY,
10796     value   TEXT,
10797     enabled BOOL    NOT NULL DEFAULT FALSE
10798 );
10799 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert');
10800 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc');
10801 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.skip_located_uri');
10802 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri');
10803 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec');
10804 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor');
10805 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry');
10806 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_authority_linking');
10807 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_update');
10808 INSERT INTO config.internal_flag (name) VALUES ('ingest.assume_inserts_only');
10809
10810 CREATE TABLE authority.bib_linking (
10811     id          BIGSERIAL   PRIMARY KEY,
10812     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
10813     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
10814 );
10815 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
10816 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
10817
10818 CREATE OR REPLACE FUNCTION public.remove_paren_substring( TEXT ) RETURNS TEXT AS $func$
10819     SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g');
10820 $func$ LANGUAGE SQL STRICT IMMUTABLE;
10821
10822 CREATE OR REPLACE FUNCTION biblio.map_authority_linking (bibid BIGINT, marc TEXT) RETURNS BIGINT AS $func$
10823     DELETE FROM authority.bib_linking WHERE bib = $1;
10824     INSERT INTO authority.bib_linking (bib, authority)
10825         SELECT  y.bib,
10826                 y.authority
10827           FROM (    SELECT  DISTINCT $1 AS bib,
10828                             BTRIM(remove_paren_substring(txt))::BIGINT AS authority
10829                       FROM  explode_array(oils_xpath('//*[@code="0"]/text()',$2)) x(txt)
10830                       WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$
10831                 ) y JOIN authority.record_entry r ON r.id = y.authority;
10832     SELECT $1;
10833 $func$ LANGUAGE SQL;
10834
10835 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_rec_descriptor( bib_id BIGINT ) RETURNS VOID AS $func$
10836 BEGIN
10837     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10838     IF NOT FOUND THEN
10839         DELETE FROM metabib.rec_descriptor WHERE record = bib_id;
10840     END IF;
10841     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)
10842         SELECT  bib_id,
10843                 biblio.marc21_extract_fixed_field( bib_id, 'Type' ),
10844                 biblio.marc21_extract_fixed_field( bib_id, 'Form' ),
10845                 biblio.marc21_extract_fixed_field( bib_id, 'BLvl' ),
10846                 biblio.marc21_extract_fixed_field( bib_id, 'Ctrl' ),
10847                 biblio.marc21_extract_fixed_field( bib_id, 'ELvl' ),
10848                 biblio.marc21_extract_fixed_field( bib_id, 'Audn' ),
10849                 biblio.marc21_extract_fixed_field( bib_id, 'LitF' ),
10850                 biblio.marc21_extract_fixed_field( bib_id, 'TMat' ),
10851                 biblio.marc21_extract_fixed_field( bib_id, 'Desc' ),
10852                 biblio.marc21_extract_fixed_field( bib_id, 'DtSt' ),
10853                 biblio.marc21_extract_fixed_field( bib_id, 'Lang' ),
10854                 (   SELECT  v.value
10855                       FROM  biblio.marc21_physical_characteristics( bib_id) p
10856                             JOIN config.marc21_physical_characteristic_subfield_map s ON (s.id = p.subfield)
10857                             JOIN config.marc21_physical_characteristic_value_map v ON (v.id = p.value)
10858                       WHERE p.ptype = 'v' AND s.subfield = 'e'    ),
10859                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date1'), ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
10860                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date2'), ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
10861
10862     RETURN;
10863 END;
10864 $func$ LANGUAGE PLPGSQL;
10865
10866 CREATE TABLE config.metabib_class (
10867     name    TEXT    PRIMARY KEY,
10868     label   TEXT    NOT NULL UNIQUE
10869 );
10870
10871 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
10872 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
10873 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
10874 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
10875 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
10876
10877 CREATE TABLE metabib.facet_entry (
10878         id              BIGSERIAL       PRIMARY KEY,
10879         source          BIGINT          NOT NULL,
10880         field           INT             NOT NULL,
10881         value           TEXT            NOT NULL
10882 );
10883
10884 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_field_entries( bib_id BIGINT ) RETURNS VOID AS $func$
10885 DECLARE
10886     fclass          RECORD;
10887     ind_data        metabib.field_entry_template%ROWTYPE;
10888 BEGIN
10889     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10890     IF NOT FOUND THEN
10891         FOR fclass IN SELECT * FROM config.metabib_class LOOP
10892             -- RAISE NOTICE 'Emptying out %', fclass.name;
10893             EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id;
10894         END LOOP;
10895         DELETE FROM metabib.facet_entry WHERE source = bib_id;
10896     END IF;
10897
10898     FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP
10899         IF ind_data.field < 0 THEN
10900             ind_data.field = -1 * ind_data.field;
10901             INSERT INTO metabib.facet_entry (field, source, value)
10902                 VALUES (ind_data.field, ind_data.source, ind_data.value);
10903         ELSE
10904             EXECUTE $$
10905                 INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value)
10906                     VALUES ($$ ||
10907                         quote_literal(ind_data.field) || $$, $$ ||
10908                         quote_literal(ind_data.source) || $$, $$ ||
10909                         quote_literal(ind_data.value) ||
10910                     $$);$$;
10911         END IF;
10912
10913     END LOOP;
10914
10915     RETURN;
10916 END;
10917 $func$ LANGUAGE PLPGSQL;
10918
10919 CREATE OR REPLACE FUNCTION biblio.extract_located_uris( bib_id BIGINT, marcxml TEXT, editor_id INT ) RETURNS VOID AS $func$
10920 DECLARE
10921     uris            TEXT[];
10922     uri_xml         TEXT;
10923     uri_label       TEXT;
10924     uri_href        TEXT;
10925     uri_use         TEXT;
10926     uri_owner       TEXT;
10927     uri_owner_id    INT;
10928     uri_id          INT;
10929     uri_cn_id       INT;
10930     uri_map_id      INT;
10931 BEGIN
10932
10933     uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml);
10934     IF ARRAY_UPPER(uris,1) > 0 THEN
10935         FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP
10936             -- First we pull info out of the 856
10937             uri_xml     := uris[i];
10938
10939             uri_href    := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1];
10940             CONTINUE WHEN uri_href IS NULL;
10941
10942             uri_label   := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10943             CONTINUE WHEN uri_label IS NULL;
10944
10945             uri_owner   := (oils_xpath('//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10946             CONTINUE WHEN uri_owner IS NULL;
10947
10948             uri_use     := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10949
10950             uri_owner := REGEXP_REPLACE(uri_owner, $re$^.*?\((\w+)\).*$$re$, E'\\1');
10951
10952             SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner;
10953             CONTINUE WHEN NOT FOUND;
10954
10955             -- now we look for a matching uri
10956             SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10957             IF NOT FOUND THEN -- create one
10958                 INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use);
10959                 SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10960             END IF;
10961
10962             -- we need a call number to link through
10963             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;
10964             IF NOT FOUND THEN
10965                 INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label)
10966                     VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##');
10967                 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;
10968             END IF;
10969
10970             -- now, link them if they're not already
10971             SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id;
10972             IF NOT FOUND THEN
10973                 INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id);
10974             END IF;
10975
10976         END LOOP;
10977     END IF;
10978
10979     RETURN;
10980 END;
10981 $func$ LANGUAGE PLPGSQL;
10982
10983 CREATE OR REPLACE FUNCTION metabib.remap_metarecord_for_bib( bib_id BIGINT, fp TEXT ) RETURNS BIGINT AS $func$
10984 DECLARE
10985     source_count    INT;
10986     old_mr          BIGINT;
10987     tmp_mr          metabib.metarecord%ROWTYPE;
10988     deleted_mrs     BIGINT[];
10989 BEGIN
10990
10991     DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; -- Rid ourselves of the search-estimate-killing linkage
10992
10993     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
10994
10995         IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN -- Find the first fingerprint-matching
10996             old_mr := tmp_mr.id;
10997         ELSE
10998             SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id;
10999             IF source_count = 0 THEN -- No other records
11000                 deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id);
11001                 DELETE FROM metabib.metarecord WHERE id = tmp_mr.id;
11002             END IF;
11003         END IF;
11004
11005     END LOOP;
11006
11007     IF old_mr IS NULL THEN -- we found no suitable, preexisting MR based on old source maps
11008         SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint?
11009         IF old_mr IS NULL THEN -- nope, create one and grab its id
11010             INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id );
11011             SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp;
11012         ELSE -- indeed there is. update it with a null cache and recalcualated master record
11013             UPDATE  metabib.metarecord
11014               SET   mods = NULL,
11015                     master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
11016               WHERE id = old_mr;
11017         END IF;
11018     ELSE -- there was one we already attached to, update its mods cache and master_record
11019         UPDATE  metabib.metarecord
11020           SET   mods = NULL,
11021                 master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
11022           WHERE id = old_mr;
11023     END IF;
11024
11025     INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping
11026
11027     IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN
11028         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
11029     END IF;
11030
11031     RETURN old_mr;
11032
11033 END;
11034 $func$ LANGUAGE PLPGSQL;
11035
11036 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_full_rec( bib_id BIGINT ) RETURNS VOID AS $func$
11037 BEGIN
11038     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
11039     IF NOT FOUND THEN
11040         DELETE FROM metabib.real_full_rec WHERE record = bib_id;
11041     END IF;
11042     INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value)
11043         SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id );
11044
11045     RETURN;
11046 END;
11047 $func$ LANGUAGE PLPGSQL;
11048
11049 -- AFTER UPDATE OR INSERT trigger for biblio.record_entry
11050 CREATE OR REPLACE FUNCTION biblio.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
11051 BEGIN
11052
11053     IF NEW.deleted IS TRUE THEN -- If this bib is deleted
11054         DELETE FROM metabib.metarecord_source_map WHERE source = NEW.id; -- Rid ourselves of the search-estimate-killing linkage
11055         DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible
11056         RETURN NEW; -- and we're done
11057     END IF;
11058
11059     IF TG_OP = 'UPDATE' THEN -- re-ingest?
11060         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
11061
11062         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
11063             RETURN NEW;
11064         END IF;
11065     END IF;
11066
11067     -- Record authority linking
11068     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
11069     IF NOT FOUND THEN
11070         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
11071     END IF;
11072
11073     -- Flatten and insert the mfr data
11074     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
11075     IF NOT FOUND THEN
11076         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
11077         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
11078         IF NOT FOUND THEN
11079             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
11080         END IF;
11081     END IF;
11082
11083     -- Gather and insert the field entry data
11084     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
11085
11086     -- Located URI magic
11087     IF TG_OP = 'INSERT' THEN
11088         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11089         IF NOT FOUND THEN
11090             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11091         END IF;
11092     ELSE
11093         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11094         IF NOT FOUND THEN
11095             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11096         END IF;
11097     END IF;
11098
11099     -- (re)map metarecord-bib linking
11100     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
11101         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
11102         IF NOT FOUND THEN
11103             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11104         END IF;
11105     ELSE -- we're doing an update, and we're not deleted, remap
11106         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_update' AND enabled;
11107         IF NOT FOUND THEN
11108             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11109         END IF;
11110     END IF;
11111
11112     RETURN NEW;
11113 END;
11114 $func$ LANGUAGE PLPGSQL;
11115
11116 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
11117 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 ();
11118
11119 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
11120
11121 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT ) RETURNS SETOF RECORD AS $func$
11122 DECLARE
11123     xpath_list  TEXT[];
11124     select_list TEXT[];
11125     where_list  TEXT[];
11126     q           TEXT;
11127     out_record  RECORD;
11128     empty_test  RECORD;
11129 BEGIN
11130     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
11131  
11132     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
11133  
11134     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
11135         IF xpath_list[i] = 'null()' THEN
11136             select_list := ARRAY_APPEND( select_list, 'NULL::TEXT AS c_' || i );
11137         ELSE
11138             select_list := ARRAY_APPEND(
11139                 select_list,
11140                 $sel$
11141                 EXPLODE_ARRAY(
11142                     COALESCE(
11143                         NULLIF(
11144                             oils_xpath(
11145                                 $sel$ ||
11146                                     quote_literal(
11147                                         CASE
11148                                             WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
11149                                             ELSE xpath_list[i] || '//text()'
11150                                         END
11151                                     ) ||
11152                                 $sel$,
11153                                 $sel$ || document_field || $sel$
11154                             ),
11155                            '{}'::TEXT[]
11156                         ),
11157                         '{NULL}'::TEXT[]
11158                     )
11159                 ) AS c_$sel$ || i
11160             );
11161             where_list := ARRAY_APPEND(
11162                 where_list,
11163                 'c_' || i || ' IS NOT NULL'
11164             );
11165         END IF;
11166     END LOOP;
11167  
11168     q := $q$
11169 SELECT * FROM (
11170     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
11171 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' AND ' );
11172     -- RAISE NOTICE 'query: %', q;
11173  
11174     FOR out_record IN EXECUTE q LOOP
11175         RETURN NEXT out_record;
11176     END LOOP;
11177  
11178     RETURN;
11179 END;
11180 $func$ LANGUAGE PLPGSQL IMMUTABLE;
11181
11182 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
11183 DECLARE
11184
11185     owning_lib      TEXT;
11186     circ_lib        TEXT;
11187     call_number     TEXT;
11188     copy_number     TEXT;
11189     status          TEXT;
11190     location        TEXT;
11191     circulate       TEXT;
11192     deposit         TEXT;
11193     deposit_amount  TEXT;
11194     ref             TEXT;
11195     holdable        TEXT;
11196     price           TEXT;
11197     barcode         TEXT;
11198     circ_modifier   TEXT;
11199     circ_as_type    TEXT;
11200     alert_message   TEXT;
11201     opac_visible    TEXT;
11202     pub_note        TEXT;
11203     priv_note       TEXT;
11204
11205     attr_def        RECORD;
11206     tmp_attr_set    RECORD;
11207     attr_set        vandelay.import_item%ROWTYPE;
11208
11209     xpath           TEXT;
11210
11211 BEGIN
11212
11213     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
11214
11215     IF FOUND THEN
11216
11217         attr_set.definition := attr_def.id; 
11218     
11219         -- Build the combined XPath
11220     
11221         owning_lib :=
11222             CASE
11223                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
11224                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
11225                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
11226             END;
11227     
11228         circ_lib :=
11229             CASE
11230                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
11231                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
11232                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
11233             END;
11234     
11235         call_number :=
11236             CASE
11237                 WHEN attr_def.call_number IS NULL THEN 'null()'
11238                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
11239                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
11240             END;
11241     
11242         copy_number :=
11243             CASE
11244                 WHEN attr_def.copy_number IS NULL THEN 'null()'
11245                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
11246                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
11247             END;
11248     
11249         status :=
11250             CASE
11251                 WHEN attr_def.status IS NULL THEN 'null()'
11252                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
11253                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
11254             END;
11255     
11256         location :=
11257             CASE
11258                 WHEN attr_def.location IS NULL THEN 'null()'
11259                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
11260                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
11261             END;
11262     
11263         circulate :=
11264             CASE
11265                 WHEN attr_def.circulate IS NULL THEN 'null()'
11266                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
11267                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
11268             END;
11269     
11270         deposit :=
11271             CASE
11272                 WHEN attr_def.deposit IS NULL THEN 'null()'
11273                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
11274                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
11275             END;
11276     
11277         deposit_amount :=
11278             CASE
11279                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
11280                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
11281                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
11282             END;
11283     
11284         ref :=
11285             CASE
11286                 WHEN attr_def.ref IS NULL THEN 'null()'
11287                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
11288                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
11289             END;
11290     
11291         holdable :=
11292             CASE
11293                 WHEN attr_def.holdable IS NULL THEN 'null()'
11294                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
11295                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
11296             END;
11297     
11298         price :=
11299             CASE
11300                 WHEN attr_def.price IS NULL THEN 'null()'
11301                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
11302                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
11303             END;
11304     
11305         barcode :=
11306             CASE
11307                 WHEN attr_def.barcode IS NULL THEN 'null()'
11308                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
11309                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
11310             END;
11311     
11312         circ_modifier :=
11313             CASE
11314                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
11315                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
11316                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
11317             END;
11318     
11319         circ_as_type :=
11320             CASE
11321                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
11322                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
11323                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
11324             END;
11325     
11326         alert_message :=
11327             CASE
11328                 WHEN attr_def.alert_message IS NULL THEN 'null()'
11329                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
11330                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
11331             END;
11332     
11333         opac_visible :=
11334             CASE
11335                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
11336                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
11337                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
11338             END;
11339
11340         pub_note :=
11341             CASE
11342                 WHEN attr_def.pub_note IS NULL THEN 'null()'
11343                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
11344                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
11345             END;
11346         priv_note :=
11347             CASE
11348                 WHEN attr_def.priv_note IS NULL THEN 'null()'
11349                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
11350                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
11351             END;
11352     
11353     
11354         xpath := 
11355             owning_lib      || '|' || 
11356             circ_lib        || '|' || 
11357             call_number     || '|' || 
11358             copy_number     || '|' || 
11359             status          || '|' || 
11360             location        || '|' || 
11361             circulate       || '|' || 
11362             deposit         || '|' || 
11363             deposit_amount  || '|' || 
11364             ref             || '|' || 
11365             holdable        || '|' || 
11366             price           || '|' || 
11367             barcode         || '|' || 
11368             circ_modifier   || '|' || 
11369             circ_as_type    || '|' || 
11370             alert_message   || '|' || 
11371             pub_note        || '|' || 
11372             priv_note       || '|' || 
11373             opac_visible;
11374
11375         -- RAISE NOTICE 'XPath: %', xpath;
11376         
11377         FOR tmp_attr_set IN
11378                 SELECT  *
11379                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
11380                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
11381                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
11382                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
11383         LOOP
11384     
11385             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
11386             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
11387
11388             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
11389             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
11390     
11391             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
11392             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
11393             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
11394     
11395             SELECT  id INTO attr_set.location
11396               FROM  asset.copy_location
11397               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
11398                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
11399     
11400             attr_set.circulate      :=
11401                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
11402                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
11403
11404             attr_set.deposit        :=
11405                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
11406                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
11407
11408             attr_set.holdable       :=
11409                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
11410                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
11411
11412             attr_set.opac_visible   :=
11413                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
11414                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
11415
11416             attr_set.ref            :=
11417                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
11418                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
11419     
11420             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
11421             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
11422             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
11423     
11424             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
11425             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
11426             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
11427             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
11428             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11429             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
11430             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
11431             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11432     
11433             RETURN NEXT attr_set;
11434     
11435         END LOOP;
11436     
11437     END IF;
11438
11439     RETURN;
11440
11441 END;
11442 $$ LANGUAGE PLPGSQL;
11443
11444 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
11445 DECLARE
11446     attr_def    BIGINT;
11447     item_data   vandelay.import_item%ROWTYPE;
11448 BEGIN
11449
11450     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
11451
11452     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
11453         INSERT INTO vandelay.import_item (
11454             record,
11455             definition,
11456             owning_lib,
11457             circ_lib,
11458             call_number,
11459             copy_number,
11460             status,
11461             location,
11462             circulate,
11463             deposit,
11464             deposit_amount,
11465             ref,
11466             holdable,
11467             price,
11468             barcode,
11469             circ_modifier,
11470             circ_as_type,
11471             alert_message,
11472             pub_note,
11473             priv_note,
11474             opac_visible
11475         ) VALUES (
11476             NEW.id,
11477             item_data.definition,
11478             item_data.owning_lib,
11479             item_data.circ_lib,
11480             item_data.call_number,
11481             item_data.copy_number,
11482             item_data.status,
11483             item_data.location,
11484             item_data.circulate,
11485             item_data.deposit,
11486             item_data.deposit_amount,
11487             item_data.ref,
11488             item_data.holdable,
11489             item_data.price,
11490             item_data.barcode,
11491             item_data.circ_modifier,
11492             item_data.circ_as_type,
11493             item_data.alert_message,
11494             item_data.pub_note,
11495             item_data.priv_note,
11496             item_data.opac_visible
11497         );
11498     END LOOP;
11499
11500     RETURN NULL;
11501 END;
11502 $func$ LANGUAGE PLPGSQL;
11503
11504 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11505 BEGIN
11506     EXECUTE $$
11507         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11508     $$;
11509         RETURN TRUE;
11510 END;
11511 $creator$ LANGUAGE 'plpgsql';
11512
11513 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11514 BEGIN
11515     EXECUTE $$
11516         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11517             audit_id    BIGINT                          PRIMARY KEY,
11518             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11519             audit_action        TEXT                            NOT NULL,
11520             LIKE $$ || sch || $$.$$ || tbl || $$
11521         );
11522     $$;
11523         RETURN TRUE;
11524 END;
11525 $creator$ LANGUAGE 'plpgsql';
11526
11527 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11528 BEGIN
11529     EXECUTE $$
11530         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11531         RETURNS TRIGGER AS $func$
11532         BEGIN
11533             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11534                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11535                     now(),
11536                     SUBSTR(TG_OP,1,1),
11537                     OLD.*;
11538             RETURN NULL;
11539         END;
11540         $func$ LANGUAGE 'plpgsql';
11541     $$;
11542         RETURN TRUE;
11543 END;
11544 $creator$ LANGUAGE 'plpgsql';
11545
11546 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11547 BEGIN
11548     EXECUTE $$
11549         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11550             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11551             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11552     $$;
11553         RETURN TRUE;
11554 END;
11555 $creator$ LANGUAGE 'plpgsql';
11556
11557 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11558 BEGIN
11559     EXECUTE $$
11560         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11561             SELECT      -1, now() as audit_time, '-' as audit_action, *
11562               FROM      $$ || sch || $$.$$ || tbl || $$
11563                 UNION ALL
11564             SELECT      *
11565               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11566     $$;
11567         RETURN TRUE;
11568 END;
11569 $creator$ LANGUAGE 'plpgsql';
11570
11571 -- The main event
11572
11573 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11574 BEGIN
11575     PERFORM acq.create_acq_seq(sch, tbl);
11576     PERFORM acq.create_acq_history(sch, tbl);
11577     PERFORM acq.create_acq_func(sch, tbl);
11578     PERFORM acq.create_acq_update_trigger(sch, tbl);
11579     PERFORM acq.create_acq_lifecycle(sch, tbl);
11580     RETURN TRUE;
11581 END;
11582 $creator$ LANGUAGE 'plpgsql';
11583
11584 ALTER TABLE acq.lineitem DROP COLUMN item_count;
11585
11586 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11587     SELECT  fund.id AS fund,
11588             fund_debit.encumbrance AS encumbrance,
11589             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11590       FROM acq.fund AS fund
11591                         LEFT JOIN acq.fund_debit AS fund_debit
11592                                 ON ( fund.id = fund_debit.fund )
11593       GROUP BY 1,2;
11594
11595 CREATE TABLE acq.debit_attribution (
11596         id                     INT         NOT NULL PRIMARY KEY,
11597         fund_debit             INT         NOT NULL
11598                                            REFERENCES acq.fund_debit
11599                                            DEFERRABLE INITIALLY DEFERRED,
11600     debit_amount           NUMERIC     NOT NULL,
11601         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11602                                            DEFERRABLE INITIALLY DEFERRED,
11603     credit_amount          NUMERIC
11604 );
11605
11606 CREATE INDEX acq_attribution_debit_idx
11607         ON acq.debit_attribution( fund_debit );
11608
11609 CREATE INDEX acq_attribution_credit_idx
11610         ON acq.debit_attribution( funding_source_credit );
11611
11612 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11613 /*
11614 Function to attribute expenditures and encumbrances to funding source credits,
11615 and thereby to funding sources.
11616
11617 Read the debits in chonological order, attributing each one to one or
11618 more funding source credits.  Constraints:
11619
11620 1. Don't attribute more to a credit than the amount of the credit.
11621
11622 2. For a given fund, don't attribute more to a funding source than the
11623 source has allocated to that fund.
11624
11625 3. Attribute debits to credits with deadlines before attributing them to
11626 credits without deadlines.  Otherwise attribute to the earliest credits
11627 first, based on the deadline date when present, or on the effective date
11628 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11629 This ordering is defined by an ORDER BY clause on the view
11630 acq.ordered_funding_source_credit.
11631
11632 Start by truncating the table acq.debit_attribution.  Then insert a row
11633 into that table for each attribution.  If a debit cannot be fully
11634 attributed, insert a row for the unattributable balance, with the 
11635 funding_source_credit and credit_amount columns NULL.
11636 */
11637 DECLARE
11638         curr_fund_source_bal RECORD;
11639         seqno                INT;     -- sequence num for credits applicable to a fund
11640         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11641         fc                   RECORD;  -- used for loading t_fund_credit table
11642         sc                   RECORD;  -- used for loading t_fund_credit table
11643         --
11644         -- Used exclusively in the main loop:
11645         --
11646         deb                 RECORD;   -- current row from acq.fund_debit table
11647         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11648         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11649         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11650         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11651         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11652         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11653         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11654         attrib_count        INT;      -- populates id of acq.debit_attribution
11655 BEGIN
11656         --
11657         -- Load a temporary table.  For each combination of fund and funding source,
11658         -- load an entry with the total amount allocated to that fund by that source.
11659         -- This sum may reflect transfers as well as original allocations.  We will
11660         -- reduce this balance whenever we attribute debits to it.
11661         --
11662         CREATE TEMP TABLE t_fund_source_bal
11663         ON COMMIT DROP AS
11664                 SELECT
11665                         fund AS fund,
11666                         funding_source AS source,
11667                         sum( amount ) AS balance
11668                 FROM
11669                         acq.fund_allocation
11670                 GROUP BY
11671                         fund,
11672                         funding_source
11673                 HAVING
11674                         sum( amount ) > 0;
11675         --
11676         CREATE INDEX t_fund_source_bal_idx
11677                 ON t_fund_source_bal( fund, source );
11678         -------------------------------------------------------------------------------
11679         --
11680         -- Load another temporary table.  For each fund, load zero or more
11681         -- funding source credits from which that fund can get money.
11682         --
11683         CREATE TEMP TABLE t_fund_credit (
11684                 fund        INT,
11685                 seq         INT,
11686                 credit      INT
11687         ) ON COMMIT DROP;
11688         --
11689         FOR fc IN
11690                 SELECT DISTINCT fund
11691                 FROM acq.fund_allocation
11692                 ORDER BY fund
11693         LOOP                  -- Loop over the funds
11694                 seqno := 1;
11695                 FOR sc IN
11696                         SELECT
11697                                 ofsc.id
11698                         FROM
11699                                 acq.ordered_funding_source_credit AS ofsc
11700                         WHERE
11701                                 ofsc.funding_source IN
11702                                 (
11703                                         SELECT funding_source
11704                                         FROM acq.fund_allocation
11705                                         WHERE fund = fc.fund
11706                                 )
11707                 ORDER BY
11708                     ofsc.sort_priority,
11709                     ofsc.sort_date,
11710                     ofsc.id
11711                 LOOP                        -- Add each credit to the list
11712                         INSERT INTO t_fund_credit (
11713                                 fund,
11714                                 seq,
11715                                 credit
11716                         ) VALUES (
11717                                 fc.fund,
11718                                 seqno,
11719                                 sc.id
11720                         );
11721                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11722                         seqno := seqno + 1;
11723                 END LOOP;     -- Loop over credits for a given fund
11724         END LOOP;         -- Loop over funds
11725         --
11726         CREATE INDEX t_fund_credit_idx
11727                 ON t_fund_credit( fund, seq );
11728         -------------------------------------------------------------------------------
11729         --
11730         -- Load yet another temporary table.  This one is a list of funding source
11731         -- credits, with their balances.  We shall reduce those balances as we
11732         -- attribute debits to them.
11733         --
11734         CREATE TEMP TABLE t_credit
11735         ON COMMIT DROP AS
11736         SELECT
11737             fsc.id AS credit,
11738             fsc.funding_source AS source,
11739             fsc.amount AS balance,
11740             fs.currency_type AS currency_type
11741         FROM
11742             acq.funding_source_credit AS fsc,
11743             acq.funding_source fs
11744         WHERE
11745             fsc.funding_source = fs.id
11746                         AND fsc.amount > 0;
11747         --
11748         CREATE INDEX t_credit_idx
11749                 ON t_credit( credit );
11750         --
11751         -------------------------------------------------------------------------------
11752         --
11753         -- Now that we have loaded the lookup tables: loop through the debits,
11754         -- attributing each one to one or more funding source credits.
11755         -- 
11756         truncate table acq.debit_attribution;
11757         --
11758         attrib_count := 0;
11759         FOR deb in
11760                 SELECT
11761                         fd.id,
11762                         fd.fund,
11763                         fd.amount,
11764                         f.currency_type,
11765                         fd.encumbrance
11766                 FROM
11767                         acq.fund_debit fd,
11768                         acq.fund f
11769                 WHERE
11770                         fd.fund = f.id
11771                 ORDER BY
11772                         fd.id
11773         LOOP
11774                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11775                 --
11776                 debit_balance := deb.amount;
11777                 --
11778                 -- Loop over the funding source credits that are eligible
11779                 -- to pay for this debit
11780                 --
11781                 FOR fund_credit IN
11782                         SELECT
11783                                 credit
11784                         FROM
11785                                 t_fund_credit
11786                         WHERE
11787                                 fund = deb.fund
11788                         ORDER BY
11789                                 seq
11790                 LOOP
11791                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11792                         --
11793                         -- Look up the balance for this credit.  If it's zero, then
11794                         -- it's not useful, so treat it as if you didn't find it.
11795                         -- (Actually there shouldn't be any zero balances in the table,
11796                         -- but we check just to make sure.)
11797                         --
11798                         SELECT *
11799                         INTO curr_credit_bal
11800                         FROM t_credit
11801                         WHERE
11802                                 credit = fund_credit.credit
11803                                 AND balance > 0;
11804                         --
11805                         IF curr_credit_bal IS NULL THEN
11806                                 --
11807                                 -- This credit is exhausted; try the next one.
11808                                 --
11809                                 CONTINUE;
11810                         END IF;
11811                         --
11812                         --
11813                         -- At this point we have an applicable credit with some money left.
11814                         -- Now see if the relevant funding_source has any money left.
11815                         --
11816                         -- Look up the balance of the allocation for this combination of
11817                         -- fund and source.  If you find such an entry, but it has a zero
11818                         -- balance, then it's not useful, so treat it as unfound.
11819                         -- (Actually there shouldn't be any zero balances in the table,
11820                         -- but we check just to make sure.)
11821                         --
11822                         SELECT *
11823                         INTO curr_fund_source_bal
11824                         FROM t_fund_source_bal
11825                         WHERE
11826                                 fund = deb.fund
11827                                 AND source = curr_credit_bal.source
11828                                 AND balance > 0;
11829                         --
11830                         IF curr_fund_source_bal IS NULL THEN
11831                                 --
11832                                 -- This fund/source doesn't exist or is already exhausted,
11833                                 -- so we can't use this credit.  Go on to the next one.
11834                                 --
11835                                 CONTINUE;
11836                         END IF;
11837                         --
11838                         -- Convert the available balances to the currency of the fund
11839                         --
11840                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11841                                 curr_credit_bal.currency_type, deb.currency_type );
11842                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11843                                 curr_credit_bal.currency_type, deb.currency_type );
11844                         --
11845                         -- Determine how much we can attribute to this credit: the minimum
11846                         -- of the debit amount, the fund/source balance, and the
11847                         -- credit balance
11848                         --
11849                         --RAISE NOTICE '   deb bal %', debit_balance;
11850                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11851                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11852                         --
11853                         conv_attr_amount := NULL;
11854                         attr_amount := debit_balance;
11855                         --
11856                         IF attr_amount > conv_alloc_balance THEN
11857                                 attr_amount := conv_alloc_balance;
11858                                 conv_attr_amount := curr_fund_source_bal.balance;
11859                         END IF;
11860                         IF attr_amount > conv_cred_balance THEN
11861                                 attr_amount := conv_cred_balance;
11862                                 conv_attr_amount := curr_credit_bal.balance;
11863                         END IF;
11864                         --
11865                         -- If we're attributing all of one of the balances, then that's how
11866                         -- much we will deduct from the balances, and we already captured
11867                         -- that amount above.  Otherwise we must convert the amount of the
11868                         -- attribution from the currency of the fund back to the currency of
11869                         -- the funding source.
11870                         --
11871                         IF conv_attr_amount IS NULL THEN
11872                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11873                                         deb.currency_type, curr_credit_bal.currency_type );
11874                         END IF;
11875                         --
11876                         -- Insert a row to record the attribution
11877                         --
11878                         attrib_count := attrib_count + 1;
11879                         INSERT INTO acq.debit_attribution (
11880                                 id,
11881                                 fund_debit,
11882                                 debit_amount,
11883                                 funding_source_credit,
11884                                 credit_amount
11885                         ) VALUES (
11886                                 attrib_count,
11887                                 deb.id,
11888                                 attr_amount,
11889                                 curr_credit_bal.credit,
11890                                 conv_attr_amount
11891                         );
11892                         --
11893                         -- Subtract the attributed amount from the various balances
11894                         --
11895                         debit_balance := debit_balance - attr_amount;
11896                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11897                         --
11898                         IF curr_fund_source_bal.balance <= 0 THEN
11899                                 --
11900                                 -- This allocation is exhausted.  Delete it so
11901                                 -- that we don't waste time looking at it again.
11902                                 --
11903                                 DELETE FROM t_fund_source_bal
11904                                 WHERE
11905                                         fund = curr_fund_source_bal.fund
11906                                         AND source = curr_fund_source_bal.source;
11907                         ELSE
11908                                 UPDATE t_fund_source_bal
11909                                 SET balance = balance - conv_attr_amount
11910                                 WHERE
11911                                         fund = curr_fund_source_bal.fund
11912                                         AND source = curr_fund_source_bal.source;
11913                         END IF;
11914                         --
11915                         IF curr_credit_bal.balance <= 0 THEN
11916                                 --
11917                                 -- This funding source credit is exhausted.  Delete it
11918                                 -- so that we don't waste time looking at it again.
11919                                 --
11920                                 --DELETE FROM t_credit
11921                                 --WHERE
11922                                 --      credit = curr_credit_bal.credit;
11923                                 --
11924                                 DELETE FROM t_fund_credit
11925                                 WHERE
11926                                         credit = curr_credit_bal.credit;
11927                         ELSE
11928                                 UPDATE t_credit
11929                                 SET balance = curr_credit_bal.balance
11930                                 WHERE
11931                                         credit = curr_credit_bal.credit;
11932                         END IF;
11933                         --
11934                         -- Are we done with this debit yet?
11935                         --
11936                         IF debit_balance <= 0 THEN
11937                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11938                         END IF;
11939                 END LOOP;       -- End loop over credits
11940                 --
11941                 IF debit_balance <> 0 THEN
11942                         --
11943                         -- We weren't able to attribute this debit, or at least not
11944                         -- all of it.  Insert a row for the unattributed balance.
11945                         --
11946                         attrib_count := attrib_count + 1;
11947                         INSERT INTO acq.debit_attribution (
11948                                 id,
11949                                 fund_debit,
11950                                 debit_amount,
11951                                 funding_source_credit,
11952                                 credit_amount
11953                         ) VALUES (
11954                                 attrib_count,
11955                                 deb.id,
11956                                 debit_balance,
11957                                 NULL,
11958                                 NULL
11959                         );
11960                 END IF;
11961         END LOOP;   -- End of loop over debits
11962 END;
11963 $$ LANGUAGE 'plpgsql';
11964
11965 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11966 DECLARE
11967     query TEXT;
11968     output TEXT;
11969 BEGIN
11970     query := $q$
11971         SELECT  regexp_replace(
11972                     oils_xpath_string(
11973                         $q$ || quote_literal($3) || $q$,
11974                         marc,
11975                         ' '
11976                     ),
11977                     $q$ || quote_literal($4) || $q$,
11978                     '',
11979                     'g')
11980           FROM  $q$ || $1 || $q$
11981           WHERE id = $q$ || $2;
11982
11983     EXECUTE query INTO output;
11984
11985     -- RAISE NOTICE 'query: %, output; %', query, output;
11986
11987     RETURN output;
11988 END;
11989 $$ LANGUAGE PLPGSQL IMMUTABLE;
11990
11991 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
11992     SELECT extract_marc_field($1,$2,$3,'');
11993 $$ LANGUAGE SQL IMMUTABLE;
11994
11995 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
11996 DECLARE
11997     moved_objects INT := 0;
11998     source_cn     asset.call_number%ROWTYPE;
11999     target_cn     asset.call_number%ROWTYPE;
12000     metarec       metabib.metarecord%ROWTYPE;
12001     hold          action.hold_request%ROWTYPE;
12002     ser_rec       serial.record_entry%ROWTYPE;
12003     uri_count     INT := 0;
12004     counter       INT := 0;
12005     uri_datafield TEXT;
12006     uri_text      TEXT := '';
12007 BEGIN
12008
12009     -- move any 856 entries on records that have at least one MARC-mapped URI entry
12010     SELECT  INTO uri_count COUNT(*)
12011       FROM  asset.uri_call_number_map m
12012             JOIN asset.call_number cn ON (m.call_number = cn.id)
12013       WHERE cn.record = source_record;
12014
12015     IF uri_count > 0 THEN
12016
12017         SELECT  COUNT(*) INTO counter
12018           FROM  oils_xpath_table(
12019                     'id',
12020                     'marc',
12021                     'biblio.record_entry',
12022                     '//*[@tag="856"]',
12023                     'id=' || source_record
12024                 ) as t(i int,c text);
12025
12026         FOR i IN 1 .. counter LOOP
12027             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
12028                         ' tag="856"' || 
12029                         ' ind1="' || FIRST(ind1) || '"'  || 
12030                         ' ind2="' || FIRST(ind2) || '">' || 
12031                         array_to_string(
12032                             array_accum(
12033                                 '<subfield code="' || subfield || '">' ||
12034                                 regexp_replace(
12035                                     regexp_replace(
12036                                         regexp_replace(data,'&','&amp;','g'),
12037                                         '>', '&gt;', 'g'
12038                                     ),
12039                                     '<', '&lt;', 'g'
12040                                 ) || '</subfield>'
12041                             ), ''
12042                         ) || '</datafield>' INTO uri_datafield
12043               FROM  oils_xpath_table(
12044                         'id',
12045                         'marc',
12046                         'biblio.record_entry',
12047                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
12048                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
12049                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
12050                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
12051                         'id=' || source_record
12052                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
12053
12054             uri_text := uri_text || uri_datafield;
12055         END LOOP;
12056
12057         IF uri_text <> '' THEN
12058             UPDATE  biblio.record_entry
12059               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
12060               WHERE id = target_record;
12061         END IF;
12062
12063     END IF;
12064
12065     -- Find and move metarecords to the target record
12066     SELECT  INTO metarec *
12067       FROM  metabib.metarecord
12068       WHERE master_record = source_record;
12069
12070     IF FOUND THEN
12071         UPDATE  metabib.metarecord
12072           SET   master_record = target_record,
12073             mods = NULL
12074           WHERE id = metarec.id;
12075
12076         moved_objects := moved_objects + 1;
12077     END IF;
12078
12079     -- Find call numbers attached to the source ...
12080     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
12081
12082         SELECT  INTO target_cn *
12083           FROM  asset.call_number
12084           WHERE label = source_cn.label
12085             AND owning_lib = source_cn.owning_lib
12086             AND record = target_record;
12087
12088         -- ... and if there's a conflicting one on the target ...
12089         IF FOUND THEN
12090
12091             -- ... move the copies to that, and ...
12092             UPDATE  asset.copy
12093               SET   call_number = target_cn.id
12094               WHERE call_number = source_cn.id;
12095
12096             -- ... move V holds to the move-target call number
12097             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
12098
12099                 UPDATE  action.hold_request
12100                   SET   target = target_cn.id
12101                   WHERE id = hold.id;
12102
12103                 moved_objects := moved_objects + 1;
12104             END LOOP;
12105
12106         -- ... if not ...
12107         ELSE
12108             -- ... just move the call number to the target record
12109             UPDATE  asset.call_number
12110               SET   record = target_record
12111               WHERE id = source_cn.id;
12112         END IF;
12113
12114         moved_objects := moved_objects + 1;
12115     END LOOP;
12116
12117     -- Find T holds targeting the source record ...
12118     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
12119
12120         -- ... and move them to the target record
12121         UPDATE  action.hold_request
12122           SET   target = target_record
12123           WHERE id = hold.id;
12124
12125         moved_objects := moved_objects + 1;
12126     END LOOP;
12127
12128     -- Find serial records targeting the source record ...
12129     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
12130         -- ... and move them to the target record
12131         UPDATE  serial.record_entry
12132           SET   record = target_record
12133           WHERE id = ser_rec.id;
12134
12135         moved_objects := moved_objects + 1;
12136     END LOOP;
12137
12138     -- Finally, "delete" the source record
12139     DELETE FROM biblio.record_entry WHERE id = source_record;
12140
12141     -- That's all, folks!
12142     RETURN moved_objects;
12143 END;
12144 $func$ LANGUAGE plpgsql;
12145
12146 CREATE OR REPLACE FUNCTION acq.transfer_fund(
12147         old_fund   IN INT,
12148         old_amount IN NUMERIC,     -- in currency of old fund
12149         new_fund   IN INT,
12150         new_amount IN NUMERIC,     -- in currency of new fund
12151         user_id    IN INT,
12152         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
12153         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
12154 ) RETURNS VOID AS $$
12155 /* -------------------------------------------------------------------------------
12156
12157 Function to transfer money from one fund to another.
12158
12159 A transfer is represented as a pair of entries in acq.fund_allocation, with a
12160 negative amount for the old (losing) fund and a positive amount for the new
12161 (gaining) fund.  In some cases there may be more than one such pair of entries
12162 in order to pull the money from different funding sources, or more specifically
12163 from different funding source credits.  For each such pair there is also an
12164 entry in acq.fund_transfer.
12165
12166 Since funding_source is a non-nullable column in acq.fund_allocation, we must
12167 choose a funding source for the transferred money to come from.  This choice
12168 must meet two constraints, so far as possible:
12169
12170 1. The amount transferred from a given funding source must not exceed the
12171 amount allocated to the old fund by the funding source.  To that end we
12172 compare the amount being transferred to the amount allocated.
12173
12174 2. We shouldn't transfer money that has already been spent or encumbered, as
12175 defined by the funding attribution process.  We attribute expenses to the
12176 oldest funding source credits first.  In order to avoid transferring that
12177 attributed money, we reverse the priority, transferring from the newest funding
12178 source credits first.  There can be no guarantee that this approach will
12179 avoid overcommitting a fund, but no other approach can do any better.
12180
12181 In this context the age of a funding source credit is defined by the
12182 deadline_date for credits with deadline_dates, and by the effective_date for
12183 credits without deadline_dates, with the proviso that credits with deadline_dates
12184 are all considered "older" than those without.
12185
12186 ----------
12187
12188 In the signature for this function, there is one last parameter commented out,
12189 named "funding_source_in".  Correspondingly, the WHERE clause for the query
12190 driving the main loop has an OR clause commented out, which references the
12191 funding_source_in parameter.
12192
12193 If these lines are uncommented, this function will allow the user optionally to
12194 restrict a fund transfer to a specified funding source.  If the source
12195 parameter is left NULL, then there will be no such restriction.
12196
12197 ------------------------------------------------------------------------------- */ 
12198 DECLARE
12199         same_currency      BOOLEAN;
12200         currency_ratio     NUMERIC;
12201         old_fund_currency  TEXT;
12202         old_remaining      NUMERIC;  -- in currency of old fund
12203         new_fund_currency  TEXT;
12204         new_fund_active    BOOLEAN;
12205         new_remaining      NUMERIC;  -- in currency of new fund
12206         curr_old_amt       NUMERIC;  -- in currency of old fund
12207         curr_new_amt       NUMERIC;  -- in currency of new fund
12208         source_addition    NUMERIC;  -- in currency of funding source
12209         source_deduction   NUMERIC;  -- in currency of funding source
12210         orig_allocated_amt NUMERIC;  -- in currency of funding source
12211         allocated_amt      NUMERIC;  -- in currency of fund
12212         source             RECORD;
12213 BEGIN
12214         --
12215         -- Sanity checks
12216         --
12217         IF old_fund IS NULL THEN
12218                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
12219         END IF;
12220         --
12221         IF old_amount IS NULL THEN
12222                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
12223         END IF;
12224         --
12225         -- The new fund and its amount must be both NULL or both not NULL.
12226         --
12227         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
12228                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
12229         END IF;
12230         --
12231         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
12232                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
12233         END IF;
12234         --
12235         IF user_id IS NULL THEN
12236                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
12237         END IF;
12238         --
12239         -- Initialize the amounts to be transferred, each denominated
12240         -- in the currency of its respective fund.  They will be
12241         -- reduced on each iteration of the loop.
12242         --
12243         old_remaining := old_amount;
12244         new_remaining := new_amount;
12245         --
12246         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
12247         --      old_amount, old_fund, new_amount, new_fund;
12248         --
12249         -- Get the currency types of the old and new funds.
12250         --
12251         SELECT
12252                 currency_type
12253         INTO
12254                 old_fund_currency
12255         FROM
12256                 acq.fund
12257         WHERE
12258                 id = old_fund;
12259         --
12260         IF old_fund_currency IS NULL THEN
12261                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
12262         END IF;
12263         --
12264         IF new_fund IS NOT NULL THEN
12265                 SELECT
12266                         currency_type,
12267                         active
12268                 INTO
12269                         new_fund_currency,
12270                         new_fund_active
12271                 FROM
12272                         acq.fund
12273                 WHERE
12274                         id = new_fund;
12275                 --
12276                 IF new_fund_currency IS NULL THEN
12277                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
12278                 ELSIF NOT new_fund_active THEN
12279                         --
12280                         -- No point in putting money into a fund from whence you can't spend it
12281                         --
12282                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
12283                 END IF;
12284                 --
12285                 IF new_amount = old_amount THEN
12286                         same_currency := true;
12287                         currency_ratio := 1;
12288                 ELSE
12289                         --
12290                         -- We'll have to translate currency between funds.  We presume that
12291                         -- the calling code has already applied an appropriate exchange rate,
12292                         -- so we'll apply the same conversion to each sub-transfer.
12293                         --
12294                         same_currency := false;
12295                         currency_ratio := new_amount / old_amount;
12296                 END IF;
12297         END IF;
12298         --
12299         -- Identify the funding source(s) from which we want to transfer the money.
12300         -- The principle is that we want to transfer the newest money first, because
12301         -- we spend the oldest money first.  The priority for spending is defined
12302         -- by a sort of the view acq.ordered_funding_source_credit.
12303         --
12304         FOR source in
12305                 SELECT
12306                         ofsc.id,
12307                         ofsc.funding_source,
12308                         ofsc.amount,
12309                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
12310                                 AS converted_amt,
12311                         fs.currency_type
12312                 FROM
12313                         acq.ordered_funding_source_credit AS ofsc,
12314                         acq.funding_source fs
12315                 WHERE
12316                         ofsc.funding_source = fs.id
12317                         and ofsc.funding_source IN
12318                         (
12319                                 SELECT funding_source
12320                                 FROM acq.fund_allocation
12321                                 WHERE fund = old_fund
12322                         )
12323                         -- and
12324                         -- (
12325                         --      ofsc.funding_source = funding_source_in
12326                         --      OR funding_source_in IS NULL
12327                         -- )
12328                 ORDER BY
12329                         ofsc.sort_priority desc,
12330                         ofsc.sort_date desc,
12331                         ofsc.id desc
12332         LOOP
12333                 --
12334                 -- Determine how much money the old fund got from this funding source,
12335                 -- denominated in the currency types of the source and of the fund.
12336                 -- This result may reflect transfers from previous iterations.
12337                 --
12338                 SELECT
12339                         COALESCE( sum( amount ), 0 ),
12340                         COALESCE( sum( amount )
12341                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
12342                 INTO
12343                         orig_allocated_amt,     -- in currency of the source
12344                         allocated_amt           -- in currency of the old fund
12345                 FROM
12346                         acq.fund_allocation
12347                 WHERE
12348                         fund = old_fund
12349                         and funding_source = source.funding_source;
12350                 --      
12351                 -- Determine how much to transfer from this credit, in the currency
12352                 -- of the fund.   Begin with the amount remaining to be attributed:
12353                 --
12354                 curr_old_amt := old_remaining;
12355                 --
12356                 -- Can't attribute more than was allocated from the fund:
12357                 --
12358                 IF curr_old_amt > allocated_amt THEN
12359                         curr_old_amt := allocated_amt;
12360                 END IF;
12361                 --
12362                 -- Can't attribute more than the amount of the current credit:
12363                 --
12364                 IF curr_old_amt > source.converted_amt THEN
12365                         curr_old_amt := source.converted_amt;
12366                 END IF;
12367                 --
12368                 curr_old_amt := trunc( curr_old_amt, 2 );
12369                 --
12370                 old_remaining := old_remaining - curr_old_amt;
12371                 --
12372                 -- Determine the amount to be deducted, if any,
12373                 -- from the old allocation.
12374                 --
12375                 IF old_remaining > 0 THEN
12376                         --
12377                         -- In this case we're using the whole allocation, so use that
12378                         -- amount directly instead of applying a currency translation
12379                         -- and thereby inviting round-off errors.
12380                         --
12381                         source_deduction := - orig_allocated_amt;
12382                 ELSE 
12383                         source_deduction := trunc(
12384                                 ( - curr_old_amt ) *
12385                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
12386                                 2 );
12387                 END IF;
12388                 --
12389                 IF source_deduction <> 0 THEN
12390                         --
12391                         -- Insert negative allocation for old fund in fund_allocation,
12392                         -- converted into the currency of the funding source
12393                         --
12394                         INSERT INTO acq.fund_allocation (
12395                                 funding_source,
12396                                 fund,
12397                                 amount,
12398                                 allocator,
12399                                 note
12400                         ) VALUES (
12401                                 source.funding_source,
12402                                 old_fund,
12403                                 source_deduction,
12404                                 user_id,
12405                                 'Transfer to fund ' || new_fund
12406                         );
12407                 END IF;
12408                 --
12409                 IF new_fund IS NOT NULL THEN
12410                         --
12411                         -- Determine how much to add to the new fund, in
12412                         -- its currency, and how much remains to be added:
12413                         --
12414                         IF same_currency THEN
12415                                 curr_new_amt := curr_old_amt;
12416                         ELSE
12417                                 IF old_remaining = 0 THEN
12418                                         --
12419                                         -- This is the last iteration, so nothing should be left
12420                                         --
12421                                         curr_new_amt := new_remaining;
12422                                         new_remaining := 0;
12423                                 ELSE
12424                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
12425                                         new_remaining := new_remaining - curr_new_amt;
12426                                 END IF;
12427                         END IF;
12428                         --
12429                         -- Determine how much to add, if any,
12430                         -- to the new fund's allocation.
12431                         --
12432                         IF old_remaining > 0 THEN
12433                                 --
12434                                 -- In this case we're using the whole allocation, so use that amount
12435                                 -- amount directly instead of applying a currency translation and
12436                                 -- thereby inviting round-off errors.
12437                                 --
12438                                 source_addition := orig_allocated_amt;
12439                         ELSIF source.currency_type = old_fund_currency THEN
12440                                 --
12441                                 -- In this case we don't need a round trip currency translation,
12442                                 -- thereby inviting round-off errors:
12443                                 --
12444                                 source_addition := curr_old_amt;
12445                         ELSE 
12446                                 source_addition := trunc(
12447                                         curr_new_amt *
12448                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
12449                                         2 );
12450                         END IF;
12451                         --
12452                         IF source_addition <> 0 THEN
12453                                 --
12454                                 -- Insert positive allocation for new fund in fund_allocation,
12455                                 -- converted to the currency of the founding source
12456                                 --
12457                                 INSERT INTO acq.fund_allocation (
12458                                         funding_source,
12459                                         fund,
12460                                         amount,
12461                                         allocator,
12462                                         note
12463                                 ) VALUES (
12464                                         source.funding_source,
12465                                         new_fund,
12466                                         source_addition,
12467                                         user_id,
12468                                         'Transfer from fund ' || old_fund
12469                                 );
12470                         END IF;
12471                 END IF;
12472                 --
12473                 IF trunc( curr_old_amt, 2 ) <> 0
12474                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12475                         --
12476                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12477                         --
12478                         INSERT INTO acq.fund_transfer (
12479                                 src_fund,
12480                                 src_amount,
12481                                 dest_fund,
12482                                 dest_amount,
12483                                 transfer_user,
12484                                 note,
12485                                 funding_source_credit
12486                         ) VALUES (
12487                                 old_fund,
12488                                 trunc( curr_old_amt, 2 ),
12489                                 new_fund,
12490                                 trunc( curr_new_amt, 2 ),
12491                                 user_id,
12492                                 xfer_note,
12493                                 source.id
12494                         );
12495                 END IF;
12496                 --
12497                 if old_remaining <= 0 THEN
12498                         EXIT;                   -- Nothing more to be transferred
12499                 END IF;
12500         END LOOP;
12501 END;
12502 $$ LANGUAGE plpgsql;
12503
12504 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12505         old_year INTEGER,
12506         user_id INTEGER,
12507         org_unit_id INTEGER
12508 ) RETURNS VOID AS $$
12509 DECLARE
12510 --
12511 new_id      INT;
12512 old_fund    RECORD;
12513 org_found   BOOLEAN;
12514 --
12515 BEGIN
12516         --
12517         -- Sanity checks
12518         --
12519         IF old_year IS NULL THEN
12520                 RAISE EXCEPTION 'Input year argument is NULL';
12521         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12522                 RAISE EXCEPTION 'Input year is out of range';
12523         END IF;
12524         --
12525         IF user_id IS NULL THEN
12526                 RAISE EXCEPTION 'Input user id argument is NULL';
12527         END IF;
12528         --
12529         IF org_unit_id IS NULL THEN
12530                 RAISE EXCEPTION 'Org unit id argument is NULL';
12531         ELSE
12532                 SELECT TRUE INTO org_found
12533                 FROM actor.org_unit
12534                 WHERE id = org_unit_id;
12535                 --
12536                 IF org_found IS NULL THEN
12537                         RAISE EXCEPTION 'Org unit id is invalid';
12538                 END IF;
12539         END IF;
12540         --
12541         -- Loop over the applicable funds
12542         --
12543         FOR old_fund in SELECT * FROM acq.fund
12544         WHERE
12545                 year = old_year
12546                 AND propagate
12547                 AND org = org_unit_id
12548         LOOP
12549                 BEGIN
12550                         INSERT INTO acq.fund (
12551                                 org,
12552                                 name,
12553                                 year,
12554                                 currency_type,
12555                                 code,
12556                                 rollover,
12557                                 propagate,
12558                                 balance_warning_percent,
12559                                 balance_stop_percent
12560                         ) VALUES (
12561                                 old_fund.org,
12562                                 old_fund.name,
12563                                 old_year + 1,
12564                                 old_fund.currency_type,
12565                                 old_fund.code,
12566                                 old_fund.rollover,
12567                                 true,
12568                                 old_fund.balance_warning_percent,
12569                                 old_fund.balance_stop_percent
12570                         )
12571                         RETURNING id INTO new_id;
12572                 EXCEPTION
12573                         WHEN unique_violation THEN
12574                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12575                                 CONTINUE;
12576                 END;
12577                 --RAISE NOTICE 'Propagating fund % to fund %',
12578                 --      old_fund.code, new_id;
12579         END LOOP;
12580 END;
12581 $$ LANGUAGE plpgsql;
12582
12583 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12584         old_year INTEGER,
12585         user_id INTEGER,
12586         org_unit_id INTEGER
12587 ) RETURNS VOID AS $$
12588 DECLARE
12589 --
12590 new_id      INT;
12591 old_fund    RECORD;
12592 org_found   BOOLEAN;
12593 --
12594 BEGIN
12595         --
12596         -- Sanity checks
12597         --
12598         IF old_year IS NULL THEN
12599                 RAISE EXCEPTION 'Input year argument is NULL';
12600         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12601                 RAISE EXCEPTION 'Input year is out of range';
12602         END IF;
12603         --
12604         IF user_id IS NULL THEN
12605                 RAISE EXCEPTION 'Input user id argument is NULL';
12606         END IF;
12607         --
12608         IF org_unit_id IS NULL THEN
12609                 RAISE EXCEPTION 'Org unit id argument is NULL';
12610         ELSE
12611                 SELECT TRUE INTO org_found
12612                 FROM actor.org_unit
12613                 WHERE id = org_unit_id;
12614                 --
12615                 IF org_found IS NULL THEN
12616                         RAISE EXCEPTION 'Org unit id is invalid';
12617                 END IF;
12618         END IF;
12619         --
12620         -- Loop over the applicable funds
12621         --
12622         FOR old_fund in SELECT * FROM acq.fund
12623         WHERE
12624                 year = old_year
12625                 AND propagate
12626                 AND org in (
12627                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12628                 )
12629         LOOP
12630                 BEGIN
12631                         INSERT INTO acq.fund (
12632                                 org,
12633                                 name,
12634                                 year,
12635                                 currency_type,
12636                                 code,
12637                                 rollover,
12638                                 propagate,
12639                                 balance_warning_percent,
12640                                 balance_stop_percent
12641                         ) VALUES (
12642                                 old_fund.org,
12643                                 old_fund.name,
12644                                 old_year + 1,
12645                                 old_fund.currency_type,
12646                                 old_fund.code,
12647                                 old_fund.rollover,
12648                                 true,
12649                                 old_fund.balance_warning_percent,
12650                                 old_fund.balance_stop_percent
12651                         )
12652                         RETURNING id INTO new_id;
12653                 EXCEPTION
12654                         WHEN unique_violation THEN
12655                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12656                                 CONTINUE;
12657                 END;
12658                 --RAISE NOTICE 'Propagating fund % to fund %',
12659                 --      old_fund.code, new_id;
12660         END LOOP;
12661 END;
12662 $$ LANGUAGE plpgsql;
12663
12664 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12665         old_year INTEGER,
12666         user_id INTEGER,
12667         org_unit_id INTEGER
12668 ) RETURNS VOID AS $$
12669 DECLARE
12670 --
12671 new_fund    INT;
12672 new_year    INT := old_year + 1;
12673 org_found   BOOL;
12674 xfer_amount NUMERIC;
12675 roll_fund   RECORD;
12676 deb         RECORD;
12677 detail      RECORD;
12678 --
12679 BEGIN
12680         --
12681         -- Sanity checks
12682         --
12683         IF old_year IS NULL THEN
12684                 RAISE EXCEPTION 'Input year argument is NULL';
12685     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12686         RAISE EXCEPTION 'Input year is out of range';
12687         END IF;
12688         --
12689         IF user_id IS NULL THEN
12690                 RAISE EXCEPTION 'Input user id argument is NULL';
12691         END IF;
12692         --
12693         IF org_unit_id IS NULL THEN
12694                 RAISE EXCEPTION 'Org unit id argument is NULL';
12695         ELSE
12696                 --
12697                 -- Validate the org unit
12698                 --
12699                 SELECT TRUE
12700                 INTO org_found
12701                 FROM actor.org_unit
12702                 WHERE id = org_unit_id;
12703                 --
12704                 IF org_found IS NULL THEN
12705                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12706                 END IF;
12707         END IF;
12708         --
12709         -- Loop over the propagable funds to identify the details
12710         -- from the old fund plus the id of the new one, if it exists.
12711         --
12712         FOR roll_fund in
12713         SELECT
12714             oldf.id AS old_fund,
12715             oldf.org,
12716             oldf.name,
12717             oldf.currency_type,
12718             oldf.code,
12719                 oldf.rollover,
12720             newf.id AS new_fund_id
12721         FROM
12722         acq.fund AS oldf
12723         LEFT JOIN acq.fund AS newf
12724                 ON ( oldf.code = newf.code )
12725         WHERE
12726                     oldf.org = org_unit_id
12727                 and oldf.year = old_year
12728                 and oldf.propagate
12729         and newf.year = new_year
12730         LOOP
12731                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12732                 --
12733                 IF roll_fund.new_fund_id IS NULL THEN
12734                         --
12735                         -- The old fund hasn't been propagated yet.  Propagate it now.
12736                         --
12737                         INSERT INTO acq.fund (
12738                                 org,
12739                                 name,
12740                                 year,
12741                                 currency_type,
12742                                 code,
12743                                 rollover,
12744                                 propagate,
12745                                 balance_warning_percent,
12746                                 balance_stop_percent
12747                         ) VALUES (
12748                                 roll_fund.org,
12749                                 roll_fund.name,
12750                                 new_year,
12751                                 roll_fund.currency_type,
12752                                 roll_fund.code,
12753                                 true,
12754                                 true,
12755                                 roll_fund.balance_warning_percent,
12756                                 roll_fund.balance_stop_percent
12757                         )
12758                         RETURNING id INTO new_fund;
12759                 ELSE
12760                         new_fund = roll_fund.new_fund_id;
12761                 END IF;
12762                 --
12763                 -- Determine the amount to transfer
12764                 --
12765                 SELECT amount
12766                 INTO xfer_amount
12767                 FROM acq.fund_spent_balance
12768                 WHERE fund = roll_fund.old_fund;
12769                 --
12770                 IF xfer_amount <> 0 THEN
12771                         IF roll_fund.rollover THEN
12772                                 --
12773                                 -- Transfer balance from old fund to new
12774                                 --
12775                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12776                                 --
12777                                 PERFORM acq.transfer_fund(
12778                                         roll_fund.old_fund,
12779                                         xfer_amount,
12780                                         new_fund,
12781                                         xfer_amount,
12782                                         user_id,
12783                                         'Rollover'
12784                                 );
12785                         ELSE
12786                                 --
12787                                 -- Transfer balance from old fund to the void
12788                                 --
12789                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12790                                 --
12791                                 PERFORM acq.transfer_fund(
12792                                         roll_fund.old_fund,
12793                                         xfer_amount,
12794                                         NULL,
12795                                         NULL,
12796                                         user_id,
12797                                         'Rollover'
12798                                 );
12799                         END IF;
12800                 END IF;
12801                 --
12802                 IF roll_fund.rollover THEN
12803                         --
12804                         -- Move any lineitems from the old fund to the new one
12805                         -- where the associated debit is an encumbrance.
12806                         --
12807                         -- Any other tables tying expenditure details to funds should
12808                         -- receive similar treatment.  At this writing there are none.
12809                         --
12810                         UPDATE acq.lineitem_detail
12811                         SET fund = new_fund
12812                         WHERE
12813                         fund = roll_fund.old_fund -- this condition may be redundant
12814                         AND fund_debit in
12815                         (
12816                                 SELECT id
12817                                 FROM acq.fund_debit
12818                                 WHERE
12819                                 fund = roll_fund.old_fund
12820                                 AND encumbrance
12821                         );
12822                         --
12823                         -- Move encumbrance debits from the old fund to the new fund
12824                         --
12825                         UPDATE acq.fund_debit
12826                         SET fund = new_fund
12827                         wHERE
12828                                 fund = roll_fund.old_fund
12829                                 AND encumbrance;
12830                 END IF;
12831                 --
12832                 -- Mark old fund as inactive, now that we've closed it
12833                 --
12834                 UPDATE acq.fund
12835                 SET active = FALSE
12836                 WHERE id = roll_fund.old_fund;
12837         END LOOP;
12838 END;
12839 $$ LANGUAGE plpgsql;
12840
12841 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12842         old_year INTEGER,
12843         user_id INTEGER,
12844         org_unit_id INTEGER
12845 ) RETURNS VOID AS $$
12846 DECLARE
12847 --
12848 new_fund    INT;
12849 new_year    INT := old_year + 1;
12850 org_found   BOOL;
12851 xfer_amount NUMERIC;
12852 roll_fund   RECORD;
12853 deb         RECORD;
12854 detail      RECORD;
12855 --
12856 BEGIN
12857         --
12858         -- Sanity checks
12859         --
12860         IF old_year IS NULL THEN
12861                 RAISE EXCEPTION 'Input year argument is NULL';
12862     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12863         RAISE EXCEPTION 'Input year is out of range';
12864         END IF;
12865         --
12866         IF user_id IS NULL THEN
12867                 RAISE EXCEPTION 'Input user id argument is NULL';
12868         END IF;
12869         --
12870         IF org_unit_id IS NULL THEN
12871                 RAISE EXCEPTION 'Org unit id argument is NULL';
12872         ELSE
12873                 --
12874                 -- Validate the org unit
12875                 --
12876                 SELECT TRUE
12877                 INTO org_found
12878                 FROM actor.org_unit
12879                 WHERE id = org_unit_id;
12880                 --
12881                 IF org_found IS NULL THEN
12882                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12883                 END IF;
12884         END IF;
12885         --
12886         -- Loop over the propagable funds to identify the details
12887         -- from the old fund plus the id of the new one, if it exists.
12888         --
12889         FOR roll_fund in
12890         SELECT
12891             oldf.id AS old_fund,
12892             oldf.org,
12893             oldf.name,
12894             oldf.currency_type,
12895             oldf.code,
12896                 oldf.rollover,
12897             newf.id AS new_fund_id
12898         FROM
12899         acq.fund AS oldf
12900         LEFT JOIN acq.fund AS newf
12901                 ON ( oldf.code = newf.code )
12902         WHERE
12903                     oldf.year = old_year
12904                 AND oldf.propagate
12905         AND newf.year = new_year
12906                 AND oldf.org in (
12907                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12908                 )
12909         LOOP
12910                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12911                 --
12912                 IF roll_fund.new_fund_id IS NULL THEN
12913                         --
12914                         -- The old fund hasn't been propagated yet.  Propagate it now.
12915                         --
12916                         INSERT INTO acq.fund (
12917                                 org,
12918                                 name,
12919                                 year,
12920                                 currency_type,
12921                                 code,
12922                                 rollover,
12923                                 propagate,
12924                                 balance_warning_percent,
12925                                 balance_stop_percent
12926                         ) VALUES (
12927                                 roll_fund.org,
12928                                 roll_fund.name,
12929                                 new_year,
12930                                 roll_fund.currency_type,
12931                                 roll_fund.code,
12932                                 true,
12933                                 true,
12934                                 roll_fund.balance_warning_percent,
12935                                 roll_fund.balance_stop_percent
12936                         )
12937                         RETURNING id INTO new_fund;
12938                 ELSE
12939                         new_fund = roll_fund.new_fund_id;
12940                 END IF;
12941                 --
12942                 -- Determine the amount to transfer
12943                 --
12944                 SELECT amount
12945                 INTO xfer_amount
12946                 FROM acq.fund_spent_balance
12947                 WHERE fund = roll_fund.old_fund;
12948                 --
12949                 IF xfer_amount <> 0 THEN
12950                         IF roll_fund.rollover THEN
12951                                 --
12952                                 -- Transfer balance from old fund to new
12953                                 --
12954                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12955                                 --
12956                                 PERFORM acq.transfer_fund(
12957                                         roll_fund.old_fund,
12958                                         xfer_amount,
12959                                         new_fund,
12960                                         xfer_amount,
12961                                         user_id,
12962                                         'Rollover'
12963                                 );
12964                         ELSE
12965                                 --
12966                                 -- Transfer balance from old fund to the void
12967                                 --
12968                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12969                                 --
12970                                 PERFORM acq.transfer_fund(
12971                                         roll_fund.old_fund,
12972                                         xfer_amount,
12973                                         NULL,
12974                                         NULL,
12975                                         user_id,
12976                                         'Rollover'
12977                                 );
12978                         END IF;
12979                 END IF;
12980                 --
12981                 IF roll_fund.rollover THEN
12982                         --
12983                         -- Move any lineitems from the old fund to the new one
12984                         -- where the associated debit is an encumbrance.
12985                         --
12986                         -- Any other tables tying expenditure details to funds should
12987                         -- receive similar treatment.  At this writing there are none.
12988                         --
12989                         UPDATE acq.lineitem_detail
12990                         SET fund = new_fund
12991                         WHERE
12992                         fund = roll_fund.old_fund -- this condition may be redundant
12993                         AND fund_debit in
12994                         (
12995                                 SELECT id
12996                                 FROM acq.fund_debit
12997                                 WHERE
12998                                 fund = roll_fund.old_fund
12999                                 AND encumbrance
13000                         );
13001                         --
13002                         -- Move encumbrance debits from the old fund to the new fund
13003                         --
13004                         UPDATE acq.fund_debit
13005                         SET fund = new_fund
13006                         wHERE
13007                                 fund = roll_fund.old_fund
13008                                 AND encumbrance;
13009                 END IF;
13010                 --
13011                 -- Mark old fund as inactive, now that we've closed it
13012                 --
13013                 UPDATE acq.fund
13014                 SET active = FALSE
13015                 WHERE id = roll_fund.old_fund;
13016         END LOOP;
13017 END;
13018 $$ LANGUAGE plpgsql;
13019
13020 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
13021     SELECT regexp_replace($1, ',', '', 'g');
13022 $$ LANGUAGE SQL STRICT IMMUTABLE;
13023
13024 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
13025     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
13026 $$ LANGUAGE SQL STRICT IMMUTABLE;
13027
13028 CREATE TABLE acq.distribution_formula_application (
13029     id BIGSERIAL PRIMARY KEY,
13030     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
13031     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
13032     formula INT NOT NULL
13033         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
13034     lineitem INT NOT NULL
13035         REFERENCES acq.lineitem( id )
13036                 ON DELETE CASCADE
13037                 DEFERRABLE INITIALLY DEFERRED
13038 );
13039
13040 CREATE INDEX acqdfa_df_idx
13041     ON acq.distribution_formula_application(formula);
13042 CREATE INDEX acqdfa_li_idx
13043     ON acq.distribution_formula_application(lineitem);
13044 CREATE INDEX acqdfa_creator_idx
13045     ON acq.distribution_formula_application(creator);
13046
13047 CREATE TABLE acq.user_request_type (
13048     id      SERIAL  PRIMARY KEY,
13049     label   TEXT    NOT NULL UNIQUE -- i18n-ize
13050 );
13051
13052 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
13053 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
13054 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
13055 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
13056 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
13057
13058 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
13059
13060 CREATE TABLE acq.cancel_reason (
13061         id            SERIAL            PRIMARY KEY,
13062         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
13063                                         DEFERRABLE INITIALLY DEFERRED,
13064         label         TEXT              NOT NULL,
13065         description   TEXT              NOT NULL,
13066         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
13067         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
13068 );
13069
13070 -- Reserve ids 1-999 for stock reasons
13071 -- Reserve ids 1000-1999 for EDI reasons
13072 -- 2000+ are available for staff to create
13073
13074 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
13075
13076 CREATE TABLE acq.user_request (
13077     id                  SERIAL  PRIMARY KEY,
13078     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
13079     hold                BOOL    NOT NULL DEFAULT TRUE,
13080
13081     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
13082     holdable_formats    TEXT,           -- nullable, for use in hold creation
13083     phone_notify        TEXT,
13084     email_notify        BOOL    NOT NULL DEFAULT TRUE,
13085     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
13086     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
13087     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
13088     need_before         TIMESTAMPTZ,    -- don't create holds after this
13089     max_fee             TEXT,
13090
13091     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
13092     isxn                TEXT,
13093     title               TEXT,
13094     volume              TEXT,
13095     author              TEXT,
13096     article_title       TEXT,
13097     article_pages       TEXT,
13098     publisher           TEXT,
13099     location            TEXT,
13100     pubdate             TEXT,
13101     mentioned           TEXT,
13102     other_info          TEXT,
13103         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
13104                                              DEFERRABLE INITIALLY DEFERRED
13105 );
13106
13107 CREATE TABLE acq.lineitem_alert_text (
13108         id               SERIAL         PRIMARY KEY,
13109         code             TEXT           NOT NULL,
13110         description      TEXT,
13111         owning_lib       INT            NOT NULL
13112                                         REFERENCES actor.org_unit(id)
13113                                         DEFERRABLE INITIALLY DEFERRED,
13114         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
13115 );
13116
13117 ALTER TABLE acq.lineitem_note
13118         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
13119                                          DEFERRABLE INITIALLY DEFERRED;
13120
13121 -- add ON DELETE CASCADE clause
13122
13123 ALTER TABLE acq.lineitem_note
13124         DROP CONSTRAINT lineitem_note_lineitem_fkey;
13125
13126 ALTER TABLE acq.lineitem_note
13127         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13128                 ON DELETE CASCADE
13129                 DEFERRABLE INITIALLY DEFERRED;
13130
13131 ALTER TABLE acq.lineitem_note
13132         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13133
13134 CREATE TABLE acq.invoice_method (
13135     code    TEXT    PRIMARY KEY,
13136     name    TEXT    NOT NULL -- i18n-ize
13137 );
13138 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
13139 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
13140
13141 CREATE TABLE acq.invoice_payment_method (
13142         code      TEXT     PRIMARY KEY,
13143         name      TEXT     NOT NULL
13144 );
13145
13146 CREATE TABLE acq.invoice (
13147     id             SERIAL      PRIMARY KEY,
13148     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
13149     provider       INT         NOT NULL REFERENCES acq.provider (id),
13150     shipper        INT         NOT NULL REFERENCES acq.provider (id),
13151     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
13152     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
13153     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
13154     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
13155         payment_auth   TEXT,
13156         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
13157                                    DEFERRABLE INITIALLY DEFERRED,
13158         note           TEXT,
13159     complete       BOOL        NOT NULL DEFAULT FALSE,
13160     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
13161 );
13162
13163 CREATE TABLE acq.invoice_entry (
13164     id              SERIAL      PRIMARY KEY,
13165     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
13166     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13167     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
13168     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
13169     phys_item_count INT, -- and how many did staff count
13170     note            TEXT,
13171     billed_per_item BOOL,
13172     cost_billed     NUMERIC(8,2),
13173     actual_cost     NUMERIC(8,2),
13174         amount_paid     NUMERIC (8,2)
13175 );
13176
13177 CREATE TABLE acq.invoice_item_type (
13178     code    TEXT    PRIMARY KEY,
13179     name    TEXT    NOT NULL, -- i18n-ize
13180         prorate BOOL    NOT NULL DEFAULT FALSE
13181 );
13182
13183 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
13184 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
13185 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
13186 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
13187 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
13188 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
13189
13190 CREATE TABLE acq.po_item (
13191         id              SERIAL      PRIMARY KEY,
13192         purchase_order  INT         REFERENCES acq.purchase_order (id)
13193                                     ON UPDATE CASCADE ON DELETE SET NULL
13194                                     DEFERRABLE INITIALLY DEFERRED,
13195         fund_debit      INT         REFERENCES acq.fund_debit (id)
13196                                     DEFERRABLE INITIALLY DEFERRED,
13197         inv_item_type   TEXT        NOT NULL
13198                                     REFERENCES acq.invoice_item_type (code)
13199                                     DEFERRABLE INITIALLY DEFERRED,
13200         title           TEXT,
13201         author          TEXT,
13202         note            TEXT,
13203         estimated_cost  NUMERIC(8,2),
13204         fund            INT         REFERENCES acq.fund (id)
13205                                     DEFERRABLE INITIALLY DEFERRED,
13206         target          BIGINT
13207 );
13208
13209 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
13210     id              SERIAL      PRIMARY KEY,
13211     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
13212     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13213     fund_debit      INT         REFERENCES acq.fund_debit (id),
13214     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
13215     title           TEXT,
13216     author          TEXT,
13217     note            TEXT,
13218     cost_billed     NUMERIC(8,2),
13219     actual_cost     NUMERIC(8,2),
13220     fund            INT         REFERENCES acq.fund (id)
13221                                 DEFERRABLE INITIALLY DEFERRED,
13222     amount_paid     NUMERIC (8,2),
13223     po_item         INT         REFERENCES acq.po_item (id)
13224                                 DEFERRABLE INITIALLY DEFERRED,
13225     target          BIGINT
13226 );
13227
13228 CREATE TABLE acq.edi_message (
13229     id               SERIAL          PRIMARY KEY,
13230     account          INTEGER         REFERENCES acq.edi_account(id)
13231                                      DEFERRABLE INITIALLY DEFERRED,
13232     remote_file      TEXT,
13233     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
13234     translate_time   TIMESTAMPTZ,
13235     process_time     TIMESTAMPTZ,
13236     error_time       TIMESTAMPTZ,
13237     status           TEXT            NOT NULL DEFAULT 'new'
13238                                      CONSTRAINT status_value CHECK
13239                                      ( status IN (
13240                                         'new',          -- needs to be translated
13241                                         'translated',   -- needs to be processed
13242                                         'trans_error',  -- error in translation step
13243                                         'processed',    -- needs to have remote_file deleted
13244                                         'proc_error',   -- error in processing step
13245                                         'delete_error', -- error in deletion
13246                                         'retry',        -- need to retry
13247                                         'complete'      -- done
13248                                      )),
13249     edi              TEXT,
13250     jedi             TEXT,
13251     error            TEXT,
13252     purchase_order   INT             REFERENCES acq.purchase_order
13253                                      DEFERRABLE INITIALLY DEFERRED,
13254     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
13255                                      CHECK ( message_type IN (
13256                                         'ORDERS',
13257                                         'ORDRSP',
13258                                         'INVOIC',
13259                                         'OSTENQ',
13260                                         'OSTRPT'
13261                                      ))
13262 );
13263
13264 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
13265
13266 ALTER TABLE acq.provider_address
13267         ADD COLUMN fax_phone TEXT;
13268
13269 ALTER TABLE acq.provider_contact_address
13270         ADD COLUMN fax_phone TEXT;
13271
13272 CREATE TABLE acq.provider_note (
13273     id      SERIAL              PRIMARY KEY,
13274     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
13275     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13276     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13277     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13278     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13279     value       TEXT            NOT NULL
13280 );
13281 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
13282 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
13283 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
13284
13285 -- For each fund: the total allocation from all sources, in the
13286 -- currency of the fund (or 0 if there are no allocations)
13287
13288 CREATE VIEW acq.all_fund_allocation_total AS
13289 SELECT
13290     f.id AS fund,
13291     COALESCE( SUM( a.amount * acq.exchange_ratio(
13292         s.currency_type, f.currency_type))::numeric(100,2), 0 )
13293     AS amount
13294 FROM
13295     acq.fund f
13296         LEFT JOIN acq.fund_allocation a
13297             ON a.fund = f.id
13298         LEFT JOIN acq.funding_source s
13299             ON a.funding_source = s.id
13300 GROUP BY
13301     f.id;
13302
13303 -- For every fund: the total encumbrances (or 0 if none),
13304 -- in the currency of the fund.
13305
13306 CREATE VIEW acq.all_fund_encumbrance_total AS
13307 SELECT
13308         f.id AS fund,
13309         COALESCE( encumb.amount, 0 ) AS amount
13310 FROM
13311         acq.fund AS f
13312                 LEFT JOIN (
13313                         SELECT
13314                                 fund,
13315                                 sum( amount ) AS amount
13316                         FROM
13317                                 acq.fund_debit
13318                         WHERE
13319                                 encumbrance
13320                         GROUP BY fund
13321                 ) AS encumb
13322                         ON f.id = encumb.fund;
13323
13324 -- For every fund: the total spent (or 0 if none),
13325 -- in the currency of the fund.
13326
13327 CREATE VIEW acq.all_fund_spent_total AS
13328 SELECT
13329     f.id AS fund,
13330     COALESCE( spent.amount, 0 ) AS amount
13331 FROM
13332     acq.fund AS f
13333         LEFT JOIN (
13334             SELECT
13335                 fund,
13336                 sum( amount ) AS amount
13337             FROM
13338                 acq.fund_debit
13339             WHERE
13340                 NOT encumbrance
13341             GROUP BY fund
13342         ) AS spent
13343             ON f.id = spent.fund;
13344
13345 -- For each fund: the amount not yet spent, in the currency
13346 -- of the fund.  May include encumbrances.
13347
13348 CREATE VIEW acq.all_fund_spent_balance AS
13349 SELECT
13350         c.fund,
13351         c.amount - d.amount AS amount
13352 FROM acq.all_fund_allocation_total c
13353     LEFT JOIN acq.all_fund_spent_total d USING (fund);
13354
13355 -- For each fund: the amount neither spent nor encumbered,
13356 -- in the currency of the fund
13357
13358 CREATE VIEW acq.all_fund_combined_balance AS
13359 SELECT
13360      a.fund,
13361      a.amount - COALESCE( c.amount, 0 ) AS amount
13362 FROM
13363      acq.all_fund_allocation_total a
13364         LEFT OUTER JOIN (
13365             SELECT
13366                 fund,
13367                 SUM( amount ) AS amount
13368             FROM
13369                 acq.fund_debit
13370             GROUP BY
13371                 fund
13372         ) AS c USING ( fund );
13373
13374 CREATE OR REPLACE FUNCTION actor.usr_merge( src_usr INT, dest_usr INT, del_addrs BOOLEAN, del_cards BOOLEAN, deactivate_cards BOOLEAN ) RETURNS VOID AS $$
13375 DECLARE
13376         suffix TEXT;
13377         bucket_row RECORD;
13378         picklist_row RECORD;
13379         queue_row RECORD;
13380         folder_row RECORD;
13381 BEGIN
13382
13383     -- do some initial cleanup 
13384     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
13385     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
13386     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
13387
13388     -- actor.*
13389     IF del_cards THEN
13390         DELETE FROM actor.card where usr = src_usr;
13391     ELSE
13392         IF deactivate_cards THEN
13393             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
13394         END IF;
13395         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
13396     END IF;
13397
13398
13399     IF del_addrs THEN
13400         DELETE FROM actor.usr_address WHERE usr = src_usr;
13401     ELSE
13402         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
13403     END IF;
13404
13405     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
13406     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
13407     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
13408     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
13409     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
13410
13411     -- permission.*
13412     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
13413     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
13414     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
13415     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
13416
13417
13418     -- container.*
13419         
13420         -- For each *_bucket table: transfer every bucket belonging to src_usr
13421         -- into the custody of dest_usr.
13422         --
13423         -- In order to avoid colliding with an existing bucket owned by
13424         -- the destination user, append the source user's id (in parenthesese)
13425         -- to the name.  If you still get a collision, add successive
13426         -- spaces to the name and keep trying until you succeed.
13427         --
13428         FOR bucket_row in
13429                 SELECT id, name
13430                 FROM   container.biblio_record_entry_bucket
13431                 WHERE  owner = src_usr
13432         LOOP
13433                 suffix := ' (' || src_usr || ')';
13434                 LOOP
13435                         BEGIN
13436                                 UPDATE  container.biblio_record_entry_bucket
13437                                 SET     owner = dest_usr, name = name || suffix
13438                                 WHERE   id = bucket_row.id;
13439                         EXCEPTION WHEN unique_violation THEN
13440                                 suffix := suffix || ' ';
13441                                 CONTINUE;
13442                         END;
13443                         EXIT;
13444                 END LOOP;
13445         END LOOP;
13446
13447         FOR bucket_row in
13448                 SELECT id, name
13449                 FROM   container.call_number_bucket
13450                 WHERE  owner = src_usr
13451         LOOP
13452                 suffix := ' (' || src_usr || ')';
13453                 LOOP
13454                         BEGIN
13455                                 UPDATE  container.call_number_bucket
13456                                 SET     owner = dest_usr, name = name || suffix
13457                                 WHERE   id = bucket_row.id;
13458                         EXCEPTION WHEN unique_violation THEN
13459                                 suffix := suffix || ' ';
13460                                 CONTINUE;
13461                         END;
13462                         EXIT;
13463                 END LOOP;
13464         END LOOP;
13465
13466         FOR bucket_row in
13467                 SELECT id, name
13468                 FROM   container.copy_bucket
13469                 WHERE  owner = src_usr
13470         LOOP
13471                 suffix := ' (' || src_usr || ')';
13472                 LOOP
13473                         BEGIN
13474                                 UPDATE  container.copy_bucket
13475                                 SET     owner = dest_usr, name = name || suffix
13476                                 WHERE   id = bucket_row.id;
13477                         EXCEPTION WHEN unique_violation THEN
13478                                 suffix := suffix || ' ';
13479                                 CONTINUE;
13480                         END;
13481                         EXIT;
13482                 END LOOP;
13483         END LOOP;
13484
13485         FOR bucket_row in
13486                 SELECT id, name
13487                 FROM   container.user_bucket
13488                 WHERE  owner = src_usr
13489         LOOP
13490                 suffix := ' (' || src_usr || ')';
13491                 LOOP
13492                         BEGIN
13493                                 UPDATE  container.user_bucket
13494                                 SET     owner = dest_usr, name = name || suffix
13495                                 WHERE   id = bucket_row.id;
13496                         EXCEPTION WHEN unique_violation THEN
13497                                 suffix := suffix || ' ';
13498                                 CONTINUE;
13499                         END;
13500                         EXIT;
13501                 END LOOP;
13502         END LOOP;
13503
13504         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13505
13506     -- vandelay.*
13507         -- transfer queues the same way we transfer buckets (see above)
13508         FOR queue_row in
13509                 SELECT id, name
13510                 FROM   vandelay.queue
13511                 WHERE  owner = src_usr
13512         LOOP
13513                 suffix := ' (' || src_usr || ')';
13514                 LOOP
13515                         BEGIN
13516                                 UPDATE  vandelay.queue
13517                                 SET     owner = dest_usr, name = name || suffix
13518                                 WHERE   id = queue_row.id;
13519                         EXCEPTION WHEN unique_violation THEN
13520                                 suffix := suffix || ' ';
13521                                 CONTINUE;
13522                         END;
13523                         EXIT;
13524                 END LOOP;
13525         END LOOP;
13526
13527     -- money.*
13528     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13529     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13530     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13531     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13532     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13533
13534     -- action.*
13535     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13536     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13537     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13538
13539     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13540     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13541     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13542     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13543
13544     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13545     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13546     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13547     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13548     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13549
13550     -- acq.*
13551     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13552         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13553
13554         -- transfer picklists the same way we transfer buckets (see above)
13555         FOR picklist_row in
13556                 SELECT id, name
13557                 FROM   acq.picklist
13558                 WHERE  owner = src_usr
13559         LOOP
13560                 suffix := ' (' || src_usr || ')';
13561                 LOOP
13562                         BEGIN
13563                                 UPDATE  acq.picklist
13564                                 SET     owner = dest_usr, name = name || suffix
13565                                 WHERE   id = picklist_row.id;
13566                         EXCEPTION WHEN unique_violation THEN
13567                                 suffix := suffix || ' ';
13568                                 CONTINUE;
13569                         END;
13570                         EXIT;
13571                 END LOOP;
13572         END LOOP;
13573
13574     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13575     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13576     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13577     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13578     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13579     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13580     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13581     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13582
13583     -- asset.*
13584     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13585     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13586     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13587     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13588     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13589     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13590
13591     -- serial.*
13592     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13593     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13594
13595     -- reporter.*
13596     -- It's not uncommon to define the reporter schema in a replica 
13597     -- DB only, so don't assume these tables exist in the write DB.
13598     BEGIN
13599         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13600     EXCEPTION WHEN undefined_table THEN
13601         -- do nothing
13602     END;
13603     BEGIN
13604         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13605     EXCEPTION WHEN undefined_table THEN
13606         -- do nothing
13607     END;
13608     BEGIN
13609         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13610     EXCEPTION WHEN undefined_table THEN
13611         -- do nothing
13612     END;
13613     BEGIN
13614                 -- transfer folders the same way we transfer buckets (see above)
13615                 FOR folder_row in
13616                         SELECT id, name
13617                         FROM   reporter.template_folder
13618                         WHERE  owner = src_usr
13619                 LOOP
13620                         suffix := ' (' || src_usr || ')';
13621                         LOOP
13622                                 BEGIN
13623                                         UPDATE  reporter.template_folder
13624                                         SET     owner = dest_usr, name = name || suffix
13625                                         WHERE   id = folder_row.id;
13626                                 EXCEPTION WHEN unique_violation THEN
13627                                         suffix := suffix || ' ';
13628                                         CONTINUE;
13629                                 END;
13630                                 EXIT;
13631                         END LOOP;
13632                 END LOOP;
13633     EXCEPTION WHEN undefined_table THEN
13634         -- do nothing
13635     END;
13636     BEGIN
13637                 -- transfer folders the same way we transfer buckets (see above)
13638                 FOR folder_row in
13639                         SELECT id, name
13640                         FROM   reporter.report_folder
13641                         WHERE  owner = src_usr
13642                 LOOP
13643                         suffix := ' (' || src_usr || ')';
13644                         LOOP
13645                                 BEGIN
13646                                         UPDATE  reporter.report_folder
13647                                         SET     owner = dest_usr, name = name || suffix
13648                                         WHERE   id = folder_row.id;
13649                                 EXCEPTION WHEN unique_violation THEN
13650                                         suffix := suffix || ' ';
13651                                         CONTINUE;
13652                                 END;
13653                                 EXIT;
13654                         END LOOP;
13655                 END LOOP;
13656     EXCEPTION WHEN undefined_table THEN
13657         -- do nothing
13658     END;
13659     BEGIN
13660                 -- transfer folders the same way we transfer buckets (see above)
13661                 FOR folder_row in
13662                         SELECT id, name
13663                         FROM   reporter.output_folder
13664                         WHERE  owner = src_usr
13665                 LOOP
13666                         suffix := ' (' || src_usr || ')';
13667                         LOOP
13668                                 BEGIN
13669                                         UPDATE  reporter.output_folder
13670                                         SET     owner = dest_usr, name = name || suffix
13671                                         WHERE   id = folder_row.id;
13672                                 EXCEPTION WHEN unique_violation THEN
13673                                         suffix := suffix || ' ';
13674                                         CONTINUE;
13675                                 END;
13676                                 EXIT;
13677                         END LOOP;
13678                 END LOOP;
13679     EXCEPTION WHEN undefined_table THEN
13680         -- do nothing
13681     END;
13682
13683     -- Finally, delete the source user
13684     DELETE FROM actor.usr WHERE id = src_usr;
13685
13686 END;
13687 $$ LANGUAGE plpgsql;
13688
13689 -- The "add" trigger functions should protect against existing NULLed values, just in case
13690 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13691 BEGIN
13692     IF NOT NEW.voided THEN
13693         UPDATE  money.materialized_billable_xact_summary
13694           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13695             last_billing_ts = NEW.billing_ts,
13696             last_billing_note = NEW.note,
13697             last_billing_type = NEW.billing_type,
13698             balance_owed = balance_owed + NEW.amount
13699           WHERE id = NEW.xact;
13700     END IF;
13701
13702     RETURN NEW;
13703 END;
13704 $$ LANGUAGE PLPGSQL;
13705
13706 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13707 BEGIN
13708     IF NOT NEW.voided THEN
13709         UPDATE  money.materialized_billable_xact_summary
13710           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13711             last_payment_ts = NEW.payment_ts,
13712             last_payment_note = NEW.note,
13713             last_payment_type = TG_ARGV[0],
13714             balance_owed = balance_owed - NEW.amount
13715           WHERE id = NEW.xact;
13716     END IF;
13717
13718     RETURN NEW;
13719 END;
13720 $$ LANGUAGE PLPGSQL;
13721
13722 -- Refresh the mat view with the corrected underlying view
13723 TRUNCATE money.materialized_billable_xact_summary;
13724 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13725
13726 -- Now redefine the view as a window onto the materialized view
13727 CREATE OR REPLACE VIEW money.billable_xact_summary AS
13728     SELECT * FROM money.materialized_billable_xact_summary;
13729
13730 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13731     user_id    IN INTEGER,
13732     perm_code  IN TEXT
13733 )
13734 RETURNS SETOF INTEGER AS $$
13735 --
13736 -- Return a set of all the org units for which a given user has a given
13737 -- permission, granted directly (not through inheritance from a parent
13738 -- org unit).
13739 --
13740 -- The permissions apply to a minimum depth of the org unit hierarchy,
13741 -- for the org unit(s) to which the user is assigned.  (They also apply
13742 -- to the subordinates of those org units, but we don't report the
13743 -- subordinates here.)
13744 --
13745 -- For purposes of this function, the permission.usr_work_ou_map table
13746 -- defines which users belong to which org units.  I.e. we ignore the
13747 -- home_ou column of actor.usr.
13748 --
13749 -- The result set may contain duplicates, which should be eliminated
13750 -- by a DISTINCT clause.
13751 --
13752 DECLARE
13753     b_super       BOOLEAN;
13754     n_perm        INTEGER;
13755     n_min_depth   INTEGER;
13756     n_work_ou     INTEGER;
13757     n_curr_ou     INTEGER;
13758     n_depth       INTEGER;
13759     n_curr_depth  INTEGER;
13760 BEGIN
13761     --
13762     -- Check for superuser
13763     --
13764     SELECT INTO b_super
13765         super_user
13766     FROM
13767         actor.usr
13768     WHERE
13769         id = user_id;
13770     --
13771     IF NOT FOUND THEN
13772         return;             -- No user?  No permissions.
13773     ELSIF b_super THEN
13774         --
13775         -- Super user has all permissions everywhere
13776         --
13777         FOR n_work_ou IN
13778             SELECT
13779                 id
13780             FROM
13781                 actor.org_unit
13782             WHERE
13783                 parent_ou IS NULL
13784         LOOP
13785             RETURN NEXT n_work_ou;
13786         END LOOP;
13787         RETURN;
13788     END IF;
13789     --
13790     -- Translate the permission name
13791     -- to a numeric permission id
13792     --
13793     SELECT INTO n_perm
13794         id
13795     FROM
13796         permission.perm_list
13797     WHERE
13798         code = perm_code;
13799     --
13800     IF NOT FOUND THEN
13801         RETURN;               -- No such permission
13802     END IF;
13803     --
13804     -- Find the highest-level org unit (i.e. the minimum depth)
13805     -- to which the permission is applied for this user
13806     --
13807     -- This query is modified from the one in permission.usr_perms().
13808     --
13809     SELECT INTO n_min_depth
13810         min( depth )
13811     FROM    (
13812         SELECT depth
13813           FROM permission.usr_perm_map upm
13814          WHERE upm.usr = user_id
13815            AND (upm.perm = n_perm OR upm.perm = -1)
13816                     UNION
13817         SELECT  gpm.depth
13818           FROM  permission.grp_perm_map gpm
13819           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13820             AND gpm.grp IN (
13821                SELECT   (permission.grp_ancestors(
13822                     (SELECT profile FROM actor.usr WHERE id = user_id)
13823                 )).id
13824             )
13825                     UNION
13826         SELECT  p.depth
13827           FROM  permission.grp_perm_map p
13828           WHERE (p.perm = n_perm OR p.perm = -1)
13829             AND p.grp IN (
13830                 SELECT (permission.grp_ancestors(m.grp)).id
13831                 FROM   permission.usr_grp_map m
13832                 WHERE  m.usr = user_id
13833             )
13834     ) AS x;
13835     --
13836     IF NOT FOUND THEN
13837         RETURN;                -- No such permission for this user
13838     END IF;
13839     --
13840     -- Identify the org units to which the user is assigned.  Note that
13841     -- we pay no attention to the home_ou column in actor.usr.
13842     --
13843     FOR n_work_ou IN
13844         SELECT
13845             work_ou
13846         FROM
13847             permission.usr_work_ou_map
13848         WHERE
13849             usr = user_id
13850     LOOP            -- For each org unit to which the user is assigned
13851         --
13852         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13853         -- We take it on faith that this depth agrees with the actual hierarchy
13854         -- defined in actor.org_unit.
13855         --
13856         SELECT INTO n_depth
13857             type.depth
13858         FROM
13859             actor.org_unit_type type
13860                 INNER JOIN actor.org_unit ou
13861                     ON ( ou.ou_type = type.id )
13862         WHERE
13863             ou.id = n_work_ou;
13864         --
13865         IF NOT FOUND THEN
13866             CONTINUE;        -- Maybe raise exception?
13867         END IF;
13868         --
13869         -- Compare the depth of the work org unit to the
13870         -- minimum depth, and branch accordingly
13871         --
13872         IF n_depth = n_min_depth THEN
13873             --
13874             -- The org unit is at the right depth, so return it.
13875             --
13876             RETURN NEXT n_work_ou;
13877         ELSIF n_depth > n_min_depth THEN
13878             --
13879             -- Traverse the org unit tree toward the root,
13880             -- until you reach the minimum depth determined above
13881             --
13882             n_curr_depth := n_depth;
13883             n_curr_ou := n_work_ou;
13884             WHILE n_curr_depth > n_min_depth LOOP
13885                 SELECT INTO n_curr_ou
13886                     parent_ou
13887                 FROM
13888                     actor.org_unit
13889                 WHERE
13890                     id = n_curr_ou;
13891                 --
13892                 IF FOUND THEN
13893                     n_curr_depth := n_curr_depth - 1;
13894                 ELSE
13895                     --
13896                     -- This can happen only if the hierarchy defined in
13897                     -- actor.org_unit is corrupted, or out of sync with
13898                     -- the depths defined in actor.org_unit_type.
13899                     -- Maybe we should raise an exception here, instead
13900                     -- of silently ignoring the problem.
13901                     --
13902                     n_curr_ou = NULL;
13903                     EXIT;
13904                 END IF;
13905             END LOOP;
13906             --
13907             IF n_curr_ou IS NOT NULL THEN
13908                 RETURN NEXT n_curr_ou;
13909             END IF;
13910         ELSE
13911             --
13912             -- The permission applies only at a depth greater than the work org unit.
13913             -- Use connectby() to find all dependent org units at the specified depth.
13914             --
13915             FOR n_curr_ou IN
13916                 SELECT ou::INTEGER
13917                 FROM connectby(
13918                         'actor.org_unit',         -- table name
13919                         'id',                     -- key column
13920                         'parent_ou',              -- recursive foreign key
13921                         n_work_ou::TEXT,          -- id of starting point
13922                         (n_min_depth - n_depth)   -- max depth to search, relative
13923                     )                             --   to starting point
13924                     AS t(
13925                         ou text,            -- dependent org unit
13926                         parent_ou text,     -- (ignore)
13927                         level int           -- depth relative to starting point
13928                     )
13929                 WHERE
13930                     level = n_min_depth - n_depth
13931             LOOP
13932                 RETURN NEXT n_curr_ou;
13933             END LOOP;
13934         END IF;
13935         --
13936     END LOOP;
13937     --
13938     RETURN;
13939     --
13940 END;
13941 $$ LANGUAGE 'plpgsql';
13942
13943 ALTER TABLE acq.purchase_order
13944         ADD COLUMN cancel_reason INT
13945                 REFERENCES acq.cancel_reason( id )
13946             DEFERRABLE INITIALLY DEFERRED,
13947         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13948
13949 -- Build the history table and lifecycle view
13950 -- for acq.purchase_order
13951
13952 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
13953
13954 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
13955
13956 ALTER TABLE acq.lineitem
13957         ADD COLUMN cancel_reason INT
13958                 REFERENCES acq.cancel_reason( id )
13959             DEFERRABLE INITIALLY DEFERRED,
13960         ADD COLUMN estimated_unit_price NUMERIC,
13961         ADD COLUMN claim_policy INT
13962                 REFERENCES acq.claim_policy
13963                 DEFERRABLE INITIALLY DEFERRED,
13964         ALTER COLUMN eg_bib_id SET DATA TYPE bigint;
13965
13966 -- Build the history table and lifecycle view
13967 -- for acq.lineitem
13968
13969 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
13970 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
13971
13972 ALTER TABLE acq.lineitem_detail
13973         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13974                                             DEFERRABLE INITIALLY DEFERRED;
13975
13976 ALTER TABLE acq.lineitem_detail
13977         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13978
13979 ALTER TABLE acq.lineitem_detail
13980         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13981                 ON DELETE CASCADE
13982                 DEFERRABLE INITIALLY DEFERRED;
13983
13984 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13985
13986 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13987         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
13988
13989 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13990         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
13991
13992 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13993
13994     use MARC::Record;
13995     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13996     use strict;
13997
13998     my $target_xml = shift;
13999     my $source_xml = shift;
14000     my $field_spec = shift;
14001
14002     my $target_r = MARC::Record->new_from_xml( $target_xml );
14003     my $source_r = MARC::Record->new_from_xml( $source_xml );
14004
14005     return $target_xml unless ($target_r && $source_r);
14006
14007     my @field_list = split(',', $field_spec);
14008
14009     my %fields;
14010     for my $f (@field_list) {
14011         $f =~ s/^\s*//; $f =~ s/\s*$//;
14012         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14013             my $field = $1;
14014             $field =~ s/\s+//;
14015             my $sf = $2;
14016             $sf =~ s/\s+//;
14017             my $match = $3;
14018             $match =~ s/^\s*//; $match =~ s/\s*$//;
14019             $fields{$field} = { sf => [ split('', $sf) ] };
14020             if ($match) {
14021                 my ($msf,$mre) = split('~', $match);
14022                 if (length($msf) > 0 and length($mre) > 0) {
14023                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14024                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14025                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14026                 }
14027             }
14028         }
14029     }
14030
14031     for my $f ( keys %fields) {
14032         if ( @{$fields{$f}{sf}} ) {
14033             for my $from_field ($source_r->field( $f )) {
14034                 my @tos = $target_r->field( $f );
14035                 if (!@tos) {
14036                     my @new_fields = map { $_->clone } $source_r->field( $f );
14037                     $target_r->insert_fields_ordered( @new_fields );
14038                 } else {
14039                     for my $to_field (@tos) {
14040                         if (exists($fields{$f}{match})) {
14041                             next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14042                         }
14043                         my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
14044                         $to_field->add_subfields( @new_sf );
14045                     }
14046                 }
14047             }
14048         } else {
14049             my @new_fields = map { $_->clone } $source_r->field( $f );
14050             $target_r->insert_fields_ordered( @new_fields );
14051         }
14052     }
14053
14054     $target_xml = $target_r->as_xml_record;
14055     $target_xml =~ s/^<\?.+?\?>$//mo;
14056     $target_xml =~ s/\n//sgo;
14057     $target_xml =~ s/>\s+</></sgo;
14058
14059     return $target_xml;
14060
14061 $_$ LANGUAGE PLPERLU;
14062
14063 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14064
14065     use MARC::Record;
14066     use MARC::File::XML (BinaryEncoding => 'UTF-8');
14067     use strict;
14068
14069     my $xml = shift;
14070     my $r = MARC::Record->new_from_xml( $xml );
14071
14072     return $xml unless ($r);
14073
14074     my $field_spec = shift;
14075     my @field_list = split(',', $field_spec);
14076
14077     my %fields;
14078     for my $f (@field_list) {
14079         $f =~ s/^\s*//; $f =~ s/\s*$//;
14080         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14081             my $field = $1;
14082             $field =~ s/\s+//;
14083             my $sf = $2;
14084             $sf =~ s/\s+//;
14085             my $match = $3;
14086             $match =~ s/^\s*//; $match =~ s/\s*$//;
14087             $fields{$field} = { sf => [ split('', $sf) ] };
14088             if ($match) {
14089                 my ($msf,$mre) = split('~', $match);
14090                 if (length($msf) > 0 and length($mre) > 0) {
14091                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14092                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14093                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14094                 }
14095             }
14096         }
14097     }
14098
14099     for my $f ( keys %fields) {
14100         for my $to_field ($r->field( $f )) {
14101             if (exists($fields{$f}{match})) {
14102                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14103             }
14104
14105             if ( @{$fields{$f}{sf}} ) {
14106                 $to_field->delete_subfield(code => $fields{$f}{sf});
14107             } else {
14108                 $r->delete_field( $to_field );
14109             }
14110         }
14111     }
14112
14113     $xml = $r->as_xml_record;
14114     $xml =~ s/^<\?.+?\?>$//mo;
14115     $xml =~ s/\n//sgo;
14116     $xml =~ s/>\s+</></sgo;
14117
14118     return $xml;
14119
14120 $_$ LANGUAGE PLPERLU;
14121
14122 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14123     SELECT vandelay.add_field( vandelay.strip_field( $1, $3), $2, $3 );
14124 $_$ LANGUAGE SQL;
14125
14126 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14127     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
14128 $_$ LANGUAGE SQL;
14129
14130 CREATE VIEW action.unfulfilled_hold_max_loop AS
14131         SELECT  hold,
14132                 max(count) AS max
14133         FROM    action.unfulfilled_hold_loops
14134         GROUP BY 1;
14135
14136 ALTER TABLE acq.lineitem_attr
14137         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
14138
14139 ALTER TABLE acq.lineitem_attr
14140         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
14141                 ON DELETE CASCADE
14142                 DEFERRABLE INITIALLY DEFERRED;
14143
14144 ALTER TABLE acq.po_note
14145         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
14146
14147 CREATE TABLE vandelay.merge_profile (
14148     id              BIGSERIAL   PRIMARY KEY,
14149     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
14150     name            TEXT        NOT NULL,
14151     add_spec        TEXT,
14152     replace_spec    TEXT,
14153     strip_spec      TEXT,
14154     preserve_spec   TEXT,
14155     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
14156     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))
14157 );
14158
14159 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
14160 DECLARE
14161     attr        RECORD;
14162     attr_def    RECORD;
14163     eg_rec      RECORD;
14164     id_value    TEXT;
14165     exact_id    BIGINT;
14166 BEGIN
14167
14168     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
14169
14170     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
14171
14172     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
14173         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
14174
14175         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
14176             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
14177             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
14178             IF exact_id IS NOT NULL THEN
14179                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
14180             END IF;
14181         END IF;
14182     END IF;
14183
14184     IF exact_id IS NULL THEN
14185         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
14186
14187             -- All numbers? check for an id match
14188             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
14189                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
14190                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14191                 END LOOP;
14192             END IF;
14193
14194             -- Looks like an ISBN? check for an isbn match
14195             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
14196                 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
14197                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
14198                     IF FOUND THEN
14199                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
14200                     END IF;
14201                 END LOOP;
14202
14203                 -- subcheck for isbn-as-tcn
14204                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
14205                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14206                 END LOOP;
14207             END IF;
14208
14209             -- check for an OCLC tcn_value match
14210             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
14211                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
14212                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14213                 END LOOP;
14214             END IF;
14215
14216             -- check for a direct tcn_value match
14217             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
14218                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14219             END LOOP;
14220
14221             -- check for a direct item barcode match
14222             FOR eg_rec IN
14223                     SELECT  DISTINCT b.*
14224                       FROM  biblio.record_entry b
14225                             JOIN asset.call_number cn ON (cn.record = b.id)
14226                             JOIN asset.copy cp ON (cp.call_number = cn.id)
14227                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
14228             LOOP
14229                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14230             END LOOP;
14231
14232         END LOOP;
14233     END IF;
14234
14235     RETURN NULL;
14236 END;
14237 $func$ LANGUAGE PLPGSQL;
14238
14239 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 $_$
14240     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
14241 $_$ LANGUAGE SQL;
14242
14243 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
14244 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
14245 DECLARE
14246     output              vandelay.compile_profile%ROWTYPE;
14247     profile             vandelay.merge_profile%ROWTYPE;
14248     profile_tmpl        TEXT;
14249     profile_tmpl_owner  TEXT;
14250     add_rule            TEXT := '';
14251     strip_rule          TEXT := '';
14252     replace_rule        TEXT := '';
14253     preserve_rule       TEXT := '';
14254
14255 BEGIN
14256
14257     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
14258     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
14259
14260     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
14261         SELECT  p.* INTO profile
14262           FROM  vandelay.merge_profile p
14263                 JOIN actor.org_unit u ON (u.id = p.owner)
14264           WHERE p.name = profile_tmpl
14265                 AND u.shortname = profile_tmpl_owner;
14266
14267         IF profile.id IS NOT NULL THEN
14268             add_rule := COALESCE(profile.add_spec,'');
14269             strip_rule := COALESCE(profile.strip_spec,'');
14270             replace_rule := COALESCE(profile.replace_spec,'');
14271             preserve_rule := COALESCE(profile.preserve_spec,'');
14272         END IF;
14273     END IF;
14274
14275     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),','),'');
14276     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),','),'');
14277     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),','),'');
14278     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),','),'');
14279
14280     output.add_rule := BTRIM(add_rule,',');
14281     output.replace_rule := BTRIM(replace_rule,',');
14282     output.strip_rule := BTRIM(strip_rule,',');
14283     output.preserve_rule := BTRIM(preserve_rule,',');
14284
14285     RETURN output;
14286 END;
14287 $_$ LANGUAGE PLPGSQL;
14288
14289 -- Template-based marc munging functions
14290 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14291 DECLARE
14292     merge_profile   vandelay.merge_profile%ROWTYPE;
14293     dyn_profile     vandelay.compile_profile%ROWTYPE;
14294     editor_string   TEXT;
14295     editor_id       INT;
14296     source_marc     TEXT;
14297     target_marc     TEXT;
14298     eg_marc         TEXT;
14299     replace_rule    TEXT;
14300     match_count     INT;
14301 BEGIN
14302
14303     SELECT  b.marc INTO eg_marc
14304       FROM  biblio.record_entry b
14305       WHERE b.id = eg_id
14306       LIMIT 1;
14307
14308     IF eg_marc IS NULL OR v_marc IS NULL THEN
14309         -- RAISE NOTICE 'no marc for template or bib record';
14310         RETURN FALSE;
14311     END IF;
14312
14313     dyn_profile := vandelay.compile_profile( v_marc );
14314
14315     IF merge_profile_id IS NOT NULL THEN
14316         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14317         IF FOUND THEN
14318             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14319             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14320             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14321             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14322         END IF;
14323     END IF;
14324
14325     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14326         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14327         RETURN FALSE;
14328     END IF;
14329
14330     IF dyn_profile.replace_rule <> '' THEN
14331         source_marc = v_marc;
14332         target_marc = eg_marc;
14333         replace_rule = dyn_profile.replace_rule;
14334     ELSE
14335         source_marc = eg_marc;
14336         target_marc = v_marc;
14337         replace_rule = dyn_profile.preserve_rule;
14338     END IF;
14339
14340     UPDATE  biblio.record_entry
14341       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14342       WHERE id = eg_id;
14343
14344     IF NOT FOUND THEN
14345         -- RAISE NOTICE 'update of biblio.record_entry failed';
14346         RETURN FALSE;
14347     END IF;
14348
14349     RETURN TRUE;
14350
14351 END;
14352 $$ LANGUAGE PLPGSQL;
14353
14354 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
14355     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
14356 $$ LANGUAGE SQL;
14357
14358 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14359 DECLARE
14360     merge_profile   vandelay.merge_profile%ROWTYPE;
14361     dyn_profile     vandelay.compile_profile%ROWTYPE;
14362     editor_string   TEXT;
14363     editor_id       INT;
14364     source_marc     TEXT;
14365     target_marc     TEXT;
14366     eg_marc         TEXT;
14367     v_marc          TEXT;
14368     replace_rule    TEXT;
14369     match_count     INT;
14370 BEGIN
14371
14372     SELECT  q.marc INTO v_marc
14373       FROM  vandelay.queued_record q
14374             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
14375       LIMIT 1;
14376
14377     IF v_marc IS NULL THEN
14378         -- RAISE NOTICE 'no marc for vandelay or bib record';
14379         RETURN FALSE;
14380     END IF;
14381
14382     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
14383         UPDATE  vandelay.queued_bib_record
14384           SET   imported_as = eg_id,
14385                 import_time = NOW()
14386           WHERE id = import_id;
14387
14388         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
14389
14390         IF editor_string IS NOT NULL AND editor_string <> '' THEN
14391             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
14392
14393             IF editor_id IS NULL THEN
14394                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
14395             END IF;
14396
14397             IF editor_id IS NOT NULL THEN
14398                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
14399             END IF;
14400         END IF;
14401
14402         RETURN TRUE;
14403     END IF;
14404
14405     -- RAISE NOTICE 'update of biblio.record_entry failed';
14406
14407     RETURN FALSE;
14408
14409 END;
14410 $$ LANGUAGE PLPGSQL;
14411
14412 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14413 DECLARE
14414     eg_id           BIGINT;
14415     match_count     INT;
14416     match_attr      vandelay.bib_attr_definition%ROWTYPE;
14417 BEGIN
14418
14419     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
14420
14421     IF FOUND THEN
14422         -- RAISE NOTICE 'already imported, cannot auto-overlay'
14423         RETURN FALSE;
14424     END IF;
14425
14426     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
14427
14428     IF match_count <> 1 THEN
14429         -- RAISE NOTICE 'not an exact match';
14430         RETURN FALSE;
14431     END IF;
14432
14433     SELECT  d.* INTO match_attr
14434       FROM  vandelay.bib_attr_definition d
14435             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
14436             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
14437       WHERE m.queued_record = import_id;
14438
14439     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
14440         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
14441         RETURN FALSE;
14442     END IF;
14443
14444     SELECT  m.eg_record INTO eg_id
14445       FROM  vandelay.bib_match m
14446       WHERE m.queued_record = import_id
14447       LIMIT 1;
14448
14449     IF eg_id IS NULL THEN
14450         RETURN FALSE;
14451     END IF;
14452
14453     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
14454 END;
14455 $$ LANGUAGE PLPGSQL;
14456
14457 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14458 DECLARE
14459     queued_record   vandelay.queued_bib_record%ROWTYPE;
14460 BEGIN
14461
14462     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
14463
14464         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14465             RETURN NEXT queued_record.id;
14466         END IF;
14467
14468     END LOOP;
14469
14470     RETURN;
14471
14472 END;
14473 $$ LANGUAGE PLPGSQL;
14474
14475 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14476     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14477 $$ LANGUAGE SQL;
14478
14479 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14480 DECLARE
14481     merge_profile   vandelay.merge_profile%ROWTYPE;
14482     dyn_profile     vandelay.compile_profile%ROWTYPE;
14483     source_marc     TEXT;
14484     target_marc     TEXT;
14485     eg_marc         TEXT;
14486     v_marc          TEXT;
14487     replace_rule    TEXT;
14488     match_count     INT;
14489 BEGIN
14490
14491     SELECT  b.marc INTO eg_marc
14492       FROM  authority.record_entry b
14493             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14494       LIMIT 1;
14495
14496     SELECT  q.marc INTO v_marc
14497       FROM  vandelay.queued_record q
14498             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14499       LIMIT 1;
14500
14501     IF eg_marc IS NULL OR v_marc IS NULL THEN
14502         -- RAISE NOTICE 'no marc for vandelay or authority record';
14503         RETURN FALSE;
14504     END IF;
14505
14506     dyn_profile := vandelay.compile_profile( v_marc );
14507
14508     IF merge_profile_id IS NOT NULL THEN
14509         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14510         IF FOUND THEN
14511             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14512             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14513             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14514             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14515         END IF;
14516     END IF;
14517
14518     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14519         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14520         RETURN FALSE;
14521     END IF;
14522
14523     IF dyn_profile.replace_rule <> '' THEN
14524         source_marc = v_marc;
14525         target_marc = eg_marc;
14526         replace_rule = dyn_profile.replace_rule;
14527     ELSE
14528         source_marc = eg_marc;
14529         target_marc = v_marc;
14530         replace_rule = dyn_profile.preserve_rule;
14531     END IF;
14532
14533     UPDATE  authority.record_entry
14534       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14535       WHERE id = eg_id;
14536
14537     IF FOUND THEN
14538         UPDATE  vandelay.queued_authority_record
14539           SET   imported_as = eg_id,
14540                 import_time = NOW()
14541           WHERE id = import_id;
14542         RETURN TRUE;
14543     END IF;
14544
14545     -- RAISE NOTICE 'update of authority.record_entry failed';
14546
14547     RETURN FALSE;
14548
14549 END;
14550 $$ LANGUAGE PLPGSQL;
14551
14552 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14553 DECLARE
14554     eg_id           BIGINT;
14555     match_count     INT;
14556 BEGIN
14557     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14558
14559     IF match_count <> 1 THEN
14560         -- RAISE NOTICE 'not an exact match';
14561         RETURN FALSE;
14562     END IF;
14563
14564     SELECT  m.eg_record INTO eg_id
14565       FROM  vandelay.authority_match m
14566       WHERE m.queued_record = import_id
14567       LIMIT 1;
14568
14569     IF eg_id IS NULL THEN
14570         RETURN FALSE;
14571     END IF;
14572
14573     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14574 END;
14575 $$ LANGUAGE PLPGSQL;
14576
14577 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14578 DECLARE
14579     queued_record   vandelay.queued_authority_record%ROWTYPE;
14580 BEGIN
14581
14582     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14583
14584         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14585             RETURN NEXT queued_record.id;
14586         END IF;
14587
14588     END LOOP;
14589
14590     RETURN;
14591
14592 END;
14593 $$ LANGUAGE PLPGSQL;
14594
14595 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14596     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14597 $$ LANGUAGE SQL;
14598
14599 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14600 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14601 DECLARE
14602     eg_tcn          TEXT;
14603     eg_tcn_source   TEXT;
14604     output          vandelay.tcn_data%ROWTYPE;
14605 BEGIN
14606
14607     -- 001/003
14608     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14609     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14610
14611         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14612         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14613             eg_tcn_source := 'System Local';
14614         END IF;
14615
14616         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14617
14618         IF NOT FOUND THEN
14619             output.used := FALSE;
14620         ELSE
14621             output.used := TRUE;
14622         END IF;
14623
14624         output.tcn := eg_tcn;
14625         output.tcn_source := eg_tcn_source;
14626         RETURN NEXT output;
14627
14628     END IF;
14629
14630     -- 901 ab
14631     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14632     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14633
14634         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14635         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14636             eg_tcn_source := 'System Local';
14637         END IF;
14638
14639         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14640
14641         IF NOT FOUND THEN
14642             output.used := FALSE;
14643         ELSE
14644             output.used := TRUE;
14645         END IF;
14646
14647         output.tcn := eg_tcn;
14648         output.tcn_source := eg_tcn_source;
14649         RETURN NEXT output;
14650
14651     END IF;
14652
14653     -- 039 ab
14654     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14655     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14656
14657         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14658         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14659             eg_tcn_source := 'System Local';
14660         END IF;
14661
14662         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14663
14664         IF NOT FOUND THEN
14665             output.used := FALSE;
14666         ELSE
14667             output.used := TRUE;
14668         END IF;
14669
14670         output.tcn := eg_tcn;
14671         output.tcn_source := eg_tcn_source;
14672         RETURN NEXT output;
14673
14674     END IF;
14675
14676     -- 020 a
14677     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14678     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14679
14680         eg_tcn_source := 'ISBN';
14681
14682         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14683
14684         IF NOT FOUND THEN
14685             output.used := FALSE;
14686         ELSE
14687             output.used := TRUE;
14688         END IF;
14689
14690         output.tcn := eg_tcn;
14691         output.tcn_source := eg_tcn_source;
14692         RETURN NEXT output;
14693
14694     END IF;
14695
14696     -- 022 a
14697     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14698     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14699
14700         eg_tcn_source := 'ISSN';
14701
14702         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14703
14704         IF NOT FOUND THEN
14705             output.used := FALSE;
14706         ELSE
14707             output.used := TRUE;
14708         END IF;
14709
14710         output.tcn := eg_tcn;
14711         output.tcn_source := eg_tcn_source;
14712         RETURN NEXT output;
14713
14714     END IF;
14715
14716     -- 010 a
14717     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14718     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14719
14720         eg_tcn_source := 'LCCN';
14721
14722         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14723
14724         IF NOT FOUND THEN
14725             output.used := FALSE;
14726         ELSE
14727             output.used := TRUE;
14728         END IF;
14729
14730         output.tcn := eg_tcn;
14731         output.tcn_source := eg_tcn_source;
14732         RETURN NEXT output;
14733
14734     END IF;
14735
14736     -- 035 a
14737     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14738     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14739
14740         eg_tcn_source := 'System Legacy';
14741
14742         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14743
14744         IF NOT FOUND THEN
14745             output.used := FALSE;
14746         ELSE
14747             output.used := TRUE;
14748         END IF;
14749
14750         output.tcn := eg_tcn;
14751         output.tcn_source := eg_tcn_source;
14752         RETURN NEXT output;
14753
14754     END IF;
14755
14756     RETURN;
14757 END;
14758 $_$ LANGUAGE PLPGSQL;
14759
14760 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14761
14762 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);
14763
14764 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
14765
14766 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14767 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14768 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14769 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14770 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14771
14772 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14773 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14774 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14775 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14776
14777 ALTER TABLE metabib.series_field_entry
14778         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14779                 REFERENCES biblio.record_entry (id)
14780                 ON DELETE CASCADE
14781                 DEFERRABLE INITIALLY DEFERRED;
14782
14783 ALTER TABLE metabib.series_field_entry
14784         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14785                 REFERENCES config.metabib_field (id)
14786                 ON DELETE CASCADE
14787                 DEFERRABLE INITIALLY DEFERRED;
14788
14789 CREATE TABLE acq.claim_policy_action (
14790         id              SERIAL       PRIMARY KEY,
14791         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14792                                  ON DELETE CASCADE
14793                                      DEFERRABLE INITIALLY DEFERRED,
14794         action_interval INTERVAL     NOT NULL,
14795         action          INT          NOT NULL REFERENCES acq.claim_event_type
14796                                      DEFERRABLE INITIALLY DEFERRED,
14797         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14798 );
14799
14800 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14801 DECLARE
14802     value       TEXT;
14803     atype       TEXT;
14804     prov        INT;
14805     pos         INT;
14806     adef        RECORD;
14807     xpath_string    TEXT;
14808 BEGIN
14809     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14810  
14811         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14812  
14813         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14814             IF (atype = 'lineitem_provider_attr_definition') THEN
14815                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14816                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14817             END IF;
14818  
14819             IF (atype = 'lineitem_provider_attr_definition') THEN
14820                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14821             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14822                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14823             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14824                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14825             END IF;
14826  
14827             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14828  
14829             pos := 1;
14830  
14831             LOOP
14832                 SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14833  
14834                 IF (value IS NOT NULL AND value <> '') THEN
14835                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14836                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14837                 ELSE
14838                     EXIT;
14839                 END IF;
14840  
14841                 pos := pos + 1;
14842             END LOOP;
14843  
14844         END IF;
14845  
14846     END LOOP;
14847  
14848     RETURN NULL;
14849 END;
14850 $function$ LANGUAGE PLPGSQL;
14851
14852 UPDATE config.metabib_field SET label = name;
14853 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14854
14855 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_field_class_fkey
14856          FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14857
14858 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14859
14860 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14861
14862 CREATE TABLE config.metabib_search_alias (
14863     alias       TEXT    PRIMARY KEY,
14864     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14865     field       INT     REFERENCES config.metabib_field (id)
14866 );
14867
14868 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14869 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14870 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14871 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14872 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14873 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14874 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14875 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14876
14877 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14878 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14879 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14880 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14881 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14882 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14883 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14884 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14885 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14886 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14887 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14888 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14889 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14890
14891 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14892 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14893 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14894 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14895 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14896 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14897 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14898 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14899
14900 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14901 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14902 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14903 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14904 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14905 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
14906
14907 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14908 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14909 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14910
14911 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14912 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;
14913 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;
14914 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;
14915 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;
14916
14917 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14918 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14919 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14920 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14921
14922 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14923 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14924 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14925 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14926 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14927 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14928 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14929 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14930 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14931 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14932 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14933 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14934 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14935 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14936
14937 CREATE TABLE asset.opac_visible_copies (
14938   id        BIGINT primary key, -- copy id
14939   record    BIGINT,
14940   circ_lib  INTEGER
14941 );
14942 COMMENT ON TABLE asset.opac_visible_copies IS $$
14943 Materialized view of copies that are visible in the OPAC, used by
14944 search.query_parser_fts() to speed up OPAC visibility checks on large
14945 databases.  Contents are maintained by a set of triggers.
14946 $$;
14947 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
14948
14949 CREATE OR REPLACE FUNCTION search.query_parser_fts (
14950
14951     param_search_ou INT,
14952     param_depth     INT,
14953     param_query     TEXT,
14954     param_statuses  INT[],
14955     param_locations INT[],
14956     param_offset    INT,
14957     param_check     INT,
14958     param_limit     INT,
14959     metarecord      BOOL,
14960     staff           BOOL
14961  
14962 ) RETURNS SETOF search.search_result AS $func$
14963 DECLARE
14964
14965     current_res         search.search_result%ROWTYPE;
14966     search_org_list     INT[];
14967
14968     check_limit         INT;
14969     core_limit          INT;
14970     core_offset         INT;
14971     tmp_int             INT;
14972
14973     core_result         RECORD;
14974     core_cursor         REFCURSOR;
14975     core_rel_query      TEXT;
14976
14977     total_count         INT := 0;
14978     check_count         INT := 0;
14979     deleted_count       INT := 0;
14980     visible_count       INT := 0;
14981     excluded_count      INT := 0;
14982
14983 BEGIN
14984
14985     check_limit := COALESCE( param_check, 1000 );
14986     core_limit  := COALESCE( param_limit, 25000 );
14987     core_offset := COALESCE( param_offset, 0 );
14988
14989     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
14990
14991     IF param_search_ou > 0 THEN
14992         IF param_depth IS NOT NULL THEN
14993             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
14994         ELSE
14995             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
14996         END IF;
14997     ELSIF param_search_ou < 0 THEN
14998         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
14999     ELSIF param_search_ou = 0 THEN
15000         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
15001     END IF;
15002
15003     OPEN core_cursor FOR EXECUTE param_query;
15004
15005     LOOP
15006
15007         FETCH core_cursor INTO core_result;
15008         EXIT WHEN NOT FOUND;
15009         EXIT WHEN total_count >= core_limit;
15010
15011         total_count := total_count + 1;
15012
15013         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
15014
15015         check_count := check_count + 1;
15016
15017         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15018         IF NOT FOUND THEN
15019             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
15020             deleted_count := deleted_count + 1;
15021             CONTINUE;
15022         END IF;
15023
15024         PERFORM 1
15025           FROM  biblio.record_entry b
15026                 JOIN config.bib_source s ON (b.source = s.id)
15027           WHERE s.transcendant
15028                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15029
15030         IF FOUND THEN
15031             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
15032             visible_count := visible_count + 1;
15033
15034             current_res.id = core_result.id;
15035             current_res.rel = core_result.rel;
15036
15037             tmp_int := 1;
15038             IF metarecord THEN
15039                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15040             END IF;
15041
15042             IF tmp_int = 1 THEN
15043                 current_res.record = core_result.records[1];
15044             ELSE
15045                 current_res.record = NULL;
15046             END IF;
15047
15048             RETURN NEXT current_res;
15049
15050             CONTINUE;
15051         END IF;
15052
15053         PERFORM 1
15054           FROM  asset.call_number cn
15055                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
15056                 JOIN asset.uri uri ON (map.uri = uri.id)
15057           WHERE NOT cn.deleted
15058                 AND cn.label = '##URI##'
15059                 AND uri.active
15060                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
15061                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15062                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15063           LIMIT 1;
15064
15065         IF FOUND THEN
15066             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
15067             visible_count := visible_count + 1;
15068
15069             current_res.id = core_result.id;
15070             current_res.rel = core_result.rel;
15071
15072             tmp_int := 1;
15073             IF metarecord THEN
15074                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15075             END IF;
15076
15077             IF tmp_int = 1 THEN
15078                 current_res.record = core_result.records[1];
15079             ELSE
15080                 current_res.record = NULL;
15081             END IF;
15082
15083             RETURN NEXT current_res;
15084
15085             CONTINUE;
15086         END IF;
15087
15088         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
15089
15090             PERFORM 1
15091               FROM  asset.call_number cn
15092                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15093               WHERE NOT cn.deleted
15094                     AND NOT cp.deleted
15095                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
15096                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15097                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15098               LIMIT 1;
15099
15100             IF NOT FOUND THEN
15101                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
15102                 excluded_count := excluded_count + 1;
15103                 CONTINUE;
15104             END IF;
15105
15106         END IF;
15107
15108         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
15109
15110             PERFORM 1
15111               FROM  asset.call_number cn
15112                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15113               WHERE NOT cn.deleted
15114                     AND NOT cp.deleted
15115                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
15116                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15117                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15118               LIMIT 1;
15119
15120             IF NOT FOUND THEN
15121                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
15122                 excluded_count := excluded_count + 1;
15123                 CONTINUE;
15124             END IF;
15125
15126         END IF;
15127
15128         IF staff IS NULL OR NOT staff THEN
15129
15130             PERFORM 1
15131               FROM  asset.opac_visible_copies
15132               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15133                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15134               LIMIT 1;
15135
15136             IF NOT FOUND THEN
15137                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15138                 excluded_count := excluded_count + 1;
15139                 CONTINUE;
15140             END IF;
15141
15142         ELSE
15143
15144             PERFORM 1
15145               FROM  asset.call_number cn
15146                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15147                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
15148               WHERE NOT cn.deleted
15149                     AND NOT cp.deleted
15150                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15151                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15152               LIMIT 1;
15153
15154             IF NOT FOUND THEN
15155
15156                 PERFORM 1
15157                   FROM  asset.call_number cn
15158                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15159                   LIMIT 1;
15160
15161                 IF FOUND THEN
15162                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15163                     excluded_count := excluded_count + 1;
15164                     CONTINUE;
15165                 END IF;
15166
15167             END IF;
15168
15169         END IF;
15170
15171         visible_count := visible_count + 1;
15172
15173         current_res.id = core_result.id;
15174         current_res.rel = core_result.rel;
15175
15176         tmp_int := 1;
15177         IF metarecord THEN
15178             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15179         END IF;
15180
15181         IF tmp_int = 1 THEN
15182             current_res.record = core_result.records[1];
15183         ELSE
15184             current_res.record = NULL;
15185         END IF;
15186
15187         RETURN NEXT current_res;
15188
15189         IF visible_count % 1000 = 0 THEN
15190             -- RAISE NOTICE ' % visible so far ... ', visible_count;
15191         END IF;
15192
15193     END LOOP;
15194
15195     current_res.id = NULL;
15196     current_res.rel = NULL;
15197     current_res.record = NULL;
15198     current_res.total = total_count;
15199     current_res.checked = check_count;
15200     current_res.deleted = deleted_count;
15201     current_res.visible = visible_count;
15202     current_res.excluded = excluded_count;
15203
15204     CLOSE core_cursor;
15205
15206     RETURN NEXT current_res;
15207
15208 END;
15209 $func$ LANGUAGE PLPGSQL;
15210
15211 ALTER TABLE biblio.record_entry ADD COLUMN owner INT;
15212 ALTER TABLE biblio.record_entry
15213          ADD CONSTRAINT biblio_record_entry_owner_fkey FOREIGN KEY (owner)
15214          REFERENCES actor.org_unit (id)
15215          DEFERRABLE INITIALLY DEFERRED;
15216
15217 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
15218
15219 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
15220 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
15221
15222 DROP VIEW auditor.biblio_record_entry_lifecycle;
15223
15224 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
15225
15226 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
15227         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
15228 $$ LANGUAGE SQL STRICT IMMUTABLE;
15229
15230 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
15231     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
15232 $$ LANGUAGE SQL STRICT IMMUTABLE;
15233
15234 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
15235     return lc(shift);
15236 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15237
15238 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
15239     return uc(shift);
15240 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15241
15242 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
15243     use Unicode::Normalize;
15244
15245     my $x = NFD(shift);
15246     $x =~ s/\pM+//go;
15247     return $x;
15248
15249 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15250
15251 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
15252     use Unicode::Normalize;
15253
15254     my $x = NFC(shift);
15255     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
15256     return $x;
15257
15258 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15259
15260 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
15261 DECLARE
15262     setting RECORD;
15263     cur_org INT;
15264 BEGIN
15265     cur_org := org_id;
15266     LOOP
15267         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
15268         IF FOUND THEN
15269             RETURN NEXT setting;
15270         END IF;
15271         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
15272         EXIT WHEN cur_org IS NULL;
15273     END LOOP;
15274     RETURN;
15275 END;
15276 $$ LANGUAGE plpgsql STABLE;
15277
15278 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
15279 DECLARE
15280     counter INT;
15281     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
15282 BEGIN
15283
15284     SELECT  COUNT(*) INTO counter
15285       FROM  oils_xpath_table(
15286                 'id',
15287                 'marc',
15288                 'acq.lineitem',
15289                 '//*[@tag="' || tag || '"]',
15290                 'id=' || lineitem
15291             ) as t(i int,c text);
15292
15293     FOR i IN 1 .. counter LOOP
15294         FOR lida IN
15295             SELECT  *
15296               FROM  (   SELECT  id,i,t,v
15297                           FROM  oils_xpath_table(
15298                                     'id',
15299                                     'marc',
15300                                     'acq.lineitem',
15301                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
15302                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
15303                                     'id=' || lineitem
15304                                 ) as t(id int,t text,v text)
15305                     )x
15306         LOOP
15307             RETURN NEXT lida;
15308         END LOOP;
15309     END LOOP;
15310
15311     RETURN;
15312 END;
15313 $$ LANGUAGE PLPGSQL;
15314
15315 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
15316 DECLARE
15317     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
15318     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
15319     result      config.i18n_core%ROWTYPE;
15320     fallback    TEXT;
15321     keyfield    TEXT := keyclass || '.' || keycol;
15322 BEGIN
15323
15324     -- Try the full locale
15325     SELECT  * INTO result
15326       FROM  config.i18n_core
15327       WHERE fq_field = keyfield
15328             AND identity_value = keyvalue
15329             AND translation = locale;
15330
15331     -- Try just the language
15332     IF NOT FOUND THEN
15333         SELECT  * INTO result
15334           FROM  config.i18n_core
15335           WHERE fq_field = keyfield
15336                 AND identity_value = keyvalue
15337                 AND translation = language;
15338     END IF;
15339
15340     -- Fall back to the string we passed in in the first place
15341     IF NOT FOUND THEN
15342     EXECUTE
15343             'SELECT ' ||
15344                 keycol ||
15345             ' FROM ' || keytable ||
15346             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
15347                 INTO fallback;
15348         RETURN fallback;
15349     END IF;
15350
15351     RETURN result.string;
15352 END;
15353 $func$ LANGUAGE PLPGSQL STABLE;
15354
15355 SELECT auditor.create_auditor ( 'acq', 'invoice' );
15356
15357 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
15358
15359 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
15360
15361 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
15362     3, 1, 'delivered_but_lost',
15363     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
15364
15365 CREATE TABLE config.global_flag (
15366     label   TEXT    NOT NULL
15367 ) INHERITS (config.internal_flag);
15368 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
15369
15370 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
15371     VALUES (
15372         'cat.bib.use_id_for_tcn',
15373         oils_i18n_gettext(
15374             'cat.bib.use_id_for_tcn',
15375             'Cat: Use Internal ID for TCN Value',
15376             'cgf', 
15377             'label'
15378         )
15379     );
15380
15381 -- resolves performance issue noted by EG Indiana
15382
15383 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
15384
15385 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
15386
15387 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15388     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
15389 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15390     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15391 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15392     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15393 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15394     (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 );
15395 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15396     (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 );
15397 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15398     (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 );
15399 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15400     (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 );
15401 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15402     (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 );
15403 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15404     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
15405
15406 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15407  
15408
15409 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
15410
15411 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
15412 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
15413 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
15414 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
15415 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
15416 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
15417
15418 CREATE TABLE metabib.identifier_field_entry (
15419         id              BIGSERIAL       PRIMARY KEY,
15420         source          BIGINT          NOT NULL,
15421         field           INT             NOT NULL,
15422         value           TEXT            NOT NULL,
15423         index_vector    tsvector        NOT NULL
15424 );
15425 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15426         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
15427         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
15428
15429 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
15430 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
15431     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
15432 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
15433
15434 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
15435     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15436 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
15437     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15438
15439 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
15440     use Business::ISBN;
15441     use strict;
15442     use warnings;
15443
15444     # For each ISBN found in a single string containing a set of ISBNs:
15445     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
15446     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
15447
15448     my $input = shift;
15449     my $output = '';
15450
15451     foreach my $word (split(/\s/, $input)) {
15452         my $isbn = Business::ISBN->new($word);
15453
15454         # First check the checksum; if it is not valid, fix it and add the original
15455         # bad-checksum ISBN to the output
15456         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
15457             $output .= $isbn->isbn() . " ";
15458             $isbn->fix_checksum();
15459         }
15460
15461         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
15462         # and add the normalized original ISBN to the output
15463         if ($isbn && $isbn->is_valid()) {
15464             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
15465             $output .= $isbn->isbn . " ";
15466
15467             # If we successfully converted the ISBN to its counterpart, add the
15468             # converted ISBN to the output as well
15469             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15470         }
15471     }
15472     return $output if $output;
15473
15474     # If there were no valid ISBNs, just return the raw input
15475     return $input;
15476 $func$ LANGUAGE PLPERLU;
15477
15478 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15479 /*
15480  * Copyright (C) 2010 Merrimack Valley Library Consortium
15481  * Jason Stephenson <jstephenson@mvlc.org>
15482  * Copyright (C) 2010 Laurentian University
15483  * Dan Scott <dscott@laurentian.ca>
15484  *
15485  * The translate_isbn1013 function takes an input ISBN and returns the
15486  * following in a single space-delimited string if the input ISBN is valid:
15487  *   - The normalized input ISBN (hyphens stripped)
15488  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15489  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15490  */
15491 $$;
15492
15493 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15494 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15495 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15496 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15497 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15498 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15499
15500 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15501         'ISBN 10/13 conversion',
15502         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15503         'translate_isbn1013',
15504         0
15505 );
15506
15507 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15508         'Replace',
15509         'Replace all occurences of first parameter in the string with the second parameter.',
15510         'replace',
15511         2
15512 );
15513
15514 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15515     SELECT  m.id, i.id, 1
15516       FROM  config.metabib_field m,
15517             config.index_normalizer i
15518       WHERE i.func IN ('first_word')
15519             AND m.id IN (18);
15520
15521 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15522     SELECT  m.id, i.id, 2
15523       FROM  config.metabib_field m,
15524             config.index_normalizer i
15525       WHERE i.func IN ('translate_isbn1013')
15526             AND m.id IN (18);
15527
15528 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15529     SELECT  m.id, i.id, $$['-','']$$
15530       FROM  config.metabib_field m,
15531             config.index_normalizer i
15532       WHERE i.func IN ('replace')
15533             AND m.id IN (19);
15534
15535 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15536     SELECT  m.id, i.id, $$[' ','']$$
15537       FROM  config.metabib_field m,
15538             config.index_normalizer i
15539       WHERE i.func IN ('replace')
15540             AND m.id IN (19);
15541
15542 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15543
15544 UPDATE  config.metabib_field_index_norm_map
15545   SET   params = REPLACE(params,E'\'','"')
15546   WHERE params IS NOT NULL AND params <> '';
15547
15548 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15549
15550 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15551
15552 ALTER TABLE config.circ_modifier
15553         ADD COLUMN avg_wait_time INTERVAL;
15554
15555 --CREATE TABLE actor.usr_password_reset (
15556 --  id SERIAL PRIMARY KEY,
15557 --  uuid TEXT NOT NULL, 
15558 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15559 --  request_time TIMESTAMP NOT NULL DEFAULT NOW(), 
15560 --  has_been_reset BOOL NOT NULL DEFAULT false
15561 --);
15562 --COMMENT ON TABLE actor.usr_password_reset IS $$
15563 --/*
15564 -- * Copyright (C) 2010 Laurentian University
15565 -- * Dan Scott <dscott@laurentian.ca>
15566 -- *
15567 -- * Self-serve password reset requests
15568 -- *
15569 -- * ****
15570 -- *
15571 -- * This program is free software; you can redistribute it and/or
15572 -- * modify it under the terms of the GNU General Public License
15573 -- * as published by the Free Software Foundation; either version 2
15574 -- * of the License, or (at your option) any later version.
15575 -- *
15576 -- * This program is distributed in the hope that it will be useful,
15577 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15578 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15579 -- * GNU General Public License for more details.
15580 -- */
15581 --$$;
15582 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15583 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15584 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15585 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15586
15587 -- Use the identifier search class tsconfig
15588 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15589 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15590     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15591     FOR EACH ROW
15592     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15593
15594 INSERT INTO config.global_flag (name,label,enabled)
15595     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15596 INSERT INTO config.global_flag (name,label,enabled)
15597     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15598
15599 -- turn a JSON scalar into an SQL TEXT value
15600 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15601     use JSON::XS;                    
15602     my $json = shift();
15603     my $txt;
15604     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15605     return undef if ($@);
15606     return $txt
15607 $f$ LANGUAGE PLPERLU;
15608
15609 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15610 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15611 DECLARE
15612     c               action.circulation%ROWTYPE;
15613     view_age        INTERVAL;
15614     usr_view_age    actor.usr_setting%ROWTYPE;
15615     usr_view_start  actor.usr_setting%ROWTYPE;
15616 BEGIN
15617     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15618     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15619
15620     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15621         -- User opted in and supplied a retention age
15622         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15623             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15624         ELSE
15625             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15626         END IF;
15627     ELSIF usr_view_start.value IS NOT NULL THEN
15628         -- User opted in
15629         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15630     ELSE
15631         -- User did not opt in
15632         RETURN;
15633     END IF;
15634
15635     FOR c IN
15636         SELECT  *
15637           FROM  action.circulation
15638           WHERE usr = usr_id
15639                 AND parent_circ IS NULL
15640                 AND xact_start > NOW() - view_age
15641           ORDER BY xact_start
15642     LOOP
15643         RETURN NEXT c;
15644     END LOOP;
15645
15646     RETURN;
15647 END;
15648 $func$ LANGUAGE PLPGSQL;
15649
15650 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15651 DECLARE
15652     usr_keep_age    actor.usr_setting%ROWTYPE;
15653     usr_keep_start  actor.usr_setting%ROWTYPE;
15654     org_keep_age    INTERVAL;
15655     org_keep_count  INT;
15656
15657     keep_age        INTERVAL;
15658
15659     target_acp      RECORD;
15660     circ_chain_head action.circulation%ROWTYPE;
15661     circ_chain_tail action.circulation%ROWTYPE;
15662
15663     purge_position  INT;
15664     count_purged    INT;
15665 BEGIN
15666
15667     count_purged := 0;
15668
15669     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15670
15671     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15672     IF org_keep_count IS NULL THEN
15673         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15674     END IF;
15675
15676     -- First, find copies with more than keep_count non-renewal circs
15677     FOR target_acp IN
15678         SELECT  target_copy,
15679                 COUNT(*) AS total_real_circs
15680           FROM  action.circulation
15681           WHERE parent_circ IS NULL
15682                 AND xact_finish IS NOT NULL
15683           GROUP BY target_copy
15684           HAVING COUNT(*) > org_keep_count
15685     LOOP
15686         purge_position := 0;
15687         -- And, for those, select circs that are finished and older than keep_age
15688         FOR circ_chain_head IN
15689             SELECT  *
15690               FROM  action.circulation
15691               WHERE target_copy = target_acp.target_copy
15692                     AND parent_circ IS NULL
15693               ORDER BY xact_start
15694         LOOP
15695
15696             -- Stop once we've purged enough circs to hit org_keep_count
15697             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15698
15699             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15700             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15701
15702             -- Now get the user settings, if any, to block purging if the user wants to keep more circs
15703             usr_keep_age.value := NULL;
15704             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15705
15706             usr_keep_start.value := NULL;
15707             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start';
15708
15709             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15710                 IF oils_json_to_text(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ) THEN
15711                     keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15712                 ELSE
15713                     keep_age := oils_json_to_text(usr_keep_age.value)::INTERVAL;
15714                 END IF;
15715             ELSIF usr_keep_start.value IS NOT NULL THEN
15716                 keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15717             ELSE
15718                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTERVAL );
15719             END IF;
15720
15721             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15722
15723             -- We've passed the purging tests, purge the circ chain starting at the end
15724             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15725             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15726                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15727                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15728             END LOOP;
15729
15730             count_purged := count_purged + 1;
15731             purge_position := purge_position + 1;
15732
15733         END LOOP;
15734     END LOOP;
15735 END;
15736 $func$ LANGUAGE PLPGSQL;
15737
15738 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15739 DECLARE
15740     h               action.hold_request%ROWTYPE;
15741     view_age        INTERVAL;
15742     view_count      INT;
15743     usr_view_count  actor.usr_setting%ROWTYPE;
15744     usr_view_age    actor.usr_setting%ROWTYPE;
15745     usr_view_start  actor.usr_setting%ROWTYPE;
15746 BEGIN
15747     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15748     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15749     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15750
15751     FOR h IN
15752         SELECT  *
15753           FROM  action.hold_request
15754           WHERE usr = usr_id
15755                 AND fulfillment_time IS NULL
15756                 AND cancel_time IS NULL
15757           ORDER BY request_time DESC
15758     LOOP
15759         RETURN NEXT h;
15760     END LOOP;
15761
15762     IF usr_view_start.value IS NULL THEN
15763         RETURN;
15764     END IF;
15765
15766     IF usr_view_age.value IS NOT NULL THEN
15767         -- User opted in and supplied a retention age
15768         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15769             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15770         ELSE
15771             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15772         END IF;
15773     ELSE
15774         -- User opted in
15775         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15776     END IF;
15777
15778     IF usr_view_count.value IS NOT NULL THEN
15779         view_count := oils_json_to_text(usr_view_count.value)::INT;
15780     ELSE
15781         view_count := 1000;
15782     END IF;
15783
15784     -- show some fulfilled/canceled holds
15785     FOR h IN
15786         SELECT  *
15787           FROM  action.hold_request
15788           WHERE usr = usr_id
15789                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15790                 AND request_time > NOW() - view_age
15791           ORDER BY request_time DESC
15792           LIMIT view_count
15793     LOOP
15794         RETURN NEXT h;
15795     END LOOP;
15796
15797     RETURN;
15798 END;
15799 $func$ LANGUAGE PLPGSQL;
15800
15801 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15802
15803 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15804
15805 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15806
15807 DROP TABLE IF EXISTS serial.issuance CASCADE;
15808
15809 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15810
15811 DROP TABLE IF EXISTS serial.subscription CASCADE;
15812
15813 CREATE TABLE asset.copy_template (
15814         id             SERIAL   PRIMARY KEY,
15815         owning_lib     INT      NOT NULL
15816                                 REFERENCES actor.org_unit (id)
15817                                 DEFERRABLE INITIALLY DEFERRED,
15818         creator        BIGINT   NOT NULL
15819                                 REFERENCES actor.usr (id)
15820                                 DEFERRABLE INITIALLY DEFERRED,
15821         editor         BIGINT   NOT NULL
15822                                 REFERENCES actor.usr (id)
15823                                 DEFERRABLE INITIALLY DEFERRED,
15824         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15825         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15826         name           TEXT     NOT NULL,
15827         -- columns above this point are attributes of the template itself
15828         -- columns after this point are attributes of the copy this template modifies/creates
15829         circ_lib       INT      REFERENCES actor.org_unit (id)
15830                                 DEFERRABLE INITIALLY DEFERRED,
15831         status         INT      REFERENCES config.copy_status (id)
15832                                 DEFERRABLE INITIALLY DEFERRED,
15833         location       INT      REFERENCES asset.copy_location (id)
15834                                 DEFERRABLE INITIALLY DEFERRED,
15835         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15836                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15837         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15838                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15839         age_protect    INT,
15840         circulate      BOOL,
15841         deposit        BOOL,
15842         ref            BOOL,
15843         holdable       BOOL,
15844         deposit_amount NUMERIC(6,2),
15845         price          NUMERIC(8,2),
15846         circ_modifier  TEXT,
15847         circ_as_type   TEXT,
15848         alert_message  TEXT,
15849         opac_visible   BOOL,
15850         floating       BOOL,
15851         mint_condition BOOL
15852 );
15853
15854 CREATE TABLE serial.subscription (
15855         id                     SERIAL       PRIMARY KEY,
15856         owning_lib             INT          NOT NULL DEFAULT 1
15857                                             REFERENCES actor.org_unit (id)
15858                                             ON DELETE SET NULL
15859                                             DEFERRABLE INITIALLY DEFERRED,
15860         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15861         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15862         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15863                                             ON DELETE SET NULL
15864                                             DEFERRABLE INITIALLY DEFERRED,
15865         expected_date_offset   INTERVAL
15866         -- acquisitions/business-side tables link to here
15867 );
15868 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
15869 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
15870
15871 --at least one distribution per org_unit holding issues
15872 CREATE TABLE serial.distribution (
15873         id                    SERIAL  PRIMARY KEY,
15874         record_entry          BIGINT  REFERENCES serial.record_entry (id)
15875                                       ON DELETE SET NULL
15876                                       DEFERRABLE INITIALLY DEFERRED,
15877         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
15878                                           summary_method IS NULL
15879                                           OR summary_method IN ( 'add_to_sre',
15880                                           'merge_with_sre', 'use_sre_only',
15881                                           'use_sdist_only')),
15882         subscription          INT     NOT NULL
15883                                       REFERENCES serial.subscription (id)
15884                                                                   ON DELETE CASCADE
15885                                                                   DEFERRABLE INITIALLY DEFERRED,
15886         holding_lib           INT     NOT NULL
15887                                       REFERENCES actor.org_unit (id)
15888                                                                   DEFERRABLE INITIALLY DEFERRED,
15889         label                 TEXT    NOT NULL,
15890         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
15891                                       DEFERRABLE INITIALLY DEFERRED,
15892         receive_unit_template INT     REFERENCES asset.copy_template (id)
15893                                       DEFERRABLE INITIALLY DEFERRED,
15894         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
15895                                       DEFERRABLE INITIALLY DEFERRED,
15896         bind_unit_template    INT     REFERENCES asset.copy_template (id)
15897                                       DEFERRABLE INITIALLY DEFERRED,
15898         unit_label_prefix     TEXT,
15899         unit_label_suffix     TEXT
15900 );
15901 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
15902 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
15903
15904 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
15905
15906 CREATE TABLE serial.stream (
15907         id              SERIAL  PRIMARY KEY,
15908         distribution    INT     NOT NULL
15909                                 REFERENCES serial.distribution (id)
15910                                 ON DELETE CASCADE
15911                                 DEFERRABLE INITIALLY DEFERRED,
15912         routing_label   TEXT
15913 );
15914 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
15915
15916 CREATE UNIQUE INDEX label_once_per_dist
15917         ON serial.stream (distribution, routing_label)
15918         WHERE routing_label IS NOT NULL;
15919
15920 CREATE TABLE serial.routing_list_user (
15921         id             SERIAL       PRIMARY KEY,
15922         stream         INT          NOT NULL
15923                                     REFERENCES serial.stream
15924                                     ON DELETE CASCADE
15925                                     DEFERRABLE INITIALLY DEFERRED,
15926         pos            INT          NOT NULL DEFAULT 1,
15927         reader         INT          REFERENCES actor.usr
15928                                     ON DELETE CASCADE
15929                                     DEFERRABLE INITIALLY DEFERRED,
15930         department     TEXT,
15931         note           TEXT,
15932         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
15933         CONSTRAINT reader_or_dept CHECK
15934         (
15935             -- Recipient is a person or a department, but not both
15936                 (reader IS NOT NULL AND department IS NULL) OR
15937                 (reader IS NULL AND department IS NOT NULL)
15938         )
15939 );
15940 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
15941 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
15942
15943 CREATE TABLE serial.caption_and_pattern (
15944         id           SERIAL       PRIMARY KEY,
15945         subscription INT          NOT NULL REFERENCES serial.subscription (id)
15946                                   ON DELETE CASCADE
15947                                   DEFERRABLE INITIALLY DEFERRED,
15948         type         TEXT         NOT NULL
15949                                   CONSTRAINT cap_type CHECK ( type in
15950                                   ( 'basic', 'supplement', 'index' )),
15951         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
15952         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
15953         end_date     TIMESTAMP WITH TIME ZONE,
15954         active       BOOL         NOT NULL DEFAULT FALSE,
15955         pattern_code TEXT         NOT NULL,       -- must contain JSON
15956         enum_1       TEXT,
15957         enum_2       TEXT,
15958         enum_3       TEXT,
15959         enum_4       TEXT,
15960         enum_5       TEXT,
15961         enum_6       TEXT,
15962         chron_1      TEXT,
15963         chron_2      TEXT,
15964         chron_3      TEXT,
15965         chron_4      TEXT,
15966         chron_5      TEXT
15967 );
15968 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
15969
15970 CREATE TABLE serial.issuance (
15971         id              SERIAL    PRIMARY KEY,
15972         creator         INT       NOT NULL
15973                                   REFERENCES actor.usr (id)
15974                                                           DEFERRABLE INITIALLY DEFERRED,
15975         editor          INT       NOT NULL
15976                                   REFERENCES actor.usr (id)
15977                                   DEFERRABLE INITIALLY DEFERRED,
15978         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15979         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15980         subscription    INT       NOT NULL
15981                                   REFERENCES serial.subscription (id)
15982                                   ON DELETE CASCADE
15983                                   DEFERRABLE INITIALLY DEFERRED,
15984         label           TEXT,
15985         date_published  TIMESTAMP WITH TIME ZONE,
15986         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
15987                               DEFERRABLE INITIALLY DEFERRED,
15988         holding_code    TEXT,
15989         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
15990                                   (
15991                                       holding_type IS NULL
15992                                       OR holding_type IN ('basic','supplement','index')
15993                                   ),
15994         holding_link_id INT
15995         -- TODO: add columns for separate enumeration/chronology values
15996 );
15997 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
15998 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
15999 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
16000
16001 CREATE TABLE serial.unit (
16002         label           TEXT,
16003         label_sort_key  TEXT,
16004         contents        TEXT    NOT NULL
16005 ) INHERITS (asset.copy);
16006 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
16007 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
16008 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
16009 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
16010 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
16011
16012 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
16013
16014 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
16015
16016 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16017
16018 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16019
16020 CREATE TABLE serial.item (
16021         id              SERIAL  PRIMARY KEY,
16022         creator         INT     NOT NULL
16023                                 REFERENCES actor.usr (id)
16024                                 DEFERRABLE INITIALLY DEFERRED,
16025         editor          INT     NOT NULL
16026                                 REFERENCES actor.usr (id)
16027                                 DEFERRABLE INITIALLY DEFERRED,
16028         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16029         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16030         issuance        INT     NOT NULL
16031                                 REFERENCES serial.issuance (id)
16032                                 ON DELETE CASCADE
16033                                 DEFERRABLE INITIALLY DEFERRED,
16034         stream          INT     NOT NULL
16035                                 REFERENCES serial.stream (id)
16036                                 ON DELETE CASCADE
16037                                 DEFERRABLE INITIALLY DEFERRED,
16038         unit            INT     REFERENCES serial.unit (id)
16039                                 ON DELETE SET NULL
16040                                 DEFERRABLE INITIALLY DEFERRED,
16041         uri             INT     REFERENCES asset.uri (id)
16042                                 ON DELETE SET NULL
16043                                 DEFERRABLE INITIALLY DEFERRED,
16044         date_expected   TIMESTAMP WITH TIME ZONE,
16045         date_received   TIMESTAMP WITH TIME ZONE,
16046         status          TEXT    CONSTRAINT valid_status CHECK (
16047                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
16048                                'Expected', 'Not Held', 'Not Published', 'Received'))
16049                             DEFAULT 'Expected',
16050         shadowed        BOOL    NOT NULL DEFAULT FALSE
16051 );
16052 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
16053 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
16054 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
16055 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
16056 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
16057 CREATE INDEX serial_item_status_idx ON serial.item (status);
16058
16059 CREATE TABLE serial.item_note (
16060         id          SERIAL  PRIMARY KEY,
16061         item        INT     NOT NULL
16062                             REFERENCES serial.item (id)
16063                             ON DELETE CASCADE
16064                             DEFERRABLE INITIALLY DEFERRED,
16065         creator     INT     NOT NULL
16066                             REFERENCES actor.usr (id)
16067                             DEFERRABLE INITIALLY DEFERRED,
16068         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
16069         pub         BOOL    NOT NULL    DEFAULT FALSE,
16070         title       TEXT    NOT NULL,
16071         value       TEXT    NOT NULL
16072 );
16073 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
16074
16075 CREATE TABLE serial.basic_summary (
16076         id                  SERIAL  PRIMARY KEY,
16077         distribution        INT     NOT NULL
16078                                     REFERENCES serial.distribution (id)
16079                                     ON DELETE CASCADE
16080                                     DEFERRABLE INITIALLY DEFERRED,
16081         generated_coverage  TEXT    NOT NULL,
16082         textual_holdings    TEXT,
16083         show_generated      BOOL    NOT NULL DEFAULT TRUE
16084 );
16085 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
16086
16087 CREATE TABLE serial.supplement_summary (
16088         id                  SERIAL  PRIMARY KEY,
16089         distribution        INT     NOT NULL
16090                                     REFERENCES serial.distribution (id)
16091                                     ON DELETE CASCADE
16092                                     DEFERRABLE INITIALLY DEFERRED,
16093         generated_coverage  TEXT    NOT NULL,
16094         textual_holdings    TEXT,
16095         show_generated      BOOL    NOT NULL DEFAULT TRUE
16096 );
16097 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
16098
16099 CREATE TABLE serial.index_summary (
16100         id                  SERIAL  PRIMARY KEY,
16101         distribution        INT     NOT NULL
16102                                     REFERENCES serial.distribution (id)
16103                                     ON DELETE CASCADE
16104                                     DEFERRABLE INITIALLY DEFERRED,
16105         generated_coverage  TEXT    NOT NULL,
16106         textual_holdings    TEXT,
16107         show_generated      BOOL    NOT NULL DEFAULT TRUE
16108 );
16109 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
16110
16111 -- 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.
16112
16113 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
16114 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16115
16116 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
16117 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;
16118
16119 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
16120 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16121
16122 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
16123 RETURNS INTEGER AS $$
16124 BEGIN
16125         RETURN EXTRACT( EPOCH FROM interval_val );
16126 END;
16127 $$ LANGUAGE plpgsql;
16128
16129 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
16130 RETURNS INTEGER AS $$
16131 BEGIN
16132         RETURN config.interval_to_seconds( interval_string::INTERVAL );
16133 END;
16134 $$ LANGUAGE plpgsql;
16135
16136 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
16137     'temp',
16138     oils_i18n_gettext(
16139         'temp',
16140         'Temporary bucket which gets deleted after use.',
16141         'cbrebt',
16142         'label'
16143     )
16144 );
16145
16146 -- 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.
16147
16148 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
16149 BEGIN
16150
16151     IF xml_is_well_formed(NEW.marc) THEN
16152         RETURN NEW;
16153     ELSE
16154         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
16155     END IF;
16156     
16157 END;
16158 $func$ LANGUAGE PLPGSQL;
16159
16160 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();
16161
16162 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();
16163
16164 ALTER TABLE serial.record_entry
16165         ALTER COLUMN marc DROP NOT NULL;
16166
16167 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
16168 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
16169 <xsl:stylesheet
16170     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
16171     xmlns:marc="http://www.loc.gov/MARC21/slim"
16172     version="1.0">
16173 <!--
16174 Copyright (C) 2010  Equinox Software, Inc.
16175 Galen Charlton <gmc@esilibrary.cOM.
16176
16177 This program is free software; you can redistribute it and/or
16178 modify it under the terms of the GNU General Public License
16179 as published by the Free Software Foundation; either version 2
16180 of the License, or (at your option) any later version.
16181
16182 This program is distributed in the hope that it will be useful,
16183 but WITHOUT ANY WARRANTY; without even the implied warranty of
16184 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16185 GNU General Public License for more details.
16186
16187 marc21_expand_880.xsl - stylesheet used during indexing to
16188                         map alternative graphical representations
16189                         of MARC fields stored in 880 fields
16190                         to the corresponding tag name and value.
16191
16192 For example, if a MARC record for a Chinese book has
16193
16194 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16195 880.00 $6 245-01/$1 $a八十三年短篇小說選
16196
16197 this stylesheet will transform it to the equivalent of
16198
16199 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16200 245.00 $6 245-01/$1 $a八十三年短篇小說選
16201
16202 -->
16203     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
16204
16205     <xsl:template match="@*|node()">
16206         <xsl:copy>
16207             <xsl:apply-templates select="@*|node()"/>
16208         </xsl:copy>
16209     </xsl:template>
16210
16211     <xsl:template match="//marc:datafield[@tag='880']">
16212         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
16213             <marc:datafield>
16214                 <xsl:attribute name="tag">
16215                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
16216                 </xsl:attribute>
16217                 <xsl:attribute name="ind1">
16218                     <xsl:value-of select="@ind1" />
16219                 </xsl:attribute>
16220                 <xsl:attribute name="ind2">
16221                     <xsl:value-of select="@ind2" />
16222                 </xsl:attribute>
16223                 <xsl:apply-templates />
16224             </marc:datafield>
16225         </xsl:if>
16226     </xsl:template>
16227     
16228 </xsl:stylesheet>$$);
16229
16230 -- Splitting the ingest trigger up into little bits
16231
16232 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
16233     flag INTEGER PRIMARY KEY
16234 ) ON COMMIT DROP;
16235 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
16236
16237 -- cause failure if either of the tables we want to drop have rows
16238 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
16239 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
16240
16241 DROP TABLE IF EXISTS asset.copy_transparency_map;
16242 DROP TABLE IF EXISTS asset.copy_transparency;
16243
16244 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
16245
16246 -- We won't necessarily use all of these, but they are here for completeness.
16247 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
16248 -- Values are the EDI code value + 1000
16249
16250 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
16251 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
16252 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
16253 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
16254 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
16255 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
16256 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
16257 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
16258 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
16259 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
16260 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
16261 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
16262 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
16263 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
16264 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
16265 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
16266 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
16267 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
16268 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
16269 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
16270 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
16271 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
16272 ('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).'),
16273 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
16274 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
16275 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
16276 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
16277 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
16278 ('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.'),
16279 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
16280 ('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.'),
16281 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
16282 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
16283 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
16284 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
16285 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
16286 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
16287 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
16288 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
16289 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
16290 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
16291 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
16292 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
16293 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
16294 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
16295 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
16296 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
16297 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
16298 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
16299 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
16300 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
16301 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
16302 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
16303 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
16304 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
16305 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
16306 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
16307 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
16308 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
16309 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
16310 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
16311 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
16312 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
16313 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
16314 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
16315 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
16316 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
16317 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
16318 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
16319 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
16320 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
16321 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
16322 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
16323 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
16324 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
16325 ('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).'),
16326 ('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).'),
16327 ('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).'),
16328 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
16329 ('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).'),
16330 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
16331 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
16332 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
16333 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
16334 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
16335 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
16336 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
16337 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
16338 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
16339 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
16340 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
16341 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
16342 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
16343 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
16344 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
16345 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
16346 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
16347 ('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.'),
16348 ('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.'),
16349 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
16350 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
16351 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
16352 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
16353 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
16354 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
16355 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
16356 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
16357 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
16358 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
16359 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
16360 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
16361 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
16362 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
16363 ('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.'),
16364 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
16365 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
16366
16367 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
16368     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
16369  
16370 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
16371  
16372 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16373         'Remove Parenthesized Substring',
16374         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
16375         'remove_paren_substring',
16376         0
16377 );
16378
16379 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16380         'Trim Surrounding Space',
16381         'Trim leading and trailing spaces from extracted text.',
16382         'btrim',
16383         0
16384 );
16385
16386 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16387     SELECT  m.id,
16388             i.id,
16389             -2
16390       FROM  config.metabib_field m,
16391             config.index_normalizer i
16392       WHERE i.func IN ('remove_paren_substring')
16393             AND m.id IN (26);
16394
16395 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16396     SELECT  m.id,
16397             i.id,
16398             -1
16399       FROM  config.metabib_field m,
16400             config.index_normalizer i
16401       WHERE i.func IN ('btrim')
16402             AND m.id IN (26);
16403
16404 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
16405 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
16406 DECLARE
16407     dyn_profile     vandelay.compile_profile%ROWTYPE;
16408     replace_rule    TEXT;
16409     tmp_marc        TEXT;
16410     trgt_marc        TEXT;
16411     tmpl_marc        TEXT;
16412     match_count     INT;
16413 BEGIN
16414
16415     IF target_marc IS NULL OR template_marc IS NULL THEN
16416         -- RAISE NOTICE 'no marc for target or template record';
16417         RETURN NULL;
16418     END IF;
16419
16420     dyn_profile := vandelay.compile_profile( template_marc );
16421
16422     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
16423         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
16424         RETURN NULL;
16425     END IF;
16426
16427     IF dyn_profile.replace_rule <> '' THEN
16428         trgt_marc = target_marc;
16429         tmpl_marc = template_marc;
16430         replace_rule = dyn_profile.replace_rule;
16431     ELSE
16432         tmp_marc = target_marc;
16433         trgt_marc = template_marc;
16434         tmpl_marc = tmp_marc;
16435         replace_rule = dyn_profile.preserve_rule;
16436     END IF;
16437
16438     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
16439
16440 END;
16441 $$ LANGUAGE PLPGSQL;
16442
16443 -- Function to generate an ephemeral overlay template from an authority record
16444 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
16445
16446     use MARC::Record;
16447     use MARC::File::XML (BinaryEncoding => 'UTF-8');
16448
16449     my $xml = shift;
16450     my $r = MARC::Record->new_from_xml( $xml );
16451
16452     return undef unless ($r);
16453
16454     my $id = shift() || $r->subfield( '901' => 'c' );
16455     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
16456     return undef unless ($id); # We need an ID!
16457
16458     my $tmpl = MARC::Record->new();
16459
16460     my @rule_fields;
16461     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
16462
16463         my $tag = $field->tag;
16464         my $i1 = $field->indicator(1);
16465         my $i2 = $field->indicator(2);
16466         my $sf = join '', map { $_->[0] } $field->subfields;
16467         my @data = map { @$_ } $field->subfields;
16468
16469         my @replace_them;
16470
16471         # Map the authority field to bib fields it can control.
16472         if ($tag >= 100 and $tag <= 111) {       # names
16473             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
16474         } elsif ($tag eq '130') {                # uniform title
16475             @replace_them = qw/130 240 440 730 830/;
16476         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
16477             @replace_them = ($tag + 500);
16478         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
16479             @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/;
16480         } else {
16481             next;
16482         }
16483
16484         # Dummy up the bib-side data
16485         $tmpl->append_fields(
16486             map {
16487                 MARC::Field->new( $_, $i1, $i2, @data )
16488             } @replace_them
16489         );
16490
16491         # Construct some 'replace' rules
16492         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
16493     }
16494
16495     # Insert the replace rules into the template
16496     $tmpl->append_fields(
16497         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16498     );
16499
16500     $xml = $tmpl->as_xml_record;
16501     $xml =~ s/^<\?.+?\?>$//mo;
16502     $xml =~ s/\n//sgo;
16503     $xml =~ s/>\s+</></sgo;
16504
16505     return $xml;
16506
16507 $func$ LANGUAGE PLPERLU;
16508
16509 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16510     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16511 $func$ LANGUAGE SQL;
16512
16513 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16514     SELECT authority.generate_overlay_template( $1, NULL );
16515 $func$ LANGUAGE SQL;
16516
16517 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16518 DELETE FROM config.metabib_field WHERE id = 26;
16519
16520 -- Making this a global_flag (UI accessible) instead of an internal_flag
16521 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16522     VALUES (
16523         'ingest.disable_authority_linking',
16524         oils_i18n_gettext(
16525             'ingest.disable_authority_linking',
16526             'Authority Automation: Disable bib-authority link tracking',
16527             'cgf', 
16528             'label'
16529         )
16530     );
16531 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16532 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16533
16534 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16535     VALUES (
16536         'ingest.disable_authority_auto_update',
16537         oils_i18n_gettext(
16538             'ingest.disable_authority_auto_update',
16539             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16540             'cgf', 
16541             'label'
16542         )
16543     );
16544
16545 -- Enable automated ingest of authority records; just insert the row into
16546 -- authority.record_entry and authority.full_rec will automatically be populated
16547
16548 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16549     UPDATE  biblio.record_entry
16550       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16551       WHERE id = $2;
16552     SELECT $1;
16553 $func$ LANGUAGE SQL;
16554
16555 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16556     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16557 $func$ LANGUAGE SQL;
16558
16559 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
16560
16561 use MARC::Record;
16562 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16563
16564 my $xml = shift;
16565 my $r = MARC::Record->new_from_xml( $xml );
16566
16567 return_next( { tag => 'LDR', value => $r->leader } );
16568
16569 for my $f ( $r->fields ) {
16570     if ($f->is_control_field) {
16571         return_next({ tag => $f->tag, value => $f->data });
16572     } else {
16573         for my $s ($f->subfields) {
16574             return_next({
16575                 tag      => $f->tag,
16576                 ind1     => $f->indicator(1),
16577                 ind2     => $f->indicator(2),
16578                 subfield => $s->[0],
16579                 value    => $s->[1]
16580             });
16581
16582         }
16583     }
16584 }
16585
16586 return undef;
16587
16588 $func$ LANGUAGE PLPERLU;
16589
16590 CREATE OR REPLACE FUNCTION authority.flatten_marc ( rid BIGINT ) RETURNS SETOF authority.full_rec AS $func$
16591 DECLARE
16592     auth    authority.record_entry%ROWTYPE;
16593     output    authority.full_rec%ROWTYPE;
16594     field    RECORD;
16595 BEGIN
16596     SELECT INTO auth * FROM authority.record_entry WHERE id = rid;
16597
16598     FOR field IN SELECT * FROM authority.flatten_marc( auth.marc ) LOOP
16599         output.record := rid;
16600         output.ind1 := field.ind1;
16601         output.ind2 := field.ind2;
16602         output.tag := field.tag;
16603         output.subfield := field.subfield;
16604         IF field.subfield IS NOT NULL THEN
16605             output.value := naco_normalize(field.value, field.subfield);
16606         ELSE
16607             output.value := field.value;
16608         END IF;
16609
16610         CONTINUE WHEN output.value IS NULL;
16611
16612         RETURN NEXT output;
16613     END LOOP;
16614 END;
16615 $func$ LANGUAGE PLPGSQL;
16616
16617 -- authority.rec_descriptor appears to be unused currently
16618 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16619 BEGIN
16620     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16621 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16622 --        SELECT  auth_id, ;
16623
16624     RETURN;
16625 END;
16626 $func$ LANGUAGE PLPGSQL;
16627
16628 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16629 BEGIN
16630     DELETE FROM authority.full_rec WHERE record = auth_id;
16631     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16632         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16633
16634     RETURN;
16635 END;
16636 $func$ LANGUAGE PLPGSQL;
16637
16638 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16639 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16640 BEGIN
16641
16642     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16643         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16644         DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records
16645           -- Should remove matching $0 from controlled fields at the same time?
16646         RETURN NEW; -- and we're done
16647     END IF;
16648
16649     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16650         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16651
16652         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16653             RETURN NEW;
16654         END IF;
16655     END IF;
16656
16657     -- Flatten and insert the afr data
16658     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16659     IF NOT FOUND THEN
16660         PERFORM authority.reingest_authority_full_rec(NEW.id);
16661 -- authority.rec_descriptor is not currently used
16662 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16663 --        IF NOT FOUND THEN
16664 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16665 --        END IF;
16666     END IF;
16667
16668     RETURN NEW;
16669 END;
16670 $func$ LANGUAGE PLPGSQL;
16671
16672 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 ();
16673
16674 -- Some records manage to get XML namespace declarations into each element,
16675 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16676 -- This broke the old maintain_901(), so we'll make the regex more robust
16677
16678 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16679 BEGIN
16680     -- Remove any existing 901 fields before we insert the authoritative one
16681     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16682     IF TG_TABLE_SCHEMA = 'biblio' THEN
16683         NEW.marc := REGEXP_REPLACE(
16684             NEW.marc,
16685             E'(</(?:[^:]*?:)?record>)',
16686             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16687                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16688                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16689                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16690                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16691                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16692                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16693              E'</datafield>\\1'
16694         );
16695     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16696         NEW.marc := REGEXP_REPLACE(
16697             NEW.marc,
16698             E'(</(?:[^:]*?:)?record>)',
16699             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16700                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16701                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16702              E'</datafield>\\1'
16703         );
16704     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16705         NEW.marc := REGEXP_REPLACE(
16706             NEW.marc,
16707             E'(</(?:[^:]*?:)?record>)',
16708             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16709                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16710                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16711                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16712                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16713              E'</datafield>\\1'
16714         );
16715     ELSE
16716         NEW.marc := REGEXP_REPLACE(
16717             NEW.marc,
16718             E'(</(?:[^:]*?:)?record>)',
16719             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16720                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16721                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16722              E'</datafield>\\1'
16723         );
16724     END IF;
16725
16726     RETURN NEW;
16727 END;
16728 $func$ LANGUAGE PLPGSQL;
16729
16730 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16731 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16732 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16733  
16734 -- In booking, elbow room defines:
16735 --  a) how far in the future you must make a reservation on a given item if
16736 --      that item will have to transit somewhere to fulfill the reservation.
16737 --  b) how soon a reservation must be starting for the reserved item to
16738 --      be op-captured by the checkin interface.
16739
16740 -- We don't want to clobber any default_elbow room at any level:
16741
16742 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16743 DECLARE
16744     existing    actor.org_unit_setting%ROWTYPE;
16745 BEGIN
16746     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16747     IF NOT FOUND THEN
16748         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16749             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16750             'circ.booking_reservation.default_elbow_room',
16751             '"1 day"'
16752         );
16753         RETURN 1;
16754     END IF;
16755     RETURN 0;
16756 END;
16757 $$ LANGUAGE plpgsql;
16758
16759 SELECT pg_temp.default_elbow();
16760
16761 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16762
16763 -- returns the distinct set of target copy IDs from a user's visible circulation history
16764 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16765     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16766 $$ LANGUAGE SQL;
16767
16768 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16769 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16770 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16771 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16772
16773 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16774
16775 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16776 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16777
16778 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16779     VALUES (
16780         'cat.maintain_control_numbers',
16781         oils_i18n_gettext(
16782             'cat.maintain_control_numbers',
16783             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16784             'cgf', 
16785             'label'
16786         )
16787     );
16788
16789 INSERT INTO config.global_flag (name, label, enabled)
16790     VALUES (
16791         'circ.holds.empty_issuance_ok',
16792         oils_i18n_gettext(
16793             'circ.holds.empty_issuance_ok',
16794             'Holds: Allow holds on empty issuances',
16795             'cgf',
16796             'label'
16797         ),
16798         TRUE
16799     );
16800
16801 INSERT INTO config.global_flag (name, label, enabled)
16802     VALUES (
16803         'circ.holds.usr_not_requestor',
16804         oils_i18n_gettext(
16805             'circ.holds.usr_not_requestor',
16806             'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)',
16807             'cgf',
16808             'label'
16809         ),
16810         TRUE
16811     );
16812
16813 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16814 use strict;
16815 use MARC::Record;
16816 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16817 use Encode;
16818 use Unicode::Normalize;
16819
16820 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16821 my $schema = $_TD->{table_schema};
16822 my $rec_id = $_TD->{new}{id};
16823
16824 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16825 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16826 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16827     return;
16828 }
16829
16830 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16831 my $ou_cni = 'EVRGRN';
16832
16833 my $owner;
16834 if ($schema eq 'serial') {
16835     $owner = $_TD->{new}{owning_lib};
16836 } else {
16837     # are.owner and bre.owner can be null, so fall back to the consortial setting
16838     $owner = $_TD->{new}{owner} || 1;
16839 }
16840
16841 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16842 if ($ous_rv->{processed}) {
16843     $ou_cni = $ous_rv->{rows}[0]->{value};
16844     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16845 } else {
16846     # Fall back to the shortname of the OU if there was no OU setting
16847     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16848     if ($ous_rv->{processed}) {
16849         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16850     }
16851 }
16852
16853 my ($create, $munge) = (0, 0);
16854 my ($orig_001, $orig_003) = ('', '');
16855
16856 # Incoming MARC records may have multiple 001s or 003s, despite the spec
16857 my @control_ids = $record->field('003');
16858 my @scns = $record->field('035');
16859
16860 foreach my $id_field ('001', '003') {
16861     my $spec_value;
16862     my @controls = $record->field($id_field);
16863
16864     if ($id_field eq '001') {
16865         $spec_value = $rec_id;
16866     } else {
16867         $spec_value = $ou_cni;
16868     }
16869
16870     # Create the 001/003 if none exist
16871     if (scalar(@controls) == 0) {
16872         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
16873         $create = 1;
16874     } elsif (scalar(@controls) > 1) {
16875         # Do we already have the right 001/003 value in the existing set?
16876         unless (grep $_->data() eq $spec_value, @controls) {
16877             $munge = 1;
16878         }
16879
16880         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
16881         foreach my $control (@controls) {
16882             unless ($control->data() eq $spec_value) {
16883                 $record->delete_field($control);
16884             }
16885         }
16886     } else {
16887         # Only one field; check to see if we need to munge it
16888         unless (grep $_->data() eq $spec_value, @controls) {
16889             $munge = 1;
16890         }
16891     }
16892 }
16893
16894 # Now, if we need to munge the 001, we will first push the existing 001/003 into the 035
16895 if ($munge) {
16896     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
16897
16898     # Do not create duplicate 035 fields
16899     unless (grep $_->subfield('a') eq $scn, @scns) {
16900         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
16901     }
16902 }
16903
16904 # Set the 001/003 and update the MARC
16905 if ($create or $munge) {
16906     $record->field('001')->data($rec_id);
16907     $record->field('003')->data($ou_cni);
16908
16909     my $xml = $record->as_xml_record();
16910     $xml =~ s/\n//sgo;
16911     $xml =~ s/^<\?xml.+\?\s*>//go;
16912     $xml =~ s/>\s+</></go;
16913     $xml =~ s/\p{Cc}//go;
16914
16915     # Embed a version of OpenILS::Application::AppUtils->entityize()
16916     # to avoid having to set PERL5LIB for PostgreSQL as well
16917
16918     # If we are going to convert non-ASCII characters to XML entities,
16919     # we had better be dealing with a UTF8 string to begin with
16920     $xml = decode_utf8($xml);
16921
16922     $xml = NFC($xml);
16923
16924     # Convert raw ampersands to entities
16925     $xml =~ s/&(?!\S+;)/&amp;/gso;
16926
16927     # Convert Unicode characters to entities
16928     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
16929
16930     $xml =~ s/[\x00-\x1f]//go;
16931     $_TD->{new}{marc} = $xml;
16932
16933     return "MODIFY";
16934 }
16935
16936 return;
16937 $func$ LANGUAGE PLPERLU;
16938
16939 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16940 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16941 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16942
16943 INSERT INTO metabib.facet_entry (source, field, value)
16944     SELECT source, field, value FROM (
16945         SELECT * FROM metabib.author_field_entry
16946             UNION ALL
16947         SELECT * FROM metabib.keyword_field_entry
16948             UNION ALL
16949         SELECT * FROM metabib.identifier_field_entry
16950             UNION ALL
16951         SELECT * FROM metabib.title_field_entry
16952             UNION ALL
16953         SELECT * FROM metabib.subject_field_entry
16954             UNION ALL
16955         SELECT * FROM metabib.series_field_entry
16956         )x
16957     WHERE x.index_vector = '';
16958         
16959 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
16960 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
16961 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
16962 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
16963 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
16964 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
16965
16966 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
16967 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
16968 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
16969
16970 -- copy OPAC visibility materialized view
16971 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
16972
16973     TRUNCATE TABLE asset.opac_visible_copies;
16974
16975     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16976     SELECT  cp.id, cp.circ_lib, cn.record
16977     FROM  asset.copy cp
16978         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16979         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16980         JOIN asset.copy_location cl ON (cp.location = cl.id)
16981         JOIN config.copy_status cs ON (cp.status = cs.id)
16982         JOIN biblio.record_entry b ON (cn.record = b.id)
16983     WHERE NOT cp.deleted
16984         AND NOT cn.deleted
16985         AND NOT b.deleted
16986         AND cs.opac_visible
16987         AND cl.opac_visible
16988         AND cp.opac_visible
16989         AND a.opac_visible;
16990
16991 $$ LANGUAGE SQL;
16992 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
16993 Rebuild the copy OPAC visibility cache.  Useful during migrations.
16994 $$;
16995
16996 -- and actually populate the table
16997 SELECT asset.refresh_opac_visible_copies_mat_view();
16998
16999 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
17000 DECLARE
17001     add_query       TEXT;
17002     remove_query    TEXT;
17003     do_add          BOOLEAN := false;
17004     do_remove       BOOLEAN := false;
17005 BEGIN
17006     add_query := $$
17007             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
17008                 SELECT  cp.id, cp.circ_lib, cn.record
17009                   FROM  asset.copy cp
17010                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
17011                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
17012                         JOIN asset.copy_location cl ON (cp.location = cl.id)
17013                         JOIN config.copy_status cs ON (cp.status = cs.id)
17014                         JOIN biblio.record_entry b ON (cn.record = b.id)
17015                   WHERE NOT cp.deleted
17016                         AND NOT cn.deleted
17017                         AND NOT b.deleted
17018                         AND cs.opac_visible
17019                         AND cl.opac_visible
17020                         AND cp.opac_visible
17021                         AND a.opac_visible
17022     $$;
17023  
17024     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
17025
17026     IF TG_OP = 'INSERT' THEN
17027
17028         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17029             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17030             EXECUTE add_query;
17031         END IF;
17032
17033         RETURN NEW;
17034
17035     END IF;
17036
17037     -- handle items first, since with circulation activity
17038     -- their statuses change frequently
17039     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17040
17041         IF OLD.location    <> NEW.location OR
17042            OLD.call_number <> NEW.call_number OR
17043            OLD.status      <> NEW.status OR
17044            OLD.circ_lib    <> NEW.circ_lib THEN
17045             -- any of these could change visibility, but
17046             -- we'll save some queries and not try to calculate
17047             -- the change directly
17048             do_remove := true;
17049             do_add := true;
17050         ELSE
17051
17052             IF OLD.deleted <> NEW.deleted THEN
17053                 IF NEW.deleted THEN
17054                     do_remove := true;
17055                 ELSE
17056                     do_add := true;
17057                 END IF;
17058             END IF;
17059
17060             IF OLD.opac_visible <> NEW.opac_visible THEN
17061                 IF OLD.opac_visible THEN
17062                     do_remove := true;
17063                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
17064                                         -- is also marked opac_visible
17065                     do_add := true;
17066                 END IF;
17067             END IF;
17068
17069         END IF;
17070
17071         IF do_remove THEN
17072             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
17073         END IF;
17074         IF do_add THEN
17075             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17076             EXECUTE add_query;
17077         END IF;
17078
17079         RETURN NEW;
17080
17081     END IF;
17082
17083     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
17084  
17085         IF OLD.deleted AND NEW.deleted THEN -- do nothing
17086
17087             RETURN NEW;
17088  
17089         ELSIF NEW.deleted THEN -- remove rows
17090  
17091             IF TG_TABLE_NAME = 'call_number' THEN
17092                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
17093             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17094                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
17095             END IF;
17096  
17097             RETURN NEW;
17098  
17099         ELSIF OLD.deleted THEN -- add rows
17100  
17101             IF TG_TABLE_NAME IN ('copy','unit') THEN
17102                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17103             ELSIF TG_TABLE_NAME = 'call_number' THEN
17104                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17105             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17106                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
17107             END IF;
17108  
17109             EXECUTE add_query;
17110             RETURN NEW;
17111  
17112         END IF;
17113  
17114     END IF;
17115
17116     IF TG_TABLE_NAME = 'call_number' THEN
17117
17118         IF OLD.record <> NEW.record THEN
17119             -- call number is linked to different bib
17120             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
17121             EXECUTE remove_query;
17122             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17123             EXECUTE add_query;
17124         END IF;
17125
17126         RETURN NEW;
17127
17128     END IF;
17129
17130     IF TG_TABLE_NAME IN ('record_entry') THEN
17131         RETURN NEW; -- don't have 'opac_visible'
17132     END IF;
17133
17134     -- actor.org_unit, asset.copy_location, asset.copy_status
17135     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
17136
17137         RETURN NEW;
17138
17139     ELSIF NEW.opac_visible THEN -- add rows
17140
17141         IF TG_TABLE_NAME = 'org_unit' THEN
17142             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
17143         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17144             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
17145         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17146             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
17147         END IF;
17148  
17149         EXECUTE add_query;
17150  
17151     ELSE -- delete rows
17152
17153         IF TG_TABLE_NAME = 'org_unit' THEN
17154             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
17155         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17156             remove_query := remove_query || 'location = ' || NEW.id || ');';
17157         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17158             remove_query := remove_query || 'status = ' || NEW.id || ');';
17159         END IF;
17160  
17161         EXECUTE remove_query;
17162  
17163     END IF;
17164  
17165     RETURN NEW;
17166 END;
17167 $func$ LANGUAGE PLPGSQL;
17168 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
17169 Trigger function to update the copy OPAC visiblity cache.
17170 $$;
17171 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();
17172 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17173 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();
17174 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();
17175 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17176 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();
17177 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();
17178
17179 -- must create this rule explicitly; it is not inherited from asset.copy
17180 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;
17181
17182 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);
17183
17184 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
17185 DECLARE
17186     moved_objects INT := 0;
17187     bib_id        INT := 0;
17188     bib_rec       biblio.record_entry%ROWTYPE;
17189     auth_link     authority.bib_linking%ROWTYPE;
17190 BEGIN
17191
17192     -- 1. Make source_record MARC a copy of the target_record to get auto-sync in linked bib records
17193     UPDATE authority.record_entry
17194       SET marc = (
17195         SELECT marc
17196           FROM authority.record_entry
17197           WHERE id = target_record
17198       )
17199       WHERE id = source_record;
17200
17201     -- 2. Update all bib records with the ID from target_record in their $0
17202     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre 
17203       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
17204       WHERE abl.authority = target_record LOOP
17205
17206         UPDATE biblio.record_entry
17207           SET marc = REGEXP_REPLACE(marc, 
17208             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
17209             E'\\1' || target_record || '<', 'g')
17210           WHERE id = bib_rec.id;
17211
17212           moved_objects := moved_objects + 1;
17213     END LOOP;
17214
17215     -- 3. "Delete" source_record
17216     DELETE FROM authority.record_entry
17217       WHERE id = source_record;
17218
17219     RETURN moved_objects;
17220 END;
17221 $func$ LANGUAGE plpgsql;
17222
17223 -- serial.record_entry already had an owner column spelled "owning_lib"
17224 -- Adjust the table and affected functions accordingly
17225
17226 ALTER TABLE serial.record_entry DROP COLUMN owner;
17227
17228 CREATE TABLE actor.usr_saved_search (
17229     id              SERIAL          PRIMARY KEY,
17230         owner           INT             NOT NULL REFERENCES actor.usr (id)
17231                                         ON DELETE CASCADE
17232                                         DEFERRABLE INITIALLY DEFERRED,
17233         name            TEXT            NOT NULL,
17234         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
17235         query_text      TEXT            NOT NULL,
17236         query_type      TEXT            NOT NULL
17237                                         CONSTRAINT valid_query_text CHECK (
17238                                         query_type IN ( 'URL' )) DEFAULT 'URL',
17239                                         -- we may add other types someday
17240         target          TEXT            NOT NULL
17241                                         CONSTRAINT valid_target CHECK (
17242                                         target IN ( 'record', 'metarecord', 'callnumber' )),
17243         CONSTRAINT name_once_per_user UNIQUE (owner, name)
17244 );
17245
17246 -- Apply Dan Wells' changes to the serial schema, from the
17247 -- seials-integration branch
17248
17249 CREATE TABLE serial.subscription_note (
17250         id           SERIAL PRIMARY KEY,
17251         subscription INT    NOT NULL
17252                             REFERENCES serial.subscription (id)
17253                             ON DELETE CASCADE
17254                             DEFERRABLE INITIALLY DEFERRED,
17255         creator      INT    NOT NULL
17256                             REFERENCES actor.usr (id)
17257                             DEFERRABLE INITIALLY DEFERRED,
17258         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17259         pub          BOOL   NOT NULL DEFAULT FALSE,
17260         title        TEXT   NOT NULL,
17261         value        TEXT   NOT NULL
17262 );
17263 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
17264
17265 CREATE TABLE serial.distribution_note (
17266         id           SERIAL PRIMARY KEY,
17267         distribution INT    NOT NULL
17268                             REFERENCES serial.distribution (id)
17269                             ON DELETE CASCADE
17270                             DEFERRABLE INITIALLY DEFERRED,
17271         creator      INT    NOT NULL
17272                             REFERENCES actor.usr (id)
17273                             DEFERRABLE INITIALLY DEFERRED,
17274         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17275         pub          BOOL   NOT NULL DEFAULT FALSE,
17276         title        TEXT   NOT NULL,
17277         value        TEXT   NOT NULL
17278 );
17279 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
17280
17281 ------- Begin surgery on serial.unit
17282
17283 ALTER TABLE serial.unit
17284         DROP COLUMN label;
17285
17286 ALTER TABLE serial.unit
17287         RENAME COLUMN label_sort_key TO sort_key;
17288
17289 ALTER TABLE serial.unit
17290         RENAME COLUMN contents TO detailed_contents;
17291
17292 ALTER TABLE serial.unit
17293         ADD COLUMN summary_contents TEXT;
17294
17295 UPDATE serial.unit
17296 SET summary_contents = detailed_contents;
17297
17298 ALTER TABLE serial.unit
17299         ALTER column summary_contents SET NOT NULL;
17300
17301 ------- End surgery on serial.unit
17302
17303 -- 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' );
17304
17305 -- Now rebuild the constraints dropped via cascade.
17306 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
17307 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
17308 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
17309
17310 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
17311
17312 DELETE FROM config.metabib_field_index_norm_map
17313     WHERE norm IN (
17314         SELECT id 
17315             FROM config.index_normalizer
17316             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
17317     )
17318     AND field = 18
17319 ;
17320
17321 -- We won't necessarily use all of these, but they are here for completeness.
17322 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
17323 -- Values are the EDI code value + 1200
17324
17325 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
17326 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
17327 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
17328 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
17329 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
17330 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
17331 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
17332 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
17333 (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.'),
17334 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
17335 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
17336 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
17337 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
17338 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
17339 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
17340 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
17341 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
17342 (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.'),
17343 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
17344 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
17345 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
17346 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
17347 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
17348 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
17349 (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.'),
17350 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
17351 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
17352 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
17353 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
17354 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
17355 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
17356 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
17357 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
17358 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
17359 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
17360 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
17361 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
17362 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
17363 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
17364 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
17365 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
17366 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
17367 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
17368 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
17369 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
17370 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
17371 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
17372 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
17373 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
17374 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
17375 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
17376 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
17377 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
17378 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
17379 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
17380 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
17381 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
17382 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
17383 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
17384 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
17385 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
17386 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
17387 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
17388 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
17389 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
17390 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
17391 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
17392 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
17393 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
17394 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
17395 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
17396 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
17397 (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.'),
17398 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
17399 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
17400 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
17401 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
17402 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
17403 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
17404 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
17405 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
17406 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
17407 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
17408 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
17409 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
17410 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
17411 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
17412 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
17413 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
17414 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
17415 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
17416 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
17417 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
17418 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
17419 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
17420 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
17421 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
17422 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
17423 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
17424 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
17425 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
17426 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
17427 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
17428 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
17429 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
17430 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
17431 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
17432 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
17433 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
17434 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
17435 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
17436 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
17437 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
17438 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
17439 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
17440 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
17441 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
17442 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
17443 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
17444 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
17445 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
17446 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
17447 (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.'),
17448 (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.'),
17449 (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.'),
17450 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
17451 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
17452 (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.'),
17453 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
17454 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
17455 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
17456 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
17457 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
17458 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
17459 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
17460 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
17461 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
17462 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
17463 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
17464 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
17465 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
17466 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
17467 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
17468 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
17469 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
17470 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
17471 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
17472 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
17473 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
17474 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
17475 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
17476 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
17477 (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.'),
17478 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
17479 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
17480 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
17481 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
17482 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
17483 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
17484 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
17485 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
17486 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
17487 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
17488 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
17489 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
17490 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
17491 (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.'),
17492 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
17493 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
17494 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
17495 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
17496 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
17497 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
17498 (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.'),
17499 (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.'),
17500 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
17501 (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.'),
17502 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
17503 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
17504 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
17505 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
17506 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
17507 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
17508 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
17509 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
17510 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
17511 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
17512 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
17513 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
17514 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
17515 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
17516 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
17517 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
17518 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
17519 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
17520 (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.'),
17521 (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.'),
17522 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
17523 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
17524 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
17525 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
17526 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
17527 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
17528 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
17529 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
17530 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
17531 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
17532 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
17533 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
17534 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
17535 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
17536 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
17537 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
17538 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
17539 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
17540 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
17541 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
17542 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
17543 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
17544 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
17545 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
17546 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
17547 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
17548 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
17549 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
17550 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
17551 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
17552 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
17553 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
17554 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
17555 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
17556 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
17557 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
17558 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
17559 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
17560 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
17561 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
17562 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
17563 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
17564 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
17565 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17566 (1, 't', 1442, 'Number of months', 'The number of months.'),
17567 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17568 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17569 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17570 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17571 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17572 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17573 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17574 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17575 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17576 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17577 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17578 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17579 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17580 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17581 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17582 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17583 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17584 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17585 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17586 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17587 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17588 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17589 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17590 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17591 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17592 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17593 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17594 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17595 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17596 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17597 (1, 't', 1473, 'Agents', 'The number of agents.'),
17598 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17599 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17600 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17601 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17602 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17603 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17604 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17605 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17606 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17607 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17608 (1, 't', 1484, 'Departments', 'The number of departments.'),
17609 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17610 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17611 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17612 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17613 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17614 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17615 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17616 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17617 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17618 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17619 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17620 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17621 (1, 't', 1497, 'Executives', 'The number of executives.'),
17622 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17623 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17624 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17625 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17626 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17627 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17628 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17629 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17630 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17631 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17632 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17633 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17634 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17635 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17636 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17637 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17638 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17639 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17640 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17641 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17642 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17643 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17644 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17645 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17646 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17647 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17648 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17649 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17650 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17651 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17652 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17653 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17654 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17655 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17656 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17657 (1, 't', 1533, 'Seats',        'The number of seats.'),
17658 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17659 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17660 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17661 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17662 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17663 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17664 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17665 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17666 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17667 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17668 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17669 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17670 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17671 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17672 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17673 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17674 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17675 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17676 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17677 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17678 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17679 (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.'),
17680 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17681 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17682 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17683 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17684 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17685 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17686 (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.'),
17687 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17688 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17689 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17690 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17691 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17692 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17693 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17694 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17695 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17696 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17697 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17698 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17699 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17700 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17701 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17702 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17703 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17704 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17705 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17706 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17707 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17708 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17709 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17710 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17711 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17712 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17713 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17714 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17715 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17716 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17717 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17718 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17719 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17720 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17721 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17722 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17723 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17724 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17725 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17726 (1, 't', 1602, 'Patients',         'Number of patients.'),
17727 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17728 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17729 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17730 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17731 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17732 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17733 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17734 (1, 't', 1610, 'Operators',        'Number of operators.'),
17735 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17736 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17737 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17738 (1, 't', 1614, 'Machines',         'Number of machines.'),
17739 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17740 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17741 (1, 't', 1617, 'Directors',        'Number of directors.'),
17742 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17743 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17744 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17745 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17746 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17747 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17748 (1, 't', 1624, 'Beds', 'Number of beds.'),
17749 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17750 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17751 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17752 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17753 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17754 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17755 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17756 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17757 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17758 (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.'),
17759 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17760 (1, 't', 1636, 'Professor', 'The number of professors.'),
17761 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17762 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17763 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17764 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17765 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17766 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17767 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17768 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17769 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17770 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17771 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17772 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17773 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17774 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17775 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17776 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17777 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17778 (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.'),
17779 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17780 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17781 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17782 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17783 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17784 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17785 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17786 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17787 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17788 (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.'),
17789 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17790 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17791 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17792 (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.'),
17793 (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.'),
17794 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17795 (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.'),
17796 (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.'),
17797 (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.'),
17798 (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.'),
17799 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17800 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17801 (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.'),
17802 (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.'),
17803 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17804 (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.'),
17805 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17806 (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.'),
17807 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17808 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17809 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17810 (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).'),
17811 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17812 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17813 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17814 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17815 ;
17816 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17817
17818 CREATE TABLE acq.serial_claim (
17819     id     SERIAL           PRIMARY KEY,
17820     type   INT              NOT NULL REFERENCES acq.claim_type
17821                                      DEFERRABLE INITIALLY DEFERRED,
17822     item    BIGINT          NOT NULL REFERENCES serial.item
17823                                      DEFERRABLE INITIALLY DEFERRED
17824 );
17825
17826 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17827
17828 CREATE TABLE acq.serial_claim_event (
17829     id             BIGSERIAL        PRIMARY KEY,
17830     type           INT              NOT NULL REFERENCES acq.claim_event_type
17831                                              DEFERRABLE INITIALLY DEFERRED,
17832     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17833                                              DEFERRABLE INITIALLY DEFERRED,
17834     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17835     creator        INT              NOT NULL REFERENCES actor.usr
17836                                              DEFERRABLE INITIALLY DEFERRED,
17837     note           TEXT
17838 );
17839
17840 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
17841
17842 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
17843
17844 -- now what about the auditor.*_lifecycle views??
17845
17846 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17847     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
17848 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17849     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
17850 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
17851 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
17852
17853 CREATE TABLE asset.call_number_class (
17854     id             bigserial     PRIMARY KEY,
17855     name           TEXT          NOT NULL,
17856     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
17857     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17858 );
17859
17860 COMMENT ON TABLE asset.call_number_class IS $$
17861 Defines the call number normalization database functions in the "normalizer"
17862 column and the tag/subfield combinations to use to lookup the call number in
17863 the "field" column for a given classification scheme. Tag/subfield combinations
17864 are delimited by commas.
17865 $$;
17866
17867 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
17868     ('Generic', 'asset.label_normalizer_generic'),
17869     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
17870     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
17871 ;
17872
17873 -- Generic fields
17874 UPDATE asset.call_number_class
17875     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17876     WHERE id = 1
17877 ;
17878
17879 -- Dewey fields
17880 UPDATE asset.call_number_class
17881     SET field = '080ab,082ab'
17882     WHERE id = 2
17883 ;
17884
17885 -- LC fields
17886 UPDATE asset.call_number_class
17887     SET field = '050ab,055ab'
17888     WHERE id = 3
17889 ;
17890  
17891 ALTER TABLE asset.call_number
17892         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
17893                 REFERENCES asset.call_number_class(id)
17894                 DEFERRABLE INITIALLY DEFERRED;
17895
17896 ALTER TABLE asset.call_number
17897         ADD COLUMN label_sortkey TEXT;
17898
17899 CREATE INDEX asset_call_number_label_sortkey
17900         ON asset.call_number(oils_text_as_bytea(label_sortkey));
17901
17902 ALTER TABLE auditor.asset_call_number_history
17903         ADD COLUMN label_class BIGINT;
17904
17905 ALTER TABLE auditor.asset_call_number_history
17906         ADD COLUMN label_sortkey TEXT;
17907
17908 -- Pick up the new columns in dependent views
17909
17910 DROP VIEW auditor.asset_call_number_lifecycle;
17911
17912 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17913
17914 DROP VIEW auditor.asset_call_number_lifecycle;
17915
17916 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17917
17918 DROP VIEW IF EXISTS stats.fleshed_call_number;
17919
17920 CREATE VIEW stats.fleshed_call_number AS
17921         SELECT  cn.*,
17922             CAST(cn.create_date AS DATE) AS create_date_day,
17923         CAST(cn.edit_date AS DATE) AS edit_date_day,
17924         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
17925         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
17926             rd.item_lang,
17927                 rd.item_type,
17928                 rd.item_form
17929         FROM    asset.call_number cn
17930                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
17931
17932 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
17933 DECLARE
17934     sortkey        TEXT := '';
17935 BEGIN
17936     sortkey := NEW.label_sortkey;
17937
17938     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
17939        quote_literal( NEW.label ) || ')'
17940        FROM asset.call_number_class acnc
17941        WHERE acnc.id = NEW.label_class
17942        INTO sortkey;
17943
17944     NEW.label_sortkey = sortkey;
17945
17946     RETURN NEW;
17947 END;
17948 $func$ LANGUAGE PLPGSQL;
17949
17950 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
17951     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
17952     # thus could probably be considered a derived work, although nothing was
17953     # directly copied - but to err on the safe side of providing attribution:
17954     # Copyright (C) 2007 LibLime
17955     # Licensed under the GPL v2 or later
17956
17957     use strict;
17958     use warnings;
17959
17960     # Converts the callnumber to uppercase
17961     # Strips spaces from start and end of the call number
17962     # Converts anything other than letters, digits, and periods into underscores
17963     # Collapses multiple underscores into a single underscore
17964     my $callnum = uc(shift);
17965     $callnum =~ s/^\s//g;
17966     $callnum =~ s/\s$//g;
17967     $callnum =~ s/[^A-Z0-9_.]/_/g;
17968     $callnum =~ s/_{2,}/_/g;
17969
17970     return $callnum;
17971 $func$ LANGUAGE PLPERLU;
17972
17973 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
17974     # Derived from the Koha C4::ClassSortRoutine::Dewey module
17975     # Copyright (C) 2007 LibLime
17976     # Licensed under the GPL v2 or later
17977
17978     use strict;
17979     use warnings;
17980
17981     my $init = uc(shift);
17982     $init =~ s/^\s+//;
17983     $init =~ s/\s+$//;
17984     $init =~ s!/!!g;
17985     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
17986     my @tokens = split /\.|\s+/, $init;
17987     my $digit_group_count = 0;
17988     for (my $i = 0; $i <= $#tokens; $i++) {
17989         if ($tokens[$i] =~ /^\d+$/) {
17990             $digit_group_count++;
17991             if (2 == $digit_group_count) {
17992                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
17993                 $tokens[$i] =~ tr/ /0/;
17994             }
17995         }
17996     }
17997     my $key = join("_", @tokens);
17998     $key =~ s/[^\p{IsAlnum}_]//g;
17999
18000     return $key;
18001
18002 $func$ LANGUAGE PLPERLU;
18003
18004 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
18005     use strict;
18006     use warnings;
18007
18008     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
18009     # The author hopes to upload it to CPAN some day, which would make our lives easier
18010     use Library::CallNumber::LC;
18011
18012     my $callnum = Library::CallNumber::LC->new(shift);
18013     return $callnum->normalize();
18014
18015 $func$ LANGUAGE PLPERLU;
18016
18017 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$
18018 DECLARE
18019     ans RECORD;
18020     trans INT;
18021 BEGIN
18022     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;
18023
18024     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
18025         RETURN QUERY
18026         SELECT  ans.depth,
18027                 ans.id,
18028                 COUNT( av.id ),
18029                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18030                 COUNT( av.id ),
18031                 trans
18032           FROM
18033                 actor.org_unit_descendants(ans.id) d
18034                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18035                 JOIN asset.copy cp ON (cp.id = av.id)
18036           GROUP BY 1,2,6;
18037
18038         IF NOT FOUND THEN
18039             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18040         END IF;
18041
18042     END LOOP;
18043
18044     RETURN;
18045 END;
18046 $f$ LANGUAGE PLPGSQL;
18047
18048 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$
18049 DECLARE
18050     ans RECORD;
18051     trans INT;
18052 BEGIN
18053     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;
18054
18055     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18056         RETURN QUERY
18057         SELECT  -1,
18058                 ans.id,
18059                 COUNT( av.id ),
18060                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18061                 COUNT( av.id ),
18062                 trans
18063           FROM
18064                 actor.org_unit_descendants(ans.id) d
18065                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18066                 JOIN asset.copy cp ON (cp.id = av.id)
18067           GROUP BY 1,2,6;
18068
18069         IF NOT FOUND THEN
18070             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18071         END IF;
18072
18073     END LOOP;
18074
18075     RETURN;
18076 END;
18077 $f$ LANGUAGE PLPGSQL;
18078
18079 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$
18080 DECLARE
18081     ans RECORD;
18082     trans INT;
18083 BEGIN
18084     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;
18085
18086     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
18087         RETURN QUERY
18088         SELECT  ans.depth,
18089                 ans.id,
18090                 COUNT( cp.id ),
18091                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18092                 COUNT( cp.id ),
18093                 trans
18094           FROM
18095                 actor.org_unit_descendants(ans.id) d
18096                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18097                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18098           GROUP BY 1,2,6;
18099
18100         IF NOT FOUND THEN
18101             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18102         END IF;
18103
18104     END LOOP;
18105
18106     RETURN;
18107 END;
18108 $f$ LANGUAGE PLPGSQL;
18109
18110 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$
18111 DECLARE
18112     ans RECORD;
18113     trans INT;
18114 BEGIN
18115     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;
18116
18117     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18118         RETURN QUERY
18119         SELECT  -1,
18120                 ans.id,
18121                 COUNT( cp.id ),
18122                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18123                 COUNT( cp.id ),
18124                 trans
18125           FROM
18126                 actor.org_unit_descendants(ans.id) d
18127                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18128                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18129           GROUP BY 1,2,6;
18130
18131         IF NOT FOUND THEN
18132             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18133         END IF;
18134
18135     END LOOP;
18136
18137     RETURN;
18138 END;
18139 $f$ LANGUAGE PLPGSQL;
18140
18141 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$
18142 BEGIN
18143     IF staff IS TRUE THEN
18144         IF place > 0 THEN
18145             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
18146         ELSE
18147             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
18148         END IF;
18149     ELSE
18150         IF place > 0 THEN
18151             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
18152         ELSE
18153             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
18154         END IF;
18155     END IF;
18156
18157     RETURN;
18158 END;
18159 $f$ LANGUAGE PLPGSQL;
18160
18161 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$
18162 DECLARE
18163     ans RECORD;
18164     trans INT;
18165 BEGIN
18166     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;
18167
18168     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
18169         RETURN QUERY
18170         SELECT  ans.depth,
18171                 ans.id,
18172                 COUNT( av.id ),
18173                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18174                 COUNT( av.id ),
18175                 trans
18176           FROM
18177                 actor.org_unit_descendants(ans.id) d
18178                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18179                 JOIN asset.copy cp ON (cp.id = av.id)
18180                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18181           GROUP BY 1,2,6;
18182
18183         IF NOT FOUND THEN
18184             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18185         END IF;
18186
18187     END LOOP;
18188
18189     RETURN;
18190 END;
18191 $f$ LANGUAGE PLPGSQL;
18192
18193 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$
18194 DECLARE
18195     ans RECORD;
18196     trans INT;
18197 BEGIN
18198     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;
18199
18200     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18201         RETURN QUERY
18202         SELECT  -1,
18203                 ans.id,
18204                 COUNT( av.id ),
18205                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18206                 COUNT( av.id ),
18207                 trans
18208           FROM
18209                 actor.org_unit_descendants(ans.id) d
18210                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18211                 JOIN asset.copy cp ON (cp.id = av.id)
18212                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18213           GROUP BY 1,2,6;
18214
18215         IF NOT FOUND THEN
18216             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18217         END IF;
18218
18219     END LOOP;
18220
18221     RETURN;
18222 END;
18223 $f$ LANGUAGE PLPGSQL;
18224
18225 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$
18226 DECLARE
18227     ans RECORD;
18228     trans INT;
18229 BEGIN
18230     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;
18231
18232     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
18233         RETURN QUERY
18234         SELECT  ans.depth,
18235                 ans.id,
18236                 COUNT( cp.id ),
18237                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18238                 COUNT( cp.id ),
18239                 trans
18240           FROM
18241                 actor.org_unit_descendants(ans.id) d
18242                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18243                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18244                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18245           GROUP BY 1,2,6;
18246
18247         IF NOT FOUND THEN
18248             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18249         END IF;
18250
18251     END LOOP;
18252
18253     RETURN;
18254 END;
18255 $f$ LANGUAGE PLPGSQL;
18256
18257 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$
18258 DECLARE
18259     ans RECORD;
18260     trans INT;
18261 BEGIN
18262     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;
18263
18264     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18265         RETURN QUERY
18266         SELECT  -1,
18267                 ans.id,
18268                 COUNT( cp.id ),
18269                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18270                 COUNT( cp.id ),
18271                 trans
18272           FROM
18273                 actor.org_unit_descendants(ans.id) d
18274                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18275                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18276                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18277           GROUP BY 1,2,6;
18278
18279         IF NOT FOUND THEN
18280             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18281         END IF;
18282
18283     END LOOP;
18284
18285     RETURN;
18286 END;
18287 $f$ LANGUAGE PLPGSQL;
18288
18289 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$
18290 BEGIN
18291     IF staff IS TRUE THEN
18292         IF place > 0 THEN
18293             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
18294         ELSE
18295             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
18296         END IF;
18297     ELSE
18298         IF place > 0 THEN
18299             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
18300         ELSE
18301             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
18302         END IF;
18303     END IF;
18304
18305     RETURN;
18306 END;
18307 $f$ LANGUAGE PLPGSQL;
18308
18309 -- No transaction is required
18310
18311 -- Triggers on the vandelay.queued_*_record tables delete entries from
18312 -- the associated vandelay.queued_*_record_attr tables based on the record's
18313 -- ID; create an index on that column to avoid sequential scans for each
18314 -- queued record that is deleted
18315 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
18316 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
18317
18318 -- Avoid sequential scans for queue retrieval operations by providing an
18319 -- index on the queue column
18320 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
18321 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
18322
18323 -- Start picking up call number label prefixes and suffixes
18324 -- from asset.copy_location
18325 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
18326 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
18327
18328 DROP VIEW auditor.asset_copy_lifecycle;
18329
18330 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
18331
18332 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
18333
18334 -- Let's not break existing reports
18335 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
18336 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
18337
18338 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
18339 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
18340 SELECT  r.id,
18341     r.fingerprint,
18342     r.quality,
18343     r.tcn_source,
18344     r.tcn_value,
18345     FIRST(title.value) AS title,
18346     FIRST(author.value) AS author,
18347     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
18348     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
18349     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18350     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
18351   FROM  biblio.record_entry r
18352     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18353     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
18354     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18355     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18356     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18357     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18358   GROUP BY 1,2,3,4,5;
18359
18360 -- Correct the ISSN array definition for reporter.simple_record
18361
18362 CREATE OR REPLACE VIEW reporter.simple_record AS
18363 SELECT  r.id,
18364         s.metarecord,
18365         r.fingerprint,
18366         r.quality,
18367         r.tcn_source,
18368         r.tcn_value,
18369         title.value AS title,
18370         uniform_title.value AS uniform_title,
18371         author.value AS author,
18372         publisher.value AS publisher,
18373         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
18374         series_title.value AS series_title,
18375         series_statement.value AS series_statement,
18376         summary.value AS summary,
18377         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18378         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
18379         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
18380         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
18381         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
18382         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
18383         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
18384         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
18385   FROM  biblio.record_entry r
18386         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
18387         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
18388         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18389         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
18390         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18391         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18392         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18393         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18394         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')
18395         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
18396         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
18397   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
18398
18399 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
18400     DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
18401 $$ LANGUAGE SQL;
18402
18403 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
18404 BEGIN
18405     IF TG_OP = 'DELETE' THEN
18406         PERFORM reporter.simple_rec_delete(NEW.id);
18407     ELSE
18408         PERFORM reporter.simple_rec_update(NEW.id);
18409     END IF;
18410
18411     RETURN NEW;
18412 END;
18413 $func$ LANGUAGE PLPGSQL;
18414
18415 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
18416
18417 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
18418
18419 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
18420
18421 UPDATE config.org_unit_setting_type
18422     SET view_perm = (SELECT id FROM permission.perm_list
18423         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
18424     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
18425
18426 UPDATE config.org_unit_setting_type
18427     SET update_perm = (SELECT id FROM permission.perm_list
18428         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
18429     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
18430
18431 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
18432     VALUES (
18433         'opac.fully_compressed_serial_holdings',
18434         'OPAC: Use fully compressed serial holdings',
18435         'Show fully compressed serial holdings for all libraries at and below
18436         the current context unit',
18437         'bool'
18438     );
18439
18440 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
18441     use strict;
18442     use warnings;
18443
18444     use utf8;
18445     use MARC::Record;
18446     use MARC::File::XML (BinaryEncoding => 'UTF8');
18447     use UUID::Tiny ':std';
18448
18449     my $xml = shift() or return undef;
18450
18451     my $r;
18452
18453     # Prevent errors in XML parsing from blowing out ungracefully
18454     eval {
18455         $r = MARC::Record->new_from_xml( $xml );
18456         1;
18457     } or do {
18458        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18459     };
18460
18461     if (!$r) {
18462        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18463     }
18464
18465     # From http://www.loc.gov/standards/sourcelist/subject.html
18466     my $thes_code_map = {
18467         a => 'lcsh',
18468         b => 'lcshac',
18469         c => 'mesh',
18470         d => 'nal',
18471         k => 'cash',
18472         n => 'notapplicable',
18473         r => 'aat',
18474         s => 'sears',
18475         v => 'rvm',
18476     };
18477
18478     # Default to "No attempt to code" if the leader is horribly broken
18479     my $fixed_field = $r->field('008');
18480     my $thes_char = '|';
18481     if ($fixed_field) {
18482         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
18483     }
18484
18485     my $thes_code = 'UNDEFINED';
18486
18487     if ($thes_char eq 'z') {
18488         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
18489         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
18490     } elsif ($thes_code_map->{$thes_char}) {
18491         $thes_code = $thes_code_map->{$thes_char};
18492     }
18493
18494     my $auth_txt = '';
18495     my $head = $r->field('1..');
18496     if ($head) {
18497         # Concatenate all of these subfields together, prefixed by their code
18498         # to prevent collisions along the lines of "Fiction, North Carolina"
18499         foreach my $sf ($head->subfields()) {
18500             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
18501         }
18502     }
18503
18504     # Perhaps better to parameterize the spi and pass as a parameter
18505     $auth_txt =~ s/'//go;
18506
18507     if ($auth_txt) {
18508         my $result = spi_exec_query("SELECT public.naco_normalize('$auth_txt') AS norm_text");
18509         my $norm_txt = $result->{rows}[0]->{norm_text};
18510         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
18511     }
18512
18513     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
18514 $func$ LANGUAGE 'plperlu' IMMUTABLE;
18515
18516 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
18517 /**
18518 * Extract the authority heading, thesaurus, and NACO-normalized values
18519 * from an authority record. The primary purpose is to build a unique
18520 * index to defend against duplicated authority records from the same
18521 * thesaurus.
18522 */
18523 $$;
18524
18525 DROP INDEX authority.authority_record_unique_tcn;
18526 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
18527 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
18528
18529 ALTER TABLE acq.provider_contact
18530         ALTER COLUMN name SET NOT NULL;
18531
18532 ALTER TABLE actor.stat_cat
18533         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
18534
18535 -- Recreate some foreign keys that were somehow dropped, probably
18536 -- by some kind of cascade from an inherited table:
18537
18538 ALTER TABLE action.reservation_transit_copy
18539         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
18540                 REFERENCES booking.resource(id)
18541                 ON DELETE CASCADE
18542                 DEFERRABLE INITIALLY DEFERRED,
18543         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
18544                 REFERENCES booking.reservation(id)
18545                 ON DELETE SET NULL
18546                 DEFERRABLE INITIALLY DEFERRED;
18547
18548 CREATE INDEX user_bucket_item_target_user_idx
18549         ON container.user_bucket_item ( target_user );
18550
18551 CREATE INDEX m_c_t_collector_idx
18552         ON money.collections_tracker ( collector );
18553
18554 CREATE INDEX aud_actor_usr_address_hist_id_idx
18555         ON auditor.actor_usr_address_history ( id );
18556
18557 CREATE INDEX aud_actor_usr_hist_id_idx
18558         ON auditor.actor_usr_history ( id );
18559
18560 CREATE INDEX aud_asset_cn_hist_creator_idx
18561         ON auditor.asset_call_number_history ( creator );
18562
18563 CREATE INDEX aud_asset_cn_hist_editor_idx
18564         ON auditor.asset_call_number_history ( editor );
18565
18566 CREATE INDEX aud_asset_cp_hist_creator_idx
18567         ON auditor.asset_copy_history ( creator );
18568
18569 CREATE INDEX aud_asset_cp_hist_editor_idx
18570         ON auditor.asset_copy_history ( editor );
18571
18572 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18573         ON auditor.biblio_record_entry_history ( creator );
18574
18575 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18576         ON auditor.biblio_record_entry_history ( editor );
18577
18578 CREATE TABLE action.hold_request_note (
18579
18580     id     BIGSERIAL PRIMARY KEY,
18581     hold   BIGINT    NOT NULL REFERENCES action.hold_request (id)
18582                               ON DELETE CASCADE
18583                               DEFERRABLE INITIALLY DEFERRED,
18584     title  TEXT      NOT NULL,
18585     body   TEXT      NOT NULL,
18586     slip   BOOL      NOT NULL DEFAULT FALSE,
18587     pub    BOOL      NOT NULL DEFAULT FALSE,
18588     staff  BOOL      NOT NULL DEFAULT FALSE  -- created by staff
18589
18590 );
18591 CREATE INDEX ahrn_hold_idx ON action.hold_request_note (hold);
18592
18593 -- Tweak a constraint to add a CASCADE
18594
18595 ALTER TABLE action.hold_notification DROP CONSTRAINT hold_notification_hold_fkey;
18596
18597 ALTER TABLE action.hold_notification
18598         ADD CONSTRAINT hold_notification_hold_fkey
18599                 FOREIGN KEY (hold) REFERENCES action.hold_request (id)
18600                 ON DELETE CASCADE
18601                 DEFERRABLE INITIALLY DEFERRED;
18602
18603 CREATE TRIGGER asset_label_sortkey_trigger
18604     BEFORE UPDATE OR INSERT ON asset.call_number
18605     FOR EACH ROW EXECUTE PROCEDURE asset.label_normalizer();
18606
18607 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
18608 RETURNS VOID AS $$
18609 --
18610 -- Delete expired circulation bucket items for all users that have
18611 -- a setting for patron.max_reading_list_interval.
18612 --
18613 DECLARE
18614     today        TIMESTAMP WITH TIME ZONE;
18615     threshold    TIMESTAMP WITH TIME ZONE;
18616         usr_setting  RECORD;
18617 BEGIN
18618         SELECT date_trunc( 'day', now() ) INTO today;
18619         --
18620         FOR usr_setting in
18621                 SELECT
18622                         usr,
18623                         value
18624                 FROM
18625                         actor.usr_setting
18626                 WHERE
18627                         name = 'patron.max_reading_list_interval'
18628         LOOP
18629                 --
18630                 -- Make sure the setting is a valid interval
18631                 --
18632                 BEGIN
18633                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
18634                 EXCEPTION
18635                         WHEN OTHERS THEN
18636                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
18637                                         usr_setting.usr, usr_setting.value;
18638                                 CONTINUE;
18639                 END;
18640                 --
18641                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
18642                 --
18643         DELETE FROM container.copy_bucket_item
18644         WHERE
18645                 bucket IN
18646                 (
18647                     SELECT
18648                         id
18649                     FROM
18650                         container.copy_bucket
18651                     WHERE
18652                         owner = usr_setting.usr
18653                         AND btype = 'circ_history'
18654                 )
18655                 AND create_time < threshold;
18656         END LOOP;
18657         --
18658 END;
18659 $$ LANGUAGE plpgsql;
18660
18661 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
18662 /*
18663  * Delete expired circulation bucket items for all users that have
18664  * a setting for patron.max_reading_list_interval.
18665 */
18666 $$;
18667
18668 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
18669          ac_usr IN INTEGER
18670 ) RETURNS VOID AS $$
18671 --
18672 -- Delete old circulation bucket items for a specified user.
18673 -- "Old" means older than the interval specified by a
18674 -- user-level setting, if it is so specified.
18675 --
18676 DECLARE
18677     threshold TIMESTAMP WITH TIME ZONE;
18678 BEGIN
18679         -- Sanity check
18680         IF ac_usr IS NULL THEN
18681                 RETURN;
18682         END IF;
18683         -- Determine the threshold date that defines "old".  Subtract the
18684         -- interval from the system date, then truncate to midnight.
18685         SELECT
18686                 date_trunc( 
18687                         'day',
18688                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
18689                 )
18690         INTO
18691                 threshold
18692         FROM
18693                 actor.usr_setting
18694         WHERE
18695                 usr = ac_usr
18696                 AND name = 'patron.max_reading_list_interval';
18697         --
18698         IF threshold is null THEN
18699                 -- No interval defined; don't delete anything
18700                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
18701                 return;
18702         END IF;
18703         --
18704         -- RAISE NOTICE 'Date threshold: %', threshold;
18705         --
18706         -- Threshold found; do the delete
18707         delete from container.copy_bucket_item
18708         where
18709                 bucket in
18710                 (
18711                         select
18712                                 id
18713                         from
18714                                 container.copy_bucket
18715                         where
18716                                 owner = ac_usr
18717                                 and btype = 'circ_history'
18718                 )
18719                 and create_time < threshold;
18720         --
18721         RETURN;
18722 END;
18723 $$ LANGUAGE plpgsql;
18724
18725 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
18726 /*
18727  * Delete old circulation bucket items for a specified user.
18728  * "Old" means older than the interval specified by a
18729  * user-level setting, if it is so specified.
18730 */
18731 $$;
18732
18733 CREATE OR REPLACE VIEW reporter.hold_request_record AS
18734 SELECT  id,
18735     target,
18736     hold_type,
18737     CASE
18738         WHEN hold_type = 'T'
18739             THEN target
18740         WHEN hold_type = 'I'
18741             THEN (SELECT ssub.record_entry FROM serial.subscription ssub JOIN serial.issuance si ON (si.subscription = ssub.id) WHERE si.id = ahr.target)
18742         WHEN hold_type = 'V'
18743             THEN (SELECT cn.record FROM asset.call_number cn WHERE cn.id = ahr.target)
18744         WHEN hold_type IN ('C','R','F')
18745             THEN (SELECT cn.record FROM asset.call_number cn JOIN asset.copy cp ON (cn.id = cp.call_number) WHERE cp.id = ahr.target)
18746         WHEN hold_type = 'M'
18747             THEN (SELECT mr.master_record FROM metabib.metarecord mr WHERE mr.id = ahr.target)
18748     END AS bib_record
18749   FROM  action.hold_request ahr;
18750
18751 UPDATE  metabib.rec_descriptor
18752   SET   date1=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date1, ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
18753         date2=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date2, ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
18754
18755 -- Change some ints to bigints:
18756
18757 ALTER TABLE container.biblio_record_entry_bucket_item
18758         ALTER COLUMN target_biblio_record_entry SET DATA TYPE bigint;
18759
18760 ALTER TABLE vandelay.queued_bib_record
18761         ALTER COLUMN imported_as SET DATA TYPE bigint;
18762
18763 ALTER TABLE action.hold_copy_map
18764         ALTER COLUMN id SET DATA TYPE bigint;
18765
18766 -- Make due times get pushed to 23:59:59 on insert OR update
18767 DROP TRIGGER IF EXISTS push_due_date_tgr ON action.circulation;
18768 CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.push_circ_due_time();
18769
18770 COMMIT;
18771
18772 -- Some operations go outside of the transaction, because they may
18773 -- legitimately fail.
18774
18775 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
18776 \qecho doesn't exist; ignore those errors if they occur.
18777
18778 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
18779
18780 ALTER TABLE auditor.action_hold_request_history
18781 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
18782
18783 ALTER TABLE auditor.action_hold_request_history
18784 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
18785
18786 \qecho Outside of the transaction: adding indexes that may or may not exist.
18787 \qecho If any of these CREATE INDEX statements fails because the index already
18788 \qecho exists, ignore the failure.
18789
18790 CREATE INDEX acq_picklist_owner_idx   ON acq.picklist ( owner );
18791 CREATE INDEX acq_picklist_creator_idx ON acq.picklist ( creator );
18792 CREATE INDEX acq_picklist_editor_idx  ON acq.picklist ( editor );
18793 CREATE INDEX acq_po_note_creator_idx  ON acq.po_note ( creator );
18794 CREATE INDEX acq_po_note_editor_idx   ON acq.po_note ( editor );
18795 CREATE INDEX fund_alloc_allocator_idx ON acq.fund_allocation ( allocator );
18796 CREATE INDEX li_creator_idx   ON acq.lineitem ( creator );
18797 CREATE INDEX li_editor_idx    ON acq.lineitem ( editor );
18798 CREATE INDEX li_selector_idx  ON acq.lineitem ( selector );
18799 CREATE INDEX li_note_creator_idx  ON acq.lineitem_note ( creator );
18800 CREATE INDEX li_note_editor_idx   ON acq.lineitem_note ( editor );
18801 CREATE INDEX li_usr_attr_def_usr_idx  ON acq.lineitem_usr_attr_definition ( usr );
18802 CREATE INDEX po_editor_idx   ON acq.purchase_order ( editor );
18803 CREATE INDEX po_creator_idx  ON acq.purchase_order ( creator );
18804 CREATE INDEX acq_po_org_name_order_date_idx ON acq.purchase_order( ordering_agency, name, order_date );
18805 CREATE INDEX action_in_house_use_staff_idx  ON action.in_house_use ( staff );
18806 CREATE INDEX action_non_cat_circ_patron_idx ON action.non_cataloged_circulation ( patron );
18807 CREATE INDEX action_non_cat_circ_staff_idx  ON action.non_cataloged_circulation ( staff );
18808 CREATE INDEX action_survey_response_usr_idx ON action.survey_response ( usr );
18809 CREATE INDEX ahn_notify_staff_idx           ON action.hold_notification ( notify_staff );
18810 CREATE INDEX circ_all_usr_idx               ON action.circulation ( usr );
18811 CREATE INDEX circ_circ_staff_idx            ON action.circulation ( circ_staff );
18812 CREATE INDEX circ_checkin_staff_idx         ON action.circulation ( checkin_staff );
18813 CREATE INDEX hold_request_fulfillment_staff_idx ON action.hold_request ( fulfillment_staff );
18814 CREATE INDEX hold_request_requestor_idx     ON action.hold_request ( requestor );
18815 CREATE INDEX non_cat_in_house_use_staff_idx ON action.non_cat_in_house_use ( staff );
18816 CREATE INDEX actor_usr_note_creator_idx     ON actor.usr_note ( creator );
18817 CREATE INDEX actor_usr_standing_penalty_staff_idx ON actor.usr_standing_penalty ( staff );
18818 CREATE INDEX usr_org_unit_opt_in_staff_idx  ON actor.usr_org_unit_opt_in ( staff );
18819 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
18820 CREATE INDEX asset_copy_note_creator_idx    ON asset.copy_note ( creator );
18821 CREATE INDEX cp_creator_idx                 ON asset.copy ( creator );
18822 CREATE INDEX cp_editor_idx                  ON asset.copy ( editor );
18823
18824 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
18825
18826 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
18827
18828 \qecho If the following CREATE INDEX fails, It will be necessary to do some
18829 \qecho data cleanup as described in the comments.
18830
18831 CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
18832     ON authority.record_entry (authority.normalize_heading(marc))
18833         WHERE deleted IS FALSE or deleted = FALSE;
18834
18835 -- If the unique index fails, uncomment the following to create
18836 -- a regular index that will help find the duplicates in a hurry:
18837 --CREATE INDEX by_heading_and_thesaurus
18838 --    ON authority.record_entry (authority.normalize_heading(marc))
18839 --    WHERE deleted IS FALSE or deleted = FALSE
18840 --;
18841
18842 -- Then find the duplicates like so to get an idea of how much
18843 -- pain you're looking at to clean things up:
18844 --SELECT id, authority.normalize_heading(marc)
18845 --    FROM authority.record_entry
18846 --    WHERE authority.normalize_heading(marc) IN (
18847 --        SELECT authority.normalize_heading(marc)
18848 --        FROM authority.record_entry
18849 --        GROUP BY authority.normalize_heading(marc)
18850 --        HAVING COUNT(*) > 1
18851 --    )
18852 --;
18853
18854 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
18855 -- statement succeeds, drop the temporary index to avoid unnecessary
18856 -- duplication:
18857 -- DROP INDEX authority.by_heading_and_thesaurus;
18858
18859 \qecho Upgrade script completed.