]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
fix NACO normalization of four letter modifier characters
[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     # remove non-combining diacritics
6917     # this list of characters follows the NACO normalization spec,
6918     # but a looser but more comprehensive version might be
6919     # $txt =~ s/\pLm+//go;
6920     $txt =~ tr/\x{02B9}\x{02BA}\x{02BB}\x{02BC}//d;
6921
6922     $txt =~ s/\xE6/AE/go;   # Convert ae digraph
6923     $txt =~ s/\x{153}/OE/go;# Convert oe digraph
6924     $txt =~ s/\xFE/TH/go;   # Convert Icelandic thorn
6925
6926     $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
6927     $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
6928
6929     $txt =~ tr/\x{0251}\x{03B1}\x{03B2}\x{0262}\x{03B3}/AABGG/;     # Convert Latin and Greek
6930     $txt =~ tr/\x{2113}\xF0\x{111}\!\"\(\)\-\{\}\<\>\;\:\.\?\xA1\xBF\/\\\@\*\%\=\xB1\+\xAE\xA9\x{2117}\$\xA3\x{FFE1}\xB0\^\_\~\`/LDD /; # Convert Misc
6931     $txt =~ tr/\'\[\]\|//d;                         # Remove Misc
6932
6933     if ($sf && $sf =~ /^a/o) {
6934         my $commapos = index($txt,',');
6935         if ($commapos > -1) {
6936             if ($commapos != length($txt) - 1) {
6937                 my @list = split /,/, $txt;
6938                 my $first = shift @list;
6939                 $txt = $first . ',' . join(' ', @list);
6940             } else {
6941                 $txt =~ s/,/ /go;
6942             }
6943         }
6944     } else {
6945         $txt =~ s/,/ /go;
6946     }
6947
6948     $txt =~ s/\s+/ /go; # Compress multiple spaces
6949     $txt =~ s/^\s+//o;  # Remove leading space
6950     $txt =~ s/\s+$//o;  # Remove trailing space
6951
6952     # Encoding the outgoing string is good practice, but not strictly
6953     # necessary in this case because we've stripped everything from it
6954     return encode_utf8($txt);
6955 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6956
6957 -- Some handy functions, based on existing ones, to provide optional ingest normalization
6958
6959 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6960         SELECT SUBSTRING($1,$2);
6961 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6962
6963 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6964         SELECT SUBSTRING($1,1,$2);
6965 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6966
6967 CREATE OR REPLACE FUNCTION public.naco_normalize_keep_comma( TEXT ) RETURNS TEXT AS $func$
6968         SELECT public.naco_normalize($1,'a');
6969 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6970
6971 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
6972         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
6973 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6974
6975 -- And ... a table in which to register them
6976
6977 CREATE TABLE config.index_normalizer (
6978         id              SERIAL  PRIMARY KEY,
6979         name            TEXT    UNIQUE NOT NULL,
6980         description     TEXT,
6981         func            TEXT    NOT NULL,
6982         param_count     INT     NOT NULL DEFAULT 0
6983 );
6984
6985 CREATE TABLE config.metabib_field_index_norm_map (
6986         id      SERIAL  PRIMARY KEY,
6987         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6988         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6989         params  TEXT,
6990         pos     INT     NOT NULL DEFAULT 0
6991 );
6992
6993 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6994         'NACO Normalize',
6995         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
6996         'naco_normalize',
6997         0
6998 );
6999
7000 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7001         'Normalize date range',
7002         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
7003         'split_date_range',
7004         1
7005 );
7006
7007 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7008         'NACO Normalize -- retain first comma',
7009         '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.',
7010         'naco_normalize_keep_comma',
7011         0
7012 );
7013
7014 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7015         'Strip Diacritics',
7016         'Convert text to NFD form and remove non-spacing combining marks.',
7017         'remove_diacritics',
7018         0
7019 );
7020
7021 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7022         'Up-case',
7023         'Convert text upper case.',
7024         'uppercase',
7025         0
7026 );
7027
7028 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7029         'Down-case',
7030         'Convert text lower case.',
7031         'lowercase',
7032         0
7033 );
7034
7035 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7036         'Extract Dewey-like number',
7037         'Extract a string of numeric characters ther resembles a DDC number.',
7038         'call_number_dewey',
7039         0
7040 );
7041
7042 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7043         'Left truncation',
7044         'Discard the specified number of characters from the left side of the string.',
7045         'left_trunc',
7046         1
7047 );
7048
7049 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7050         'Right truncation',
7051         'Include only the specified number of characters from the left side of the string.',
7052         'right_trunc',
7053         1
7054 );
7055
7056 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7057         'First word',
7058         'Include only the first space-separated word of a string.',
7059         'first_word',
7060         0
7061 );
7062
7063 INSERT INTO config.metabib_field_index_norm_map (field,norm)
7064         SELECT  m.id,
7065                 i.id
7066           FROM  config.metabib_field m,
7067                 config.index_normalizer i
7068           WHERE i.func IN ('naco_normalize','split_date_range');
7069
7070 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
7071 DECLARE
7072     normalizer      RECORD;
7073     value           TEXT := '';
7074 BEGIN
7075
7076     value := NEW.value;
7077
7078     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
7079         FOR normalizer IN
7080             SELECT  n.func AS func,
7081                     n.param_count AS param_count,
7082                     m.params AS params
7083               FROM  config.index_normalizer n
7084                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
7085               WHERE field = NEW.field AND m.pos < 0
7086               ORDER BY m.pos LOOP
7087                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
7088                     quote_literal( value ) ||
7089                     CASE
7090                         WHEN normalizer.param_count > 0
7091                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
7092                             ELSE ''
7093                         END ||
7094                     ')' INTO value;
7095
7096         END LOOP;
7097
7098         NEW.value := value;
7099     END IF;
7100
7101     IF NEW.index_vector = ''::tsvector THEN
7102         RETURN NEW;
7103     END IF;
7104
7105     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
7106         FOR normalizer IN
7107             SELECT  n.func AS func,
7108                     n.param_count AS param_count,
7109                     m.params AS params
7110               FROM  config.index_normalizer n
7111                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
7112               WHERE field = NEW.field AND m.pos >= 0
7113               ORDER BY m.pos LOOP
7114                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
7115                     quote_literal( value ) ||
7116                     CASE
7117                         WHEN normalizer.param_count > 0
7118                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
7119                             ELSE ''
7120                         END ||
7121                     ')' INTO value;
7122
7123         END LOOP;
7124     END IF;
7125
7126     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
7127         NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
7128     ELSE
7129         NEW.index_vector = to_tsvector(TG_ARGV[0], value);
7130     END IF;
7131
7132     RETURN NEW;
7133 END;
7134 $$ LANGUAGE PLPGSQL;
7135
7136 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
7137
7138 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
7139
7140 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
7141     SELECT  ARRAY_TO_STRING(
7142                 oils_xpath(
7143                     $1 ||
7144                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
7145                     $2,
7146                     $4
7147                 ),
7148                 $3
7149             );
7150 $func$ LANGUAGE SQL IMMUTABLE;
7151
7152 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
7153     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
7154 $func$ LANGUAGE SQL IMMUTABLE;
7155
7156 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
7157     SELECT oils_xpath_string( $1, $2, '', $3 );
7158 $func$ LANGUAGE SQL IMMUTABLE;
7159
7160 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
7161     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
7162 $func$ LANGUAGE SQL IMMUTABLE;
7163
7164 CREATE TYPE metabib.field_entry_template AS (
7165         field_class     TEXT,
7166         field           INT,
7167         source          BIGINT,
7168         value           TEXT
7169 );
7170
7171 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
7172   use strict;
7173
7174   use XML::LibXSLT;
7175   use XML::LibXML;
7176
7177   my $doc = shift;
7178   my $xslt = shift;
7179
7180   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
7181   # methods of parsing XML documents and stylesheets, in the hopes of broader
7182   # compatibility with distributions
7183   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
7184
7185   # Cache the XML parser, if we do not already have one
7186   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
7187     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
7188
7189   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
7190
7191   # Cache the XSLT processor, if we do not already have one
7192   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
7193     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
7194
7195   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
7196     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
7197
7198   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
7199     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
7200
7201   return $stylesheet->output_string(
7202     $stylesheet->transform(
7203       $parser->parse_string($doc)
7204     )
7205   );
7206
7207 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
7208
7209 -- Add two columns so that the following function will compile.
7210 -- Eventually the label column will be NOT NULL, but not yet.
7211 ALTER TABLE config.metabib_field ADD COLUMN label TEXT;
7212 ALTER TABLE config.metabib_field ADD COLUMN facet_xpath TEXT;
7213
7214 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( rid BIGINT, default_joiner TEXT ) RETURNS SETOF metabib.field_entry_template AS $func$
7215 DECLARE
7216     bib     biblio.record_entry%ROWTYPE;
7217     idx     config.metabib_field%ROWTYPE;
7218     xfrm        config.xml_transform%ROWTYPE;
7219     prev_xfrm   TEXT;
7220     transformed_xml TEXT;
7221     xml_node    TEXT;
7222     xml_node_list   TEXT[];
7223     facet_text  TEXT;
7224     raw_text    TEXT;
7225     curr_text   TEXT;
7226     joiner      TEXT := default_joiner; -- XXX will index defs supply a joiner?
7227     output_row  metabib.field_entry_template%ROWTYPE;
7228 BEGIN
7229
7230     -- Get the record
7231     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7232
7233     -- Loop over the indexing entries
7234     FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP
7235
7236         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
7237
7238         -- See if we can skip the XSLT ... it's expensive
7239         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
7240             -- Can't skip the transform
7241             IF xfrm.xslt <> '---' THEN
7242                 transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt);
7243             ELSE
7244                 transformed_xml := bib.marc;
7245             END IF;
7246
7247             prev_xfrm := xfrm.name;
7248         END IF;
7249
7250         xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7251
7252         raw_text := NULL;
7253         FOR xml_node IN SELECT x FROM explode_array(xml_node_list) AS x LOOP
7254             CONTINUE WHEN xml_node !~ E'^\\s*<';
7255
7256             curr_text := ARRAY_TO_STRING(
7257                 oils_xpath( '//text()',
7258                     REGEXP_REPLACE( -- This escapes all &s not followed by "amp;".  Data ise returned from oils_xpath (above) in UTF-8, not entity encoded
7259                         REGEXP_REPLACE( -- This escapes embeded <s
7260                             xml_node,
7261                             $re$(>[^<]+)(<)([^>]+<)$re$,
7262                             E'\\1&lt;\\3',
7263                             'g'
7264                         ),
7265                         '&(?!amp;)',
7266                         '&amp;',
7267                         'g'
7268                     )
7269                 ),
7270                 ' '
7271             );
7272
7273             CONTINUE WHEN curr_text IS NULL OR curr_text = '';
7274
7275             IF raw_text IS NOT NULL THEN
7276                 raw_text := raw_text || joiner;
7277             END IF;
7278
7279             raw_text := COALESCE(raw_text,'') || curr_text;
7280
7281             -- insert raw node text for faceting
7282             IF idx.facet_field THEN
7283
7284                 IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN
7285                     facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7286                 ELSE
7287                     facet_text := curr_text;
7288                 END IF;
7289
7290                 output_row.field_class = idx.field_class;
7291                 output_row.field = -1 * idx.id;
7292                 output_row.source = rid;
7293                 output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g'));
7294
7295                 RETURN NEXT output_row;
7296             END IF;
7297
7298         END LOOP;
7299
7300         CONTINUE WHEN raw_text IS NULL OR raw_text = '';
7301
7302         -- insert combined node text for searching
7303         IF idx.search_field THEN
7304             output_row.field_class = idx.field_class;
7305             output_row.field = idx.id;
7306             output_row.source = rid;
7307             output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g'));
7308
7309             RETURN NEXT output_row;
7310         END IF;
7311
7312     END LOOP;
7313
7314 END;
7315 $func$ LANGUAGE PLPGSQL;
7316
7317 -- default to a space joiner
7318 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( BIGINT ) RETURNS SETOF metabib.field_entry_template AS $func$
7319         SELECT * FROM biblio.extract_metabib_field_entry($1, ' ');
7320 $func$ LANGUAGE SQL;
7321
7322 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
7323
7324 use MARC::Record;
7325 use MARC::File::XML (BinaryEncoding => 'UTF-8');
7326
7327 my $xml = shift;
7328 my $r = MARC::Record->new_from_xml( $xml );
7329
7330 return_next( { tag => 'LDR', value => $r->leader } );
7331
7332 for my $f ( $r->fields ) {
7333     if ($f->is_control_field) {
7334         return_next({ tag => $f->tag, value => $f->data });
7335     } else {
7336         for my $s ($f->subfields) {
7337             return_next({
7338                 tag      => $f->tag,
7339                 ind1     => $f->indicator(1),
7340                 ind2     => $f->indicator(2),
7341                 subfield => $s->[0],
7342                 value    => $s->[1]
7343             });
7344
7345             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
7346                 my $trim = $f->indicator(2) || 0;
7347                 return_next({
7348                     tag      => 'tnf',
7349                     ind1     => $f->indicator(1),
7350                     ind2     => $f->indicator(2),
7351                     subfield => 'a',
7352                     value    => substr( $s->[1], $trim )
7353                 });
7354             }
7355         }
7356     }
7357 }
7358
7359 return undef;
7360
7361 $func$ LANGUAGE PLPERLU;
7362
7363 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( rid BIGINT ) RETURNS SETOF metabib.full_rec AS $func$
7364 DECLARE
7365     bib biblio.record_entry%ROWTYPE;
7366     output  metabib.full_rec%ROWTYPE;
7367     field   RECORD;
7368 BEGIN
7369     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7370
7371     FOR field IN SELECT * FROM biblio.flatten_marc( bib.marc ) LOOP
7372         output.record := rid;
7373         output.ind1 := field.ind1;
7374         output.ind2 := field.ind2;
7375         output.tag := field.tag;
7376         output.subfield := field.subfield;
7377         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
7378             output.value := naco_normalize(field.value, field.subfield);
7379         ELSE
7380             output.value := field.value;
7381         END IF;
7382
7383         CONTINUE WHEN output.value IS NULL;
7384
7385         RETURN NEXT output;
7386     END LOOP;
7387 END;
7388 $func$ LANGUAGE PLPGSQL;
7389
7390 -- functions to create auditor objects
7391
7392 CREATE FUNCTION auditor.create_auditor_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7393 BEGIN
7394     EXECUTE $$
7395         CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
7396     $$;
7397         RETURN TRUE;
7398 END;
7399 $creator$ LANGUAGE 'plpgsql';
7400
7401 CREATE FUNCTION auditor.create_auditor_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7402 BEGIN
7403     EXECUTE $$
7404         CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history (
7405             audit_id    BIGINT                          PRIMARY KEY,
7406             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
7407             audit_action        TEXT                            NOT NULL,
7408             LIKE $$ || sch || $$.$$ || tbl || $$
7409         );
7410     $$;
7411         RETURN TRUE;
7412 END;
7413 $creator$ LANGUAGE 'plpgsql';
7414
7415 CREATE FUNCTION auditor.create_auditor_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7416 BEGIN
7417     EXECUTE $$
7418         CREATE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ()
7419         RETURNS TRIGGER AS $func$
7420         BEGIN
7421             INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history
7422                 SELECT  nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
7423                     now(),
7424                     SUBSTR(TG_OP,1,1),
7425                     OLD.*;
7426             RETURN NULL;
7427         END;
7428         $func$ LANGUAGE 'plpgsql';
7429     $$;
7430         RETURN TRUE;
7431 END;
7432 $creator$ LANGUAGE 'plpgsql';
7433
7434 CREATE FUNCTION auditor.create_auditor_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7435 BEGIN
7436     EXECUTE $$
7437         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
7438             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
7439             EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ();
7440     $$;
7441         RETURN TRUE;
7442 END;
7443 $creator$ LANGUAGE 'plpgsql';
7444
7445 CREATE FUNCTION auditor.create_auditor_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7446 BEGIN
7447     EXECUTE $$
7448         CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
7449             SELECT      -1, now() as audit_time, '-' as audit_action, *
7450               FROM      $$ || sch || $$.$$ || tbl || $$
7451                 UNION ALL
7452             SELECT      *
7453               FROM      auditor.$$ || sch || $$_$$ || tbl || $$_history;
7454     $$;
7455         RETURN TRUE;
7456 END;
7457 $creator$ LANGUAGE 'plpgsql';
7458
7459 DROP FUNCTION IF EXISTS auditor.create_auditor (TEXT, TEXT);
7460
7461 -- The main event
7462
7463 CREATE FUNCTION auditor.create_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7464 BEGIN
7465     PERFORM auditor.create_auditor_seq(sch, tbl);
7466     PERFORM auditor.create_auditor_history(sch, tbl);
7467     PERFORM auditor.create_auditor_func(sch, tbl);
7468     PERFORM auditor.create_auditor_update_trigger(sch, tbl);
7469     PERFORM auditor.create_auditor_lifecycle(sch, tbl);
7470     RETURN TRUE;
7471 END;
7472 $creator$ LANGUAGE 'plpgsql';
7473
7474 ALTER TABLE action.hold_request ADD COLUMN cut_in_line BOOL;
7475
7476 ALTER TABLE action.hold_request
7477 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
7478
7479 ALTER TABLE action.hold_request
7480 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
7481
7482 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_current_copy_fkey;
7483
7484 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_hold_type_check;
7485
7486 UPDATE config.index_normalizer SET param_count = 0 WHERE func = 'split_date_range';
7487
7488 CREATE INDEX actor_usr_usrgroup_idx ON actor.usr (usrgroup);
7489
7490 -- Add claims_never_checked_out_count to actor.usr, related history
7491
7492 ALTER TABLE actor.usr ADD COLUMN
7493         claims_never_checked_out_count  INT         NOT NULL DEFAULT 0;
7494
7495 ALTER TABLE AUDITOR.actor_usr_history ADD COLUMN 
7496         claims_never_checked_out_count INT;
7497
7498 DROP VIEW IF EXISTS auditor.actor_usr_lifecycle;
7499
7500 SELECT auditor.create_auditor_lifecycle( 'actor', 'usr' );
7501
7502 -----------
7503
7504 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
7505 BEGIN
7506         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
7507                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
7508                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
7509                 END IF;
7510                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
7511                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
7512                 END IF;
7513                 IF NEW.stop_fines = 'LOST' THEN
7514                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
7515                 END IF;
7516         END IF;
7517         RETURN NEW;
7518 END;
7519 $$ LANGUAGE 'plpgsql';
7520
7521 -- Create new table acq.fund_allocation_percent
7522 -- Populate it from acq.fund_allocation
7523 -- Convert all percentages to amounts in acq.fund_allocation
7524
7525 CREATE TABLE acq.fund_allocation_percent
7526 (
7527     id                   SERIAL            PRIMARY KEY,
7528     funding_source       INT               NOT NULL REFERENCES acq.funding_source
7529                                                DEFERRABLE INITIALLY DEFERRED,
7530     org                  INT               NOT NULL REFERENCES actor.org_unit
7531                                                DEFERRABLE INITIALLY DEFERRED,
7532     fund_code            TEXT,
7533     percent              NUMERIC           NOT NULL,
7534     allocator            INTEGER           NOT NULL REFERENCES actor.usr
7535                                                DEFERRABLE INITIALLY DEFERRED,
7536     note                 TEXT,
7537     create_time          TIMESTAMPTZ       NOT NULL DEFAULT now(),
7538     CONSTRAINT logical_key UNIQUE( funding_source, org, fund_code ),
7539     CONSTRAINT percentage_range CHECK( percent >= 0 AND percent <= 100 )
7540 );
7541
7542 -- Trigger function to validate combination of org_unit and fund_code
7543
7544 CREATE OR REPLACE FUNCTION acq.fund_alloc_percent_val()
7545 RETURNS TRIGGER AS $$
7546 --
7547 DECLARE
7548 --
7549 dummy int := 0;
7550 --
7551 BEGIN
7552     SELECT
7553         1
7554     INTO
7555         dummy
7556     FROM
7557         acq.fund
7558     WHERE
7559         org = NEW.org
7560         AND code = NEW.fund_code
7561         LIMIT 1;
7562     --
7563     IF dummy = 1 then
7564         RETURN NEW;
7565     ELSE
7566         RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code;
7567     END IF;
7568 END;
7569 $$ LANGUAGE plpgsql;
7570
7571 CREATE TRIGGER acq_fund_alloc_percent_val_trig
7572     BEFORE INSERT OR UPDATE ON acq.fund_allocation_percent
7573     FOR EACH ROW EXECUTE PROCEDURE acq.fund_alloc_percent_val();
7574
7575 CREATE OR REPLACE FUNCTION acq.fap_limit_100()
7576 RETURNS TRIGGER AS $$
7577 DECLARE
7578 --
7579 total_percent numeric;
7580 --
7581 BEGIN
7582     SELECT
7583         sum( percent )
7584     INTO
7585         total_percent
7586     FROM
7587         acq.fund_allocation_percent AS fap
7588     WHERE
7589         fap.funding_source = NEW.funding_source;
7590     --
7591     IF total_percent > 100 THEN
7592         RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %',
7593             NEW.funding_source;
7594     ELSE
7595         RETURN NEW;
7596     END IF;
7597 END;
7598 $$ LANGUAGE plpgsql;
7599
7600 CREATE TRIGGER acqfap_limit_100_trig
7601     AFTER INSERT OR UPDATE ON acq.fund_allocation_percent
7602     FOR EACH ROW EXECUTE PROCEDURE acq.fap_limit_100();
7603
7604 -- Populate new table from acq.fund_allocation
7605
7606 INSERT INTO acq.fund_allocation_percent
7607 (
7608     funding_source,
7609     org,
7610     fund_code,
7611     percent,
7612     allocator,
7613     note,
7614     create_time
7615 )
7616     SELECT
7617         fa.funding_source,
7618         fund.org,
7619         fund.code,
7620         fa.percent,
7621         fa.allocator,
7622         fa.note,
7623         fa.create_time
7624     FROM
7625         acq.fund_allocation AS fa
7626             INNER JOIN acq.fund AS fund
7627                 ON ( fa.fund = fund.id )
7628     WHERE
7629         fa.percent is not null
7630     ORDER BY
7631         fund.org;
7632
7633 -- Temporary function to convert percentages to amounts in acq.fund_allocation
7634
7635 -- Algorithm to apply to each funding source:
7636
7637 -- 1. Add up the credits.
7638 -- 2. Add up the percentages.
7639 -- 3. Multiply the sum of the percentages times the sum of the credits.  Drop any
7640 --    fractional cents from the result.  This is the total amount to be allocated.
7641 -- 4. For each allocation: multiply the percentage by the total allocation.  Drop any
7642 --    fractional cents to get a preliminary amount.
7643 -- 5. Add up the preliminary amounts for all the allocations.
7644 -- 6. Subtract the results of step 5 from the result of step 3.  The difference is the
7645 --    number of residual cents (resulting from having dropped fractional cents) that
7646 --    must be distributed across the funds in order to make the total of the amounts
7647 --    match the total allocation.
7648 -- 7. Make a second pass through the allocations, in decreasing order of the fractional
7649 --    cents that were dropped from their amounts in step 4.  Add one cent to the amount
7650 --    for each successive fund, until all the residual cents have been exhausted.
7651
7652 -- Result: the sum of the individual allocations now equals the total to be allocated,
7653 -- to the penny.  The individual amounts match the percentages as closely as possible,
7654 -- given the constraint that the total must match.
7655
7656 CREATE OR REPLACE FUNCTION acq.apply_percents()
7657 RETURNS VOID AS $$
7658 declare
7659 --
7660 tot              RECORD;
7661 fund             RECORD;
7662 tot_cents        INTEGER;
7663 src              INTEGER;
7664 id               INTEGER[];
7665 curr_id          INTEGER;
7666 pennies          NUMERIC[];
7667 curr_amount      NUMERIC;
7668 i                INTEGER;
7669 total_of_floors  INTEGER;
7670 total_percent    NUMERIC;
7671 total_allocation INTEGER;
7672 residue          INTEGER;
7673 --
7674 begin
7675         RAISE NOTICE 'Applying percents';
7676         FOR tot IN
7677                 SELECT
7678                         fsrc.funding_source,
7679                         sum( fsrc.amount ) AS total
7680                 FROM
7681                         acq.funding_source_credit AS fsrc
7682                 WHERE fsrc.funding_source IN
7683                         ( SELECT DISTINCT fa.funding_source
7684                           FROM acq.fund_allocation AS fa
7685                           WHERE fa.percent IS NOT NULL )
7686                 GROUP BY
7687                         fsrc.funding_source
7688         LOOP
7689                 tot_cents = floor( tot.total * 100 );
7690                 src = tot.funding_source;
7691                 RAISE NOTICE 'Funding source % total %',
7692                         src, tot_cents;
7693                 i := 0;
7694                 total_of_floors := 0;
7695                 total_percent := 0;
7696                 --
7697                 FOR fund in
7698                         SELECT
7699                                 fa.id,
7700                                 fa.percent,
7701                                 floor( fa.percent * tot_cents / 100 ) as floor_pennies
7702                         FROM
7703                                 acq.fund_allocation AS fa
7704                         WHERE
7705                                 fa.funding_source = src
7706                                 AND fa.percent IS NOT NULL
7707                         ORDER BY
7708                                 mod( fa.percent * tot_cents / 100, 1 ),
7709                                 fa.fund,
7710                                 fa.id
7711                 LOOP
7712                         RAISE NOTICE '   %: %',
7713                                 fund.id,
7714                                 fund.floor_pennies;
7715                         i := i + 1;
7716                         id[i] = fund.id;
7717                         pennies[i] = fund.floor_pennies;
7718                         total_percent := total_percent + fund.percent;
7719                         total_of_floors := total_of_floors + pennies[i];
7720                 END LOOP;
7721                 total_allocation := floor( total_percent * tot_cents /100 );
7722                 RAISE NOTICE 'Total before distributing residue: %', total_of_floors;
7723                 residue := total_allocation - total_of_floors;
7724                 RAISE NOTICE 'Residue: %', residue;
7725                 --
7726                 -- Post the calculated amounts, revising as needed to
7727                 -- distribute the rounding error
7728                 --
7729                 WHILE i > 0 LOOP
7730                         IF residue > 0 THEN
7731                                 pennies[i] = pennies[i] + 1;
7732                                 residue := residue - 1;
7733                         END IF;
7734                         --
7735                         -- Post amount
7736                         --
7737                         curr_id     := id[i];
7738                         curr_amount := trunc( pennies[i] / 100, 2 );
7739                         --
7740                         UPDATE
7741                                 acq.fund_allocation AS fa
7742                         SET
7743                                 amount = curr_amount,
7744                                 percent = NULL
7745                         WHERE
7746                                 fa.id = curr_id;
7747                         --
7748                         RAISE NOTICE '   ID % and amount %',
7749                                 curr_id,
7750                                 curr_amount;
7751                         i = i - 1;
7752                 END LOOP;
7753         END LOOP;
7754 end;
7755 $$ LANGUAGE 'plpgsql';
7756
7757 -- Run the temporary function
7758
7759 select * from acq.apply_percents();
7760
7761 -- Drop the temporary function now that we're done with it
7762
7763 DROP FUNCTION IF EXISTS acq.apply_percents();
7764
7765 -- Eliminate acq.fund_allocation.percent, which has been moved to the acq.fund_allocation_percent table.
7766
7767 -- If the following step fails, it's probably because there are still some non-null percent values in
7768 -- acq.fund_allocation.  They should have all been converted to amounts, and then set to null, by a
7769 -- previous upgrade step based on 0049.schema.acq_funding_allocation_percent.sql.  If there are any
7770 -- non-null values, then either that step didn't run, or it didn't work, or some non-null values
7771 -- slipped in afterwards.
7772
7773 -- To convert any remaining percents to amounts: create, run, and then drop the temporary stored
7774 -- procedure acq.apply_percents() as defined above.
7775
7776 ALTER TABLE acq.fund_allocation
7777 ALTER COLUMN amount SET NOT NULL;
7778
7779 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
7780     SELECT  fund,
7781             SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
7782     FROM acq.fund_allocation a
7783          JOIN acq.fund f ON (a.fund = f.id)
7784          JOIN acq.funding_source s ON (a.funding_source = s.id)
7785     GROUP BY 1;
7786
7787 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
7788     SELECT  funding_source,
7789             SUM(a.amount)::NUMERIC(100,2) AS amount
7790     FROM  acq.fund_allocation a
7791     GROUP BY 1;
7792
7793 ALTER TABLE acq.fund_allocation
7794 DROP COLUMN percent;
7795
7796 CREATE TABLE asset.copy_location_order
7797 (
7798         id              SERIAL           PRIMARY KEY,
7799         location        INT              NOT NULL
7800                                              REFERENCES asset.copy_location
7801                                              ON DELETE CASCADE
7802                                              DEFERRABLE INITIALLY DEFERRED,
7803         org             INT              NOT NULL
7804                                              REFERENCES actor.org_unit
7805                                              ON DELETE CASCADE
7806                                              DEFERRABLE INITIALLY DEFERRED,
7807         position        INT              NOT NULL DEFAULT 0,
7808         CONSTRAINT acplo_once_per_org UNIQUE ( location, org )
7809 );
7810
7811 ALTER TABLE money.credit_card_payment ADD COLUMN cc_processor TEXT;
7812
7813 -- If you ran this before its most recent incarnation:
7814 -- delete from config.upgrade_log where version = '0328';
7815 -- alter table money.credit_card_payment drop column cc_name;
7816
7817 ALTER TABLE money.credit_card_payment ADD COLUMN cc_first_name TEXT;
7818 ALTER TABLE money.credit_card_payment ADD COLUMN cc_last_name TEXT;
7819
7820 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$
7821 DECLARE
7822     current_group    permission.grp_tree%ROWTYPE;
7823     user_object    actor.usr%ROWTYPE;
7824     item_object    asset.copy%ROWTYPE;
7825     cn_object    asset.call_number%ROWTYPE;
7826     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
7827     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
7828     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
7829 BEGIN
7830     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7831     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7832     SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number;
7833     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
7834     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
7835
7836     LOOP 
7837         -- for each potential matchpoint for this ou and group ...
7838         FOR current_mp IN
7839             SELECT  m.*
7840               FROM  config.circ_matrix_matchpoint m
7841                     JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
7842                     LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
7843               WHERE m.grp = current_group.id
7844                     AND m.active
7845                     AND (m.copy_owning_lib IS NULL OR cn_object.owning_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_owning_lib) ))
7846                     AND (m.copy_circ_lib   IS NULL OR item_object.circ_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_circ_lib)   ))
7847               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
7848                     CASE WHEN m.copy_owning_lib IS NOT NULL
7849                         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 )
7850                         ELSE 0
7851                     END +
7852                     CASE WHEN m.copy_circ_lib IS NOT NULL
7853                         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 )
7854                         ELSE 0
7855                     END +
7856                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
7857                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
7858                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
7859                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
7860                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
7861                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
7862                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
7863                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
7864                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
7865
7866             IF current_mp.is_renewal IS NOT NULL THEN
7867                 CONTINUE WHEN current_mp.is_renewal <> renewal;
7868             END IF;
7869
7870             IF current_mp.circ_modifier IS NOT NULL THEN
7871                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
7872             END IF;
7873
7874             IF current_mp.marc_type IS NOT NULL THEN
7875                 IF item_object.circ_as_type IS NOT NULL THEN
7876                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
7877                 ELSE
7878                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
7879                 END IF;
7880             END IF;
7881
7882             IF current_mp.marc_form IS NOT NULL THEN
7883                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
7884             END IF;
7885
7886             IF current_mp.marc_vr_format IS NOT NULL THEN
7887                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
7888             END IF;
7889
7890             IF current_mp.ref_flag IS NOT NULL THEN
7891                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
7892             END IF;
7893
7894             IF current_mp.juvenile_flag IS NOT NULL THEN
7895                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
7896             END IF;
7897
7898             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
7899                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
7900             END IF;
7901
7902             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
7903                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
7904             END IF;
7905
7906
7907             -- everything was undefined or matched
7908             matchpoint = current_mp;
7909
7910             EXIT WHEN matchpoint.id IS NOT NULL;
7911         END LOOP;
7912
7913         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
7914
7915         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
7916     END LOOP;
7917
7918     RETURN matchpoint;
7919 END;
7920 $func$ LANGUAGE plpgsql;
7921
7922 CREATE TYPE action.hold_stats AS (
7923     hold_count              INT,
7924     copy_count              INT,
7925     available_count         INT,
7926     total_copy_ratio        FLOAT,
7927     available_copy_ratio    FLOAT
7928 );
7929
7930 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
7931 DECLARE
7932     output          action.hold_stats%ROWTYPE;
7933     hold_count      INT := 0;
7934     copy_count      INT := 0;
7935     available_count INT := 0;
7936     hold_map_data   RECORD;
7937 BEGIN
7938
7939     output.hold_count := 0;
7940     output.copy_count := 0;
7941     output.available_count := 0;
7942
7943     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
7944       FROM  action.hold_copy_map m
7945             JOIN action.hold_request h ON (m.hold = h.id)
7946       WHERE m.target_copy = copy_id
7947             AND NOT h.frozen;
7948
7949     output.hold_count := hold_count;
7950
7951     IF output.hold_count > 0 THEN
7952         FOR hold_map_data IN
7953             SELECT  DISTINCT m.target_copy,
7954                     acp.status
7955               FROM  action.hold_copy_map m
7956                     JOIN asset.copy acp ON (m.target_copy = acp.id)
7957                     JOIN action.hold_request h ON (m.hold = h.id)
7958               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
7959         LOOP
7960             output.copy_count := output.copy_count + 1;
7961             IF hold_map_data.status IN (0,7,12) THEN
7962                 output.available_count := output.available_count + 1;
7963             END IF;
7964         END LOOP;
7965         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
7966         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
7967
7968     END IF;
7969
7970     RETURN output;
7971
7972 END;
7973 $func$ LANGUAGE PLPGSQL;
7974
7975 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN total_copy_hold_ratio FLOAT;
7976 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN available_copy_hold_ratio FLOAT;
7977
7978 ALTER TABLE config.circ_matrix_matchpoint DROP CONSTRAINT ep_once_per_grp_loc_mod_marc;
7979
7980 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_circ_lib   INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7981 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_owning_lib INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7982
7983 ALTER TABLE config.circ_matrix_matchpoint ADD CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (
7984     grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag,
7985     juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal, copy_circ_lib,
7986     copy_owning_lib
7987 );
7988
7989 -- Return the correct fail_part when the item can't be found
7990 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$
7991 DECLARE
7992     user_object        actor.usr%ROWTYPE;
7993     standing_penalty    config.standing_penalty%ROWTYPE;
7994     item_object        asset.copy%ROWTYPE;
7995     item_status_object    config.copy_status%ROWTYPE;
7996     item_location_object    asset.copy_location%ROWTYPE;
7997     result            action.matrix_test_result;
7998     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
7999     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
8000     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
8001     hold_ratio          action.hold_stats%ROWTYPE;
8002     penalty_type         TEXT;
8003     tmp_grp         INT;
8004     items_out        INT;
8005     context_org_list        INT[];
8006     done            BOOL := FALSE;
8007 BEGIN
8008     result.success := TRUE;
8009
8010     -- Fail if the user is BARRED
8011     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8012
8013     -- Fail if we couldn't find the user 
8014     IF user_object.id IS NULL THEN
8015         result.fail_part := 'no_user';
8016         result.success := FALSE;
8017         done := TRUE;
8018         RETURN NEXT result;
8019         RETURN;
8020     END IF;
8021
8022     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
8023
8024     -- Fail if we couldn't find the item 
8025     IF item_object.id IS NULL THEN
8026         result.fail_part := 'no_item';
8027         result.success := FALSE;
8028         done := TRUE;
8029         RETURN NEXT result;
8030         RETURN;
8031     END IF;
8032
8033     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
8034     result.matchpoint := circ_test.id;
8035
8036     -- Fail if we couldn't find a matchpoint
8037     IF result.matchpoint IS NULL THEN
8038         result.fail_part := 'no_matchpoint';
8039         result.success := FALSE;
8040         done := TRUE;
8041         RETURN NEXT result;
8042     END IF;
8043
8044     IF user_object.barred IS TRUE THEN
8045         result.fail_part := 'actor.usr.barred';
8046         result.success := FALSE;
8047         done := TRUE;
8048         RETURN NEXT result;
8049     END IF;
8050
8051     -- Fail if the item can't circulate
8052     IF item_object.circulate IS FALSE THEN
8053         result.fail_part := 'asset.copy.circulate';
8054         result.success := FALSE;
8055         done := TRUE;
8056         RETURN NEXT result;
8057     END IF;
8058
8059     -- Fail if the item isn't in a circulateable status on a non-renewal
8060     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN
8061         result.fail_part := 'asset.copy.status';
8062         result.success := FALSE;
8063         done := TRUE;
8064         RETURN NEXT result;
8065     ELSIF renewal AND item_object.status <> 1 THEN
8066         result.fail_part := 'asset.copy.status';
8067         result.success := FALSE;
8068         done := TRUE;
8069         RETURN NEXT result;
8070     END IF;
8071
8072     -- Fail if the item can't circulate because of the shelving location
8073     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
8074     IF item_location_object.circulate IS FALSE THEN
8075         result.fail_part := 'asset.copy_location.circulate';
8076         result.success := FALSE;
8077         done := TRUE;
8078         RETURN NEXT result;
8079     END IF;
8080
8081     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
8082
8083     -- Fail if the test is set to hard non-circulating
8084     IF circ_test.circulate IS FALSE THEN
8085         result.fail_part := 'config.circ_matrix_test.circulate';
8086         result.success := FALSE;
8087         done := TRUE;
8088         RETURN NEXT result;
8089     END IF;
8090
8091     -- Fail if the total copy-hold ratio is too low
8092     IF circ_test.total_copy_hold_ratio IS NOT NULL THEN
8093         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
8094         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_test.total_copy_hold_ratio THEN
8095             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
8096             result.success := FALSE;
8097             done := TRUE;
8098             RETURN NEXT result;
8099         END IF;
8100     END IF;
8101
8102     -- Fail if the available copy-hold ratio is too low
8103     IF circ_test.available_copy_hold_ratio IS NOT NULL THEN
8104         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
8105         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_test.available_copy_hold_ratio THEN
8106             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
8107             result.success := FALSE;
8108             done := TRUE;
8109             RETURN NEXT result;
8110         END IF;
8111     END IF;
8112
8113     IF renewal THEN
8114         penalty_type = '%RENEW%';
8115     ELSE
8116         penalty_type = '%CIRC%';
8117     END IF;
8118
8119     FOR standing_penalty IN
8120         SELECT  DISTINCT csp.*
8121           FROM  actor.usr_standing_penalty usp
8122                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
8123           WHERE usr = match_user
8124                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
8125                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
8126                 AND csp.block_list LIKE penalty_type LOOP
8127
8128         result.fail_part := standing_penalty.name;
8129         result.success := FALSE;
8130         done := TRUE;
8131         RETURN NEXT result;
8132     END LOOP;
8133
8134     -- Fail if the user has too many items with specific circ_modifiers checked out
8135     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
8136         SELECT  INTO items_out COUNT(*)
8137           FROM  action.circulation circ
8138             JOIN asset.copy cp ON (cp.id = circ.target_copy)
8139           WHERE circ.usr = match_user
8140                AND circ.circ_lib IN ( SELECT * FROM explode_array(context_org_list) )
8141             AND circ.checkin_time IS NULL
8142             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
8143             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);
8144         IF items_out >= out_by_circ_mod.items_out THEN
8145             result.fail_part := 'config.circ_matrix_circ_mod_test';
8146             result.success := FALSE;
8147             done := TRUE;
8148             RETURN NEXT result;
8149         END IF;
8150     END LOOP;
8151
8152     -- If we passed everything, return the successful matchpoint id
8153     IF NOT done THEN
8154         RETURN NEXT result;
8155     END IF;
8156
8157     RETURN;
8158 END;
8159 $func$ LANGUAGE plpgsql;
8160
8161 CREATE TABLE config.remote_account (
8162     id          SERIAL  PRIMARY KEY,
8163     label       TEXT    NOT NULL,
8164     host        TEXT    NOT NULL,   -- name or IP, :port optional
8165     username    TEXT,               -- optional, since we could default to $USER
8166     password    TEXT,               -- optional, since we could use SSH keys, or anonymous login.
8167     account     TEXT,               -- aka profile or FTP "account" command
8168     path        TEXT,               -- aka directory
8169     owner       INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
8170     last_activity TIMESTAMP WITH TIME ZONE
8171 );
8172
8173 CREATE TABLE acq.edi_account (      -- similar tables can extend remote_account for other parts of EG
8174     provider    INT     NOT NULL REFERENCES acq.provider          (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
8175     in_dir      TEXT,   -- incoming messages dir (probably different than config.remote_account.path, the outgoing dir)
8176         vendcode    TEXT,
8177         vendacct    TEXT
8178
8179 ) INHERITS (config.remote_account);
8180
8181 ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
8182
8183 CREATE TABLE acq.claim_type (
8184         id             SERIAL           PRIMARY KEY,
8185         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8186                                                  DEFERRABLE INITIALLY DEFERRED,
8187         code           TEXT             NOT NULL,
8188         description    TEXT             NOT NULL,
8189         CONSTRAINT claim_type_once_per_org UNIQUE ( org_unit, code )
8190 );
8191
8192 CREATE TABLE acq.claim (
8193         id             SERIAL           PRIMARY KEY,
8194         type           INT              NOT NULL REFERENCES acq.claim_type
8195                                                  DEFERRABLE INITIALLY DEFERRED,
8196         lineitem_detail BIGINT          NOT NULL REFERENCES acq.lineitem_detail
8197                                                  DEFERRABLE INITIALLY DEFERRED
8198 );
8199
8200 CREATE TABLE acq.claim_policy (
8201         id              SERIAL       PRIMARY KEY,
8202         org_unit        INT          NOT NULL REFERENCES actor.org_unit
8203                                      DEFERRABLE INITIALLY DEFERRED,
8204         name            TEXT         NOT NULL,
8205         description     TEXT         NOT NULL,
8206         CONSTRAINT name_once_per_org UNIQUE (org_unit, name)
8207 );
8208
8209 -- Add a san column for EDI. 
8210 -- See: http://isbn.org/standards/home/isbn/us/san/san-qa.asp
8211
8212 ALTER TABLE acq.provider ADD COLUMN san INT;
8213
8214 ALTER TABLE acq.provider ALTER COLUMN san TYPE TEXT USING lpad(text(san), 7, '0');
8215
8216 -- null edi_default is OK... it has to be, since we have no values in acq.edi_account yet
8217 ALTER TABLE acq.provider ADD COLUMN edi_default INT REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
8218
8219 ALTER TABLE acq.provider
8220         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
8221
8222 ALTER TABLE acq.provider
8223         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
8224
8225 ALTER TABLE acq.provider
8226         ADD COLUMN url TEXT;
8227
8228 ALTER TABLE acq.provider
8229         ADD COLUMN email TEXT;
8230
8231 ALTER TABLE acq.provider
8232         ADD COLUMN phone TEXT;
8233
8234 ALTER TABLE acq.provider
8235         ADD COLUMN fax_phone TEXT;
8236
8237 ALTER TABLE acq.provider
8238         ADD COLUMN default_claim_policy INT
8239                 REFERENCES acq.claim_policy
8240                 DEFERRABLE INITIALLY DEFERRED;
8241
8242 ALTER TABLE action.transit_copy
8243 ADD COLUMN prev_dest INTEGER REFERENCES actor.org_unit( id )
8244                                                          DEFERRABLE INITIALLY DEFERRED;
8245
8246 DROP SCHEMA IF EXISTS booking CASCADE;
8247
8248 CREATE SCHEMA booking;
8249
8250 CREATE TABLE booking.resource_type (
8251         id             SERIAL          PRIMARY KEY,
8252         name           TEXT            NOT NULL,
8253         fine_interval  INTERVAL,
8254         fine_amount    DECIMAL(8,2)    NOT NULL DEFAULT 0,
8255         owner          INT             NOT NULL
8256                                        REFERENCES actor.org_unit( id )
8257                                        DEFERRABLE INITIALLY DEFERRED,
8258         catalog_item   BOOLEAN         NOT NULL DEFAULT FALSE,
8259         transferable   BOOLEAN         NOT NULL DEFAULT FALSE,
8260     record         BIGINT          REFERENCES biblio.record_entry (id)
8261                                        DEFERRABLE INITIALLY DEFERRED,
8262     max_fine       NUMERIC(8,2),
8263     elbow_room     INTERVAL,
8264     CONSTRAINT brt_name_and_record_once_per_owner UNIQUE(owner, name, record)
8265 );
8266
8267 CREATE TABLE booking.resource (
8268         id             SERIAL           PRIMARY KEY,
8269         owner          INT              NOT NULL
8270                                         REFERENCES actor.org_unit(id)
8271                                         DEFERRABLE INITIALLY DEFERRED,
8272         type           INT              NOT NULL
8273                                         REFERENCES booking.resource_type(id)
8274                                         DEFERRABLE INITIALLY DEFERRED,
8275         overbook       BOOLEAN          NOT NULL DEFAULT FALSE,
8276         barcode        TEXT             NOT NULL,
8277         deposit        BOOLEAN          NOT NULL DEFAULT FALSE,
8278         deposit_amount DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
8279         user_fee       DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
8280         CONSTRAINT br_unique UNIQUE (owner, barcode)
8281 );
8282
8283 -- For non-catalog items: hijack barcode for name/description
8284
8285 CREATE TABLE booking.resource_attr (
8286         id              SERIAL          PRIMARY KEY,
8287         owner           INT             NOT NULL
8288                                         REFERENCES actor.org_unit(id)
8289                                         DEFERRABLE INITIALLY DEFERRED,
8290         name            TEXT            NOT NULL,
8291         resource_type   INT             NOT NULL
8292                                         REFERENCES booking.resource_type(id)
8293                                         ON DELETE CASCADE
8294                                         DEFERRABLE INITIALLY DEFERRED,
8295         required        BOOLEAN         NOT NULL DEFAULT FALSE,
8296         CONSTRAINT bra_name_once_per_type UNIQUE(resource_type, name)
8297 );
8298
8299 CREATE TABLE booking.resource_attr_value (
8300         id               SERIAL         PRIMARY KEY,
8301         owner            INT            NOT NULL
8302                                         REFERENCES actor.org_unit(id)
8303                                         DEFERRABLE INITIALLY DEFERRED,
8304         attr             INT            NOT NULL
8305                                         REFERENCES booking.resource_attr(id)
8306                                         DEFERRABLE INITIALLY DEFERRED,
8307         valid_value      TEXT           NOT NULL,
8308         CONSTRAINT brav_logical_key UNIQUE(owner, attr, valid_value)
8309 );
8310
8311 CREATE TABLE booking.resource_attr_map (
8312         id               SERIAL         PRIMARY KEY,
8313         resource         INT            NOT NULL
8314                                         REFERENCES booking.resource(id)
8315                                         ON DELETE CASCADE
8316                                         DEFERRABLE INITIALLY DEFERRED,
8317         resource_attr    INT            NOT NULL
8318                                         REFERENCES booking.resource_attr(id)
8319                                         ON DELETE CASCADE
8320                                         DEFERRABLE INITIALLY DEFERRED,
8321         value            INT            NOT NULL
8322                                         REFERENCES booking.resource_attr_value(id)
8323                                         DEFERRABLE INITIALLY DEFERRED,
8324         CONSTRAINT bram_one_value_per_attr UNIQUE(resource, resource_attr)
8325 );
8326
8327 CREATE TABLE booking.reservation (
8328         request_time     TIMESTAMPTZ   NOT NULL DEFAULT now(),
8329         start_time       TIMESTAMPTZ,
8330         end_time         TIMESTAMPTZ,
8331         capture_time     TIMESTAMPTZ,
8332         cancel_time      TIMESTAMPTZ,
8333         pickup_time      TIMESTAMPTZ,
8334         return_time      TIMESTAMPTZ,
8335         booking_interval INTERVAL,
8336         fine_interval    INTERVAL,
8337         fine_amount      DECIMAL(8,2),
8338         target_resource_type  INT       NOT NULL
8339                                         REFERENCES booking.resource_type(id)
8340                                         ON DELETE CASCADE
8341                                         DEFERRABLE INITIALLY DEFERRED,
8342         target_resource  INT            REFERENCES booking.resource(id)
8343                                         ON DELETE CASCADE
8344                                         DEFERRABLE INITIALLY DEFERRED,
8345         current_resource INT            REFERENCES booking.resource(id)
8346                                         ON DELETE CASCADE
8347                                         DEFERRABLE INITIALLY DEFERRED,
8348         request_lib      INT            NOT NULL
8349                                         REFERENCES actor.org_unit(id)
8350                                         DEFERRABLE INITIALLY DEFERRED,
8351         pickup_lib       INT            REFERENCES actor.org_unit(id)
8352                                         DEFERRABLE INITIALLY DEFERRED,
8353         capture_staff    INT            REFERENCES actor.usr(id)
8354                                         DEFERRABLE INITIALLY DEFERRED,
8355     max_fine         NUMERIC(8,2)
8356 ) INHERITS (money.billable_xact);
8357
8358 ALTER TABLE booking.reservation ADD PRIMARY KEY (id);
8359
8360 ALTER TABLE booking.reservation
8361         ADD CONSTRAINT booking_reservation_usr_fkey
8362         FOREIGN KEY (usr) REFERENCES actor.usr (id)
8363         DEFERRABLE INITIALLY DEFERRED;
8364
8365 CREATE TABLE booking.reservation_attr_value_map (
8366         id               SERIAL         PRIMARY KEY,
8367         reservation      INT            NOT NULL
8368                                         REFERENCES booking.reservation(id)
8369                                         ON DELETE CASCADE
8370                                         DEFERRABLE INITIALLY DEFERRED,
8371         attr_value       INT            NOT NULL
8372                                         REFERENCES booking.resource_attr_value(id)
8373                                         ON DELETE CASCADE
8374                                         DEFERRABLE INITIALLY DEFERRED,
8375         CONSTRAINT bravm_logical_key UNIQUE(reservation, attr_value)
8376 );
8377
8378 -- represents a circ chain summary
8379 CREATE TYPE action.circ_chain_summary AS (
8380     num_circs INTEGER,
8381     start_time TIMESTAMP WITH TIME ZONE,
8382     checkout_workstation TEXT,
8383     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
8384     last_stop_fines TEXT,
8385     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
8386     last_renewal_workstation TEXT, -- NULL if no renewals
8387     last_checkin_workstation TEXT,
8388     last_checkin_time TIMESTAMP WITH TIME ZONE,
8389     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
8390 );
8391
8392 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id INTEGER ) RETURNS SETOF action.circulation AS $$
8393 DECLARE
8394     tmp_circ action.circulation%ROWTYPE;
8395     circ_0 action.circulation%ROWTYPE;
8396 BEGIN
8397
8398     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
8399
8400     IF tmp_circ IS NULL THEN
8401         RETURN NEXT tmp_circ;
8402     END IF;
8403     circ_0 := tmp_circ;
8404
8405     -- find the front of the chain
8406     WHILE TRUE LOOP
8407         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
8408         IF tmp_circ IS NULL THEN
8409             EXIT;
8410         END IF;
8411         circ_0 := tmp_circ;
8412     END LOOP;
8413
8414     -- now send the circs to the caller, oldest to newest
8415     tmp_circ := circ_0;
8416     WHILE TRUE LOOP
8417         IF tmp_circ IS NULL THEN
8418             EXIT;
8419         END IF;
8420         RETURN NEXT tmp_circ;
8421         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
8422     END LOOP;
8423
8424 END;
8425 $$ LANGUAGE 'plpgsql';
8426
8427 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id INTEGER ) RETURNS action.circ_chain_summary AS $$
8428
8429 DECLARE
8430
8431     -- first circ in the chain
8432     circ_0 action.circulation%ROWTYPE;
8433
8434     -- last circ in the chain
8435     circ_n action.circulation%ROWTYPE;
8436
8437     -- circ chain under construction
8438     chain action.circ_chain_summary;
8439     tmp_circ action.circulation%ROWTYPE;
8440
8441 BEGIN
8442     
8443     chain.num_circs := 0;
8444     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
8445
8446         IF chain.num_circs = 0 THEN
8447             circ_0 := tmp_circ;
8448         END IF;
8449
8450         chain.num_circs := chain.num_circs + 1;
8451         circ_n := tmp_circ;
8452     END LOOP;
8453
8454     chain.start_time := circ_0.xact_start;
8455     chain.last_stop_fines := circ_n.stop_fines;
8456     chain.last_stop_fines_time := circ_n.stop_fines_time;
8457     chain.last_checkin_time := circ_n.checkin_time;
8458     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
8459     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
8460     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
8461
8462     IF chain.num_circs > 1 THEN
8463         chain.last_renewal_time := circ_n.xact_start;
8464         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
8465     END IF;
8466
8467     RETURN chain;
8468
8469 END;
8470 $$ LANGUAGE 'plpgsql';
8471
8472 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('reservation');
8473 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
8474 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
8475
8476 ALTER TABLE config.standing_penalty
8477         ADD COLUMN org_depth   INTEGER;
8478
8479 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
8480 DECLARE
8481     user_object         actor.usr%ROWTYPE;
8482     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
8483     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
8484     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
8485     max_fines           permission.grp_penalty_threshold%ROWTYPE;
8486     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
8487     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
8488     tmp_grp             INT;
8489     items_overdue       INT;
8490     items_out           INT;
8491     context_org_list    INT[];
8492     current_fines        NUMERIC(8,2) := 0.0;
8493     tmp_fines            NUMERIC(8,2);
8494     tmp_groc            RECORD;
8495     tmp_circ            RECORD;
8496     tmp_org             actor.org_unit%ROWTYPE;
8497     tmp_penalty         config.standing_penalty%ROWTYPE;
8498     tmp_depth           INTEGER;
8499 BEGIN
8500     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8501
8502     -- Max fines
8503     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8504
8505     -- Fail if the user has a high fine balance
8506     LOOP
8507         tmp_grp := user_object.profile;
8508         LOOP
8509             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
8510
8511             IF max_fines.threshold IS NULL THEN
8512                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8513             ELSE
8514                 EXIT;
8515             END IF;
8516
8517             IF tmp_grp IS NULL THEN
8518                 EXIT;
8519             END IF;
8520         END LOOP;
8521
8522         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8523             EXIT;
8524         END IF;
8525
8526         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8527
8528     END LOOP;
8529
8530     IF max_fines.threshold IS NOT NULL THEN
8531
8532         FOR existing_sp_row IN
8533                 SELECT  *
8534                   FROM  actor.usr_standing_penalty
8535                   WHERE usr = match_user
8536                         AND org_unit = max_fines.org_unit
8537                         AND (stop_date IS NULL or stop_date > NOW())
8538                         AND standing_penalty = 1
8539                 LOOP
8540             RETURN NEXT existing_sp_row;
8541         END LOOP;
8542
8543         SELECT  SUM(f.balance_owed) INTO current_fines
8544           FROM  money.materialized_billable_xact_summary f
8545                 JOIN (
8546                     SELECT  r.id
8547                       FROM  booking.reservation r
8548                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8549                       WHERE usr = match_user
8550                             AND xact_finish IS NULL
8551                                 UNION ALL
8552                     SELECT  g.id
8553                       FROM  money.grocery g
8554                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8555                       WHERE usr = match_user
8556                             AND xact_finish IS NULL
8557                                 UNION ALL
8558                     SELECT  circ.id
8559                       FROM  action.circulation circ
8560                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8561                       WHERE usr = match_user
8562                             AND xact_finish IS NULL ) l USING (id);
8563
8564         IF current_fines >= max_fines.threshold THEN
8565             new_sp_row.usr := match_user;
8566             new_sp_row.org_unit := max_fines.org_unit;
8567             new_sp_row.standing_penalty := 1;
8568             RETURN NEXT new_sp_row;
8569         END IF;
8570     END IF;
8571
8572     -- Start over for max overdue
8573     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8574
8575     -- Fail if the user has too many overdue items
8576     LOOP
8577         tmp_grp := user_object.profile;
8578         LOOP
8579
8580             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
8581
8582             IF max_overdue.threshold IS NULL THEN
8583                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8584             ELSE
8585                 EXIT;
8586             END IF;
8587
8588             IF tmp_grp IS NULL THEN
8589                 EXIT;
8590             END IF;
8591         END LOOP;
8592
8593         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8594             EXIT;
8595         END IF;
8596
8597         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8598
8599     END LOOP;
8600
8601     IF max_overdue.threshold IS NOT NULL THEN
8602
8603         FOR existing_sp_row IN
8604                 SELECT  *
8605                   FROM  actor.usr_standing_penalty
8606                   WHERE usr = match_user
8607                         AND org_unit = max_overdue.org_unit
8608                         AND (stop_date IS NULL or stop_date > NOW())
8609                         AND standing_penalty = 2
8610                 LOOP
8611             RETURN NEXT existing_sp_row;
8612         END LOOP;
8613
8614         SELECT  INTO items_overdue COUNT(*)
8615           FROM  action.circulation circ
8616                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
8617           WHERE circ.usr = match_user
8618             AND circ.checkin_time IS NULL
8619             AND circ.due_date < NOW()
8620             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
8621
8622         IF items_overdue >= max_overdue.threshold::INT THEN
8623             new_sp_row.usr := match_user;
8624             new_sp_row.org_unit := max_overdue.org_unit;
8625             new_sp_row.standing_penalty := 2;
8626             RETURN NEXT new_sp_row;
8627         END IF;
8628     END IF;
8629
8630     -- Start over for max out
8631     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8632
8633     -- Fail if the user has too many checked out items
8634     LOOP
8635         tmp_grp := user_object.profile;
8636         LOOP
8637             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
8638
8639             IF max_items_out.threshold IS NULL THEN
8640                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8641             ELSE
8642                 EXIT;
8643             END IF;
8644
8645             IF tmp_grp IS NULL THEN
8646                 EXIT;
8647             END IF;
8648         END LOOP;
8649
8650         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8651             EXIT;
8652         END IF;
8653
8654         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8655
8656     END LOOP;
8657
8658
8659     -- Fail if the user has too many items checked out
8660     IF max_items_out.threshold IS NOT NULL THEN
8661
8662         FOR existing_sp_row IN
8663                 SELECT  *
8664                   FROM  actor.usr_standing_penalty
8665                   WHERE usr = match_user
8666                         AND org_unit = max_items_out.org_unit
8667                         AND (stop_date IS NULL or stop_date > NOW())
8668                         AND standing_penalty = 3
8669                 LOOP
8670             RETURN NEXT existing_sp_row;
8671         END LOOP;
8672
8673         SELECT  INTO items_out COUNT(*)
8674           FROM  action.circulation circ
8675                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
8676           WHERE circ.usr = match_user
8677                 AND circ.checkin_time IS NULL
8678                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
8679
8680            IF items_out >= max_items_out.threshold::INT THEN
8681             new_sp_row.usr := match_user;
8682             new_sp_row.org_unit := max_items_out.org_unit;
8683             new_sp_row.standing_penalty := 3;
8684             RETURN NEXT new_sp_row;
8685            END IF;
8686     END IF;
8687
8688     -- Start over for collections warning
8689     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8690
8691     -- Fail if the user has a collections-level fine balance
8692     LOOP
8693         tmp_grp := user_object.profile;
8694         LOOP
8695             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
8696
8697             IF max_fines.threshold IS NULL THEN
8698                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8699             ELSE
8700                 EXIT;
8701             END IF;
8702
8703             IF tmp_grp IS NULL THEN
8704                 EXIT;
8705             END IF;
8706         END LOOP;
8707
8708         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8709             EXIT;
8710         END IF;
8711
8712         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8713
8714     END LOOP;
8715
8716     IF max_fines.threshold IS NOT NULL THEN
8717
8718         FOR existing_sp_row IN
8719                 SELECT  *
8720                   FROM  actor.usr_standing_penalty
8721                   WHERE usr = match_user
8722                         AND org_unit = max_fines.org_unit
8723                         AND (stop_date IS NULL or stop_date > NOW())
8724                         AND standing_penalty = 4
8725                 LOOP
8726             RETURN NEXT existing_sp_row;
8727         END LOOP;
8728
8729         SELECT  SUM(f.balance_owed) INTO current_fines
8730           FROM  money.materialized_billable_xact_summary f
8731                 JOIN (
8732                     SELECT  r.id
8733                       FROM  booking.reservation r
8734                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8735                       WHERE usr = match_user
8736                             AND xact_finish IS NULL
8737                                 UNION ALL
8738                     SELECT  g.id
8739                       FROM  money.grocery g
8740                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8741                       WHERE usr = match_user
8742                             AND xact_finish IS NULL
8743                                 UNION ALL
8744                     SELECT  circ.id
8745                       FROM  action.circulation circ
8746                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8747                       WHERE usr = match_user
8748                             AND xact_finish IS NULL ) l USING (id);
8749
8750         IF current_fines >= max_fines.threshold THEN
8751             new_sp_row.usr := match_user;
8752             new_sp_row.org_unit := max_fines.org_unit;
8753             new_sp_row.standing_penalty := 4;
8754             RETURN NEXT new_sp_row;
8755         END IF;
8756     END IF;
8757
8758     -- Start over for in collections
8759     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8760
8761     -- Remove the in-collections penalty if the user has paid down enough
8762     -- This penalty is different, because this code is not responsible for creating 
8763     -- new in-collections penalties, only for removing them
8764     LOOP
8765         tmp_grp := user_object.profile;
8766         LOOP
8767             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
8768
8769             IF max_fines.threshold IS NULL THEN
8770                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8771             ELSE
8772                 EXIT;
8773             END IF;
8774
8775             IF tmp_grp IS NULL THEN
8776                 EXIT;
8777             END IF;
8778         END LOOP;
8779
8780         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8781             EXIT;
8782         END IF;
8783
8784         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8785
8786     END LOOP;
8787
8788     IF max_fines.threshold IS NOT NULL THEN
8789
8790         -- first, see if the user had paid down to the threshold
8791         SELECT  SUM(f.balance_owed) INTO current_fines
8792           FROM  money.materialized_billable_xact_summary f
8793                 JOIN (
8794                     SELECT  r.id
8795                       FROM  booking.reservation r
8796                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8797                       WHERE usr = match_user
8798                             AND xact_finish IS NULL
8799                                 UNION ALL
8800                     SELECT  g.id
8801                       FROM  money.grocery g
8802                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8803                       WHERE usr = match_user
8804                             AND xact_finish IS NULL
8805                                 UNION ALL
8806                     SELECT  circ.id
8807                       FROM  action.circulation circ
8808                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8809                       WHERE usr = match_user
8810                             AND xact_finish IS NULL ) l USING (id);
8811
8812         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
8813             -- patron has paid down enough
8814
8815             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
8816
8817             IF tmp_penalty.org_depth IS NOT NULL THEN
8818
8819                 -- since this code is not responsible for applying the penalty, it can't 
8820                 -- guarantee the current context org will match the org at which the penalty 
8821                 --- was applied.  search up the org tree until we hit the configured penalty depth
8822                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8823                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8824
8825                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
8826
8827                     FOR existing_sp_row IN
8828                             SELECT  *
8829                             FROM  actor.usr_standing_penalty
8830                             WHERE usr = match_user
8831                                     AND org_unit = tmp_org.id
8832                                     AND (stop_date IS NULL or stop_date > NOW())
8833                                     AND standing_penalty = 30 
8834                             LOOP
8835
8836                         -- Penalty exists, return it for removal
8837                         RETURN NEXT existing_sp_row;
8838                     END LOOP;
8839
8840                     IF tmp_org.parent_ou IS NULL THEN
8841                         EXIT;
8842                     END IF;
8843
8844                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8845                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8846                 END LOOP;
8847
8848             ELSE
8849
8850                 -- no penalty depth is defined, look for exact matches
8851
8852                 FOR existing_sp_row IN
8853                         SELECT  *
8854                         FROM  actor.usr_standing_penalty
8855                         WHERE usr = match_user
8856                                 AND org_unit = max_fines.org_unit
8857                                 AND (stop_date IS NULL or stop_date > NOW())
8858                                 AND standing_penalty = 30 
8859                         LOOP
8860                     -- Penalty exists, return it for removal
8861                     RETURN NEXT existing_sp_row;
8862                 END LOOP;
8863             END IF;
8864     
8865         END IF;
8866
8867     END IF;
8868
8869     RETURN;
8870 END;
8871 $func$ LANGUAGE plpgsql;
8872
8873 -- Create a default row in acq.fiscal_calendar
8874 -- Add a column in actor.org_unit to point to it
8875
8876 INSERT INTO acq.fiscal_calendar ( id, name ) VALUES ( 1, 'Default' );
8877
8878 ALTER TABLE actor.org_unit
8879 ADD COLUMN fiscal_calendar INT NOT NULL
8880         REFERENCES acq.fiscal_calendar( id )
8881         DEFERRABLE INITIALLY DEFERRED
8882         DEFAULT 1;
8883
8884 ALTER TABLE auditor.actor_org_unit_history
8885         ADD COLUMN fiscal_calendar INT;
8886
8887 DROP VIEW IF EXISTS auditor.actor_org_unit_lifecycle;
8888
8889 SELECT auditor.create_auditor_lifecycle( 'actor', 'org_unit' );
8890
8891 ALTER TABLE acq.funding_source_credit
8892 ADD COLUMN deadline_date TIMESTAMPTZ;
8893
8894 ALTER TABLE acq.funding_source_credit
8895 ADD COLUMN effective_date TIMESTAMPTZ NOT NULL DEFAULT now();
8896
8897 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
8898
8899 CREATE TABLE acq.fund_transfer (
8900         id               SERIAL         PRIMARY KEY,
8901         src_fund         INT            NOT NULL REFERENCES acq.fund( id )
8902                                         DEFERRABLE INITIALLY DEFERRED,
8903         src_amount       NUMERIC        NOT NULL,
8904         dest_fund        INT            REFERENCES acq.fund( id )
8905                                         DEFERRABLE INITIALLY DEFERRED,
8906         dest_amount      NUMERIC,
8907         transfer_time    TIMESTAMPTZ    NOT NULL DEFAULT now(),
8908         transfer_user    INT            NOT NULL REFERENCES actor.usr( id )
8909                                         DEFERRABLE INITIALLY DEFERRED,
8910         note             TEXT,
8911     funding_source_credit INTEGER   NOT NULL
8912                                         REFERENCES acq.funding_source_credit(id)
8913                                         DEFERRABLE INITIALLY DEFERRED
8914 );
8915
8916 CREATE INDEX acqftr_usr_idx
8917 ON acq.fund_transfer( transfer_user );
8918
8919 COMMENT ON TABLE acq.fund_transfer IS $$
8920 /*
8921  * Copyright (C) 2009  Georgia Public Library Service
8922  * Scott McKellar <scott@esilibrary.com>
8923  *
8924  * Fund Transfer
8925  *
8926  * Each row represents the transfer of money from a source fund
8927  * to a destination fund.  There should be corresponding entries
8928  * in acq.fund_allocation.  The purpose of acq.fund_transfer is
8929  * to record how much money moved from which fund to which other
8930  * fund.
8931  * 
8932  * The presence of two amount fields, rather than one, reflects
8933  * the possibility that the two funds are denominated in different
8934  * currencies.  If they use the same currency type, the two
8935  * amounts should be the same.
8936  *
8937  * ****
8938  *
8939  * This program is free software; you can redistribute it and/or
8940  * modify it under the terms of the GNU General Public License
8941  * as published by the Free Software Foundation; either version 2
8942  * of the License, or (at your option) any later version.
8943  *
8944  * This program is distributed in the hope that it will be useful,
8945  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8946  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8947  * GNU General Public License for more details.
8948  */
8949 $$;
8950
8951 CREATE TABLE acq.claim_event_type (
8952         id             SERIAL           PRIMARY KEY,
8953         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8954                                                  DEFERRABLE INITIALLY DEFERRED,
8955         code           TEXT             NOT NULL,
8956         description    TEXT             NOT NULL,
8957         library_initiated BOOL          NOT NULL DEFAULT FALSE,
8958         CONSTRAINT event_type_once_per_org UNIQUE ( org_unit, code )
8959 );
8960
8961 CREATE TABLE acq.claim_event (
8962         id             BIGSERIAL        PRIMARY KEY,
8963         type           INT              NOT NULL REFERENCES acq.claim_event_type
8964                                                  DEFERRABLE INITIALLY DEFERRED,
8965         claim          SERIAL           NOT NULL REFERENCES acq.claim
8966                                                  DEFERRABLE INITIALLY DEFERRED,
8967         event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
8968         creator        INT              NOT NULL REFERENCES actor.usr
8969                                                  DEFERRABLE INITIALLY DEFERRED,
8970         note           TEXT
8971 );
8972
8973 CREATE INDEX claim_event_claim_date_idx ON acq.claim_event( claim, event_date );
8974
8975 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
8976         src_usr  IN INTEGER,
8977         dest_usr IN INTEGER
8978 ) RETURNS VOID AS $$
8979 DECLARE
8980         suffix TEXT;
8981         renamable_row RECORD;
8982 BEGIN
8983
8984         UPDATE actor.usr SET
8985                 active = FALSE,
8986                 card = NULL,
8987                 mailing_address = NULL,
8988                 billing_address = NULL
8989         WHERE id = src_usr;
8990
8991         -- acq.*
8992         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
8993         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
8994         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
8995         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
8996         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
8997         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
8998         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
8999
9000         -- Update with a rename to avoid collisions
9001         FOR renamable_row in
9002                 SELECT id, name
9003                 FROM   acq.picklist
9004                 WHERE  owner = src_usr
9005         LOOP
9006                 suffix := ' (' || src_usr || ')';
9007                 LOOP
9008                         BEGIN
9009                                 UPDATE  acq.picklist
9010                                 SET     owner = dest_usr, name = name || suffix
9011                                 WHERE   id = renamable_row.id;
9012                         EXCEPTION WHEN unique_violation THEN
9013                                 suffix := suffix || ' ';
9014                                 CONTINUE;
9015                         END;
9016                         EXIT;
9017                 END LOOP;
9018         END LOOP;
9019
9020         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
9021         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
9022         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
9023         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
9024         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
9025         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
9026         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
9027         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
9028
9029         -- action.*
9030         DELETE FROM action.circulation WHERE usr = src_usr;
9031         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
9032         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
9033         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
9034         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
9035         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
9036         DELETE FROM action.hold_request WHERE usr = src_usr;
9037         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
9038         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
9039         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
9040         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
9041         DELETE FROM action.survey_response WHERE usr = src_usr;
9042         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
9043
9044         -- actor.*
9045         DELETE FROM actor.card WHERE usr = src_usr;
9046         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
9047
9048         -- The following update is intended to avoid transient violations of a foreign
9049         -- key constraint, whereby actor.usr_address references itself.  It may not be
9050         -- necessary, but it does no harm.
9051         UPDATE actor.usr_address SET replaces = NULL
9052                 WHERE usr = src_usr AND replaces IS NOT NULL;
9053         DELETE FROM actor.usr_address WHERE usr = src_usr;
9054         DELETE FROM actor.usr_note WHERE usr = src_usr;
9055         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
9056         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
9057         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
9058         DELETE FROM actor.usr_setting WHERE usr = src_usr;
9059         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
9060         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
9061
9062         -- asset.*
9063         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
9064         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
9065         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
9066         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
9067         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
9068         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
9069
9070         -- auditor.*
9071         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
9072         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
9073         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
9074         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
9075         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
9076         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
9077         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
9078         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
9079
9080         -- biblio.*
9081         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
9082         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
9083         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
9084         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
9085
9086         -- container.*
9087         -- Update buckets with a rename to avoid collisions
9088         FOR renamable_row in
9089                 SELECT id, name
9090                 FROM   container.biblio_record_entry_bucket
9091                 WHERE  owner = src_usr
9092         LOOP
9093                 suffix := ' (' || src_usr || ')';
9094                 LOOP
9095                         BEGIN
9096                                 UPDATE  container.biblio_record_entry_bucket
9097                                 SET     owner = dest_usr, name = name || suffix
9098                                 WHERE   id = renamable_row.id;
9099                         EXCEPTION WHEN unique_violation THEN
9100                                 suffix := suffix || ' ';
9101                                 CONTINUE;
9102                         END;
9103                         EXIT;
9104                 END LOOP;
9105         END LOOP;
9106
9107         FOR renamable_row in
9108                 SELECT id, name
9109                 FROM   container.call_number_bucket
9110                 WHERE  owner = src_usr
9111         LOOP
9112                 suffix := ' (' || src_usr || ')';
9113                 LOOP
9114                         BEGIN
9115                                 UPDATE  container.call_number_bucket
9116                                 SET     owner = dest_usr, name = name || suffix
9117                                 WHERE   id = renamable_row.id;
9118                         EXCEPTION WHEN unique_violation THEN
9119                                 suffix := suffix || ' ';
9120                                 CONTINUE;
9121                         END;
9122                         EXIT;
9123                 END LOOP;
9124         END LOOP;
9125
9126         FOR renamable_row in
9127                 SELECT id, name
9128                 FROM   container.copy_bucket
9129                 WHERE  owner = src_usr
9130         LOOP
9131                 suffix := ' (' || src_usr || ')';
9132                 LOOP
9133                         BEGIN
9134                                 UPDATE  container.copy_bucket
9135                                 SET     owner = dest_usr, name = name || suffix
9136                                 WHERE   id = renamable_row.id;
9137                         EXCEPTION WHEN unique_violation THEN
9138                                 suffix := suffix || ' ';
9139                                 CONTINUE;
9140                         END;
9141                         EXIT;
9142                 END LOOP;
9143         END LOOP;
9144
9145         FOR renamable_row in
9146                 SELECT id, name
9147                 FROM   container.user_bucket
9148                 WHERE  owner = src_usr
9149         LOOP
9150                 suffix := ' (' || src_usr || ')';
9151                 LOOP
9152                         BEGIN
9153                                 UPDATE  container.user_bucket
9154                                 SET     owner = dest_usr, name = name || suffix
9155                                 WHERE   id = renamable_row.id;
9156                         EXCEPTION WHEN unique_violation THEN
9157                                 suffix := suffix || ' ';
9158                                 CONTINUE;
9159                         END;
9160                         EXIT;
9161                 END LOOP;
9162         END LOOP;
9163
9164         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
9165
9166         -- money.*
9167         DELETE FROM money.billable_xact WHERE usr = src_usr;
9168         DELETE FROM money.collections_tracker WHERE usr = src_usr;
9169         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
9170
9171         -- permission.*
9172         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
9173         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
9174         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
9175         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
9176
9177         -- reporter.*
9178         -- Update with a rename to avoid collisions
9179         BEGIN
9180                 FOR renamable_row in
9181                         SELECT id, name
9182                         FROM   reporter.output_folder
9183                         WHERE  owner = src_usr
9184                 LOOP
9185                         suffix := ' (' || src_usr || ')';
9186                         LOOP
9187                                 BEGIN
9188                                         UPDATE  reporter.output_folder
9189                                         SET     owner = dest_usr, name = name || suffix
9190                                         WHERE   id = renamable_row.id;
9191                                 EXCEPTION WHEN unique_violation THEN
9192                                         suffix := suffix || ' ';
9193                                         CONTINUE;
9194                                 END;
9195                                 EXIT;
9196                         END LOOP;
9197                 END LOOP;
9198         EXCEPTION WHEN undefined_table THEN
9199                 -- do nothing
9200         END;
9201
9202         BEGIN
9203                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
9204         EXCEPTION WHEN undefined_table THEN
9205                 -- do nothing
9206         END;
9207
9208         -- Update with a rename to avoid collisions
9209         BEGIN
9210                 FOR renamable_row in
9211                         SELECT id, name
9212                         FROM   reporter.report_folder
9213                         WHERE  owner = src_usr
9214                 LOOP
9215                         suffix := ' (' || src_usr || ')';
9216                         LOOP
9217                                 BEGIN
9218                                         UPDATE  reporter.report_folder
9219                                         SET     owner = dest_usr, name = name || suffix
9220                                         WHERE   id = renamable_row.id;
9221                                 EXCEPTION WHEN unique_violation THEN
9222                                         suffix := suffix || ' ';
9223                                         CONTINUE;
9224                                 END;
9225                                 EXIT;
9226                         END LOOP;
9227                 END LOOP;
9228         EXCEPTION WHEN undefined_table THEN
9229                 -- do nothing
9230         END;
9231
9232         BEGIN
9233                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
9234         EXCEPTION WHEN undefined_table THEN
9235                 -- do nothing
9236         END;
9237
9238         BEGIN
9239                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
9240         EXCEPTION WHEN undefined_table THEN
9241                 -- do nothing
9242         END;
9243
9244         -- Update with a rename to avoid collisions
9245         BEGIN
9246                 FOR renamable_row in
9247                         SELECT id, name
9248                         FROM   reporter.template_folder
9249                         WHERE  owner = src_usr
9250                 LOOP
9251                         suffix := ' (' || src_usr || ')';
9252                         LOOP
9253                                 BEGIN
9254                                         UPDATE  reporter.template_folder
9255                                         SET     owner = dest_usr, name = name || suffix
9256                                         WHERE   id = renamable_row.id;
9257                                 EXCEPTION WHEN unique_violation THEN
9258                                         suffix := suffix || ' ';
9259                                         CONTINUE;
9260                                 END;
9261                                 EXIT;
9262                         END LOOP;
9263                 END LOOP;
9264         EXCEPTION WHEN undefined_table THEN
9265         -- do nothing
9266         END;
9267
9268         -- vandelay.*
9269         -- Update with a rename to avoid collisions
9270         FOR renamable_row in
9271                 SELECT id, name
9272                 FROM   vandelay.queue
9273                 WHERE  owner = src_usr
9274         LOOP
9275                 suffix := ' (' || src_usr || ')';
9276                 LOOP
9277                         BEGIN
9278                                 UPDATE  vandelay.queue
9279                                 SET     owner = dest_usr, name = name || suffix
9280                                 WHERE   id = renamable_row.id;
9281                         EXCEPTION WHEN unique_violation THEN
9282                                 suffix := suffix || ' ';
9283                                 CONTINUE;
9284                         END;
9285                         EXIT;
9286                 END LOOP;
9287         END LOOP;
9288
9289 END;
9290 $$ LANGUAGE plpgsql;
9291
9292 COMMENT ON FUNCTION actor.usr_purge_data(INT, INT) IS $$
9293 /**
9294  * Finds rows dependent on a given row in actor.usr and either deletes them
9295  * or reassigns them to a different user.
9296  */
9297 $$;
9298
9299 CREATE OR REPLACE FUNCTION actor.usr_delete(
9300         src_usr  IN INTEGER,
9301         dest_usr IN INTEGER
9302 ) RETURNS VOID AS $$
9303 DECLARE
9304         old_profile actor.usr.profile%type;
9305         old_home_ou actor.usr.home_ou%type;
9306         new_profile actor.usr.profile%type;
9307         new_home_ou actor.usr.home_ou%type;
9308         new_name    text;
9309         new_dob     actor.usr.dob%type;
9310 BEGIN
9311         SELECT
9312                 id || '-PURGED-' || now(),
9313                 profile,
9314                 home_ou,
9315                 dob
9316         INTO
9317                 new_name,
9318                 old_profile,
9319                 old_home_ou,
9320                 new_dob
9321         FROM
9322                 actor.usr
9323         WHERE
9324                 id = src_usr;
9325         --
9326         -- Quit if no such user
9327         --
9328         IF old_profile IS NULL THEN
9329                 RETURN;
9330         END IF;
9331         --
9332         perform actor.usr_purge_data( src_usr, dest_usr );
9333         --
9334         -- Find the root grp_tree and the root org_unit.  This would be simpler if we 
9335         -- could assume that there is only one root.  Theoretically, someday, maybe,
9336         -- there could be multiple roots, so we take extra trouble to get the right ones.
9337         --
9338         SELECT
9339                 id
9340         INTO
9341                 new_profile
9342         FROM
9343                 permission.grp_ancestors( old_profile )
9344         WHERE
9345                 parent is null;
9346         --
9347         SELECT
9348                 id
9349         INTO
9350                 new_home_ou
9351         FROM
9352                 actor.org_unit_ancestors( old_home_ou )
9353         WHERE
9354                 parent_ou is null;
9355         --
9356         -- Truncate date of birth
9357         --
9358         IF new_dob IS NOT NULL THEN
9359                 new_dob := date_trunc( 'year', new_dob );
9360         END IF;
9361         --
9362         UPDATE
9363                 actor.usr
9364                 SET
9365                         card = NULL,
9366                         profile = new_profile,
9367                         usrname = new_name,
9368                         email = NULL,
9369                         passwd = random()::text,
9370                         standing = DEFAULT,
9371                         ident_type = 
9372                         (
9373                                 SELECT MIN( id )
9374                                 FROM config.identification_type
9375                         ),
9376                         ident_value = NULL,
9377                         ident_type2 = NULL,
9378                         ident_value2 = NULL,
9379                         net_access_level = DEFAULT,
9380                         photo_url = NULL,
9381                         prefix = NULL,
9382                         first_given_name = new_name,
9383                         second_given_name = NULL,
9384                         family_name = new_name,
9385                         suffix = NULL,
9386                         alias = NULL,
9387                         day_phone = NULL,
9388                         evening_phone = NULL,
9389                         other_phone = NULL,
9390                         mailing_address = NULL,
9391                         billing_address = NULL,
9392                         home_ou = new_home_ou,
9393                         dob = new_dob,
9394                         active = FALSE,
9395                         master_account = DEFAULT, 
9396                         super_user = DEFAULT,
9397                         barred = FALSE,
9398                         deleted = TRUE,
9399                         juvenile = DEFAULT,
9400                         usrgroup = 0,
9401                         claims_returned_count = DEFAULT,
9402                         credit_forward_balance = DEFAULT,
9403                         last_xact_id = DEFAULT,
9404                         alert_message = NULL,
9405                         create_date = now(),
9406                         expire_date = now()
9407         WHERE
9408                 id = src_usr;
9409 END;
9410 $$ LANGUAGE plpgsql;
9411
9412 COMMENT ON FUNCTION actor.usr_delete(INT, INT) IS $$
9413 /**
9414  * Logically deletes a user.  Removes personally identifiable information,
9415  * and purges associated data in other tables.
9416  */
9417 $$;
9418
9419 -- INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
9420
9421 ALTER TABLE acq.fund
9422 ADD COLUMN rollover BOOL NOT NULL DEFAULT FALSE;
9423
9424 ALTER TABLE acq.fund
9425         ADD COLUMN propagate BOOLEAN NOT NULL DEFAULT TRUE;
9426
9427 -- A fund can't roll over if it doesn't propagate from one year to the next
9428
9429 ALTER TABLE acq.fund
9430         ADD CONSTRAINT acq_fund_rollover_implies_propagate CHECK
9431         ( propagate OR NOT rollover );
9432
9433 ALTER TABLE acq.fund
9434         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
9435
9436 ALTER TABLE acq.fund
9437     ADD COLUMN balance_warning_percent INT
9438     CONSTRAINT balance_warning_percent_limit
9439         CHECK( balance_warning_percent <= 100 );
9440
9441 ALTER TABLE acq.fund
9442     ADD COLUMN balance_stop_percent INT
9443     CONSTRAINT balance_stop_percent_limit
9444         CHECK( balance_stop_percent <= 100 );
9445
9446 CREATE VIEW acq.ordered_funding_source_credit AS
9447         SELECT
9448                 CASE WHEN deadline_date IS NULL THEN
9449                         2
9450                 ELSE
9451                         1
9452                 END AS sort_priority,
9453                 CASE WHEN deadline_date IS NULL THEN
9454                         effective_date
9455                 ELSE
9456                         deadline_date
9457                 END AS sort_date,
9458                 id,
9459                 funding_source,
9460                 amount,
9461                 note
9462         FROM
9463                 acq.funding_source_credit;
9464
9465 COMMENT ON VIEW acq.ordered_funding_source_credit IS $$
9466 /*
9467  * Copyright (C) 2009  Georgia Public Library Service
9468  * Scott McKellar <scott@gmail.com>
9469  *
9470  * The acq.ordered_funding_source_credit view is a prioritized
9471  * ordering of funding source credits.  When ordered by the first
9472  * three columns, this view defines the order in which the various
9473  * credits are to be tapped for spending, subject to the allocations
9474  * in the acq.fund_allocation table.
9475  *
9476  * The first column reflects the principle that we should spend
9477  * money with deadlines before spending money without deadlines.
9478  *
9479  * The second column reflects the principle that we should spend the
9480  * oldest money first.  For money with deadlines, that means that we
9481  * spend first from the credit with the earliest deadline.  For
9482  * money without deadlines, we spend first from the credit with the
9483  * earliest effective date.  
9484  *
9485  * The third column is a tie breaker to ensure a consistent
9486  * ordering.
9487  *
9488  * ****
9489  *
9490  * This program is free software; you can redistribute it and/or
9491  * modify it under the terms of the GNU General Public License
9492  * as published by the Free Software Foundation; either version 2
9493  * of the License, or (at your option) any later version.
9494  *
9495  * This program is distributed in the hope that it will be useful,
9496  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9497  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9498  * GNU General Public License for more details.
9499  */
9500 $$;
9501
9502 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
9503     SELECT  m.*, COALESCE(c.circ_lib, g.billing_location, r.pickup_lib) AS billing_location
9504       FROM  money.materialized_billable_xact_summary m
9505             LEFT JOIN action.circulation c ON (c.id = m.id)
9506             LEFT JOIN money.grocery g ON (g.id = m.id)
9507             LEFT JOIN booking.reservation r ON (r.id = m.id);
9508
9509 CREATE TABLE config.marc21_rec_type_map (
9510     code        TEXT    PRIMARY KEY,
9511     type_val    TEXT    NOT NULL,
9512     blvl_val    TEXT    NOT NULL
9513 );
9514
9515 CREATE TABLE config.marc21_ff_pos_map (
9516     id          SERIAL  PRIMARY KEY,
9517     fixed_field TEXT    NOT NULL,
9518     tag         TEXT    NOT NULL,
9519     rec_type    TEXT    NOT NULL,
9520     start_pos   INT     NOT NULL,
9521     length      INT     NOT NULL,
9522     default_val TEXT    NOT NULL DEFAULT ' '
9523 );
9524
9525 CREATE TABLE config.marc21_physical_characteristic_type_map (
9526     ptype_key   TEXT    PRIMARY KEY,
9527     label       TEXT    NOT NULL -- I18N
9528 );
9529
9530 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
9531     id          SERIAL  PRIMARY KEY,
9532     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
9533     subfield    TEXT    NOT NULL,
9534     start_pos   INT     NOT NULL,
9535     length      INT     NOT NULL,
9536     label       TEXT    NOT NULL -- I18N
9537 );
9538
9539 CREATE TABLE config.marc21_physical_characteristic_value_map (
9540     id              SERIAL  PRIMARY KEY,
9541     value           TEXT    NOT NULL,
9542     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
9543     label           TEXT    NOT NULL -- I18N
9544 );
9545
9546 ----------------------------------
9547 -- MARC21 record structure data --
9548 ----------------------------------
9549
9550 -- Record type map
9551 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
9552 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
9553 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
9554 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
9555 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
9556 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
9557 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
9558 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
9559
9560 ------ Physical Characteristics
9561
9562 -- Map
9563 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
9564 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
9565 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
9566 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
9567 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
9568 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
9569 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
9570 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');
9571 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
9572 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9573 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
9574 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9575 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
9576 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');
9577 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9578 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
9579 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9580 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9581 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9582 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9583 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9584 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9585 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9586 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9587 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');
9588 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');
9589 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');
9590 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');
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 ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other photographic medium');
9593 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9594 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
9595 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9596 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');
9597 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9598 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9599 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details');
9600 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');
9601 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
9602 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');
9603 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
9604 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9605 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9606 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
9607 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9608 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9609 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9610 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');
9611
9612 -- Electronic Resource
9613 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
9614 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
9615 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');
9616 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');
9617 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');
9618 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');
9619 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');
9620 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');
9621 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');
9622 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');
9623 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
9624 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9625 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9626 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
9627 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');
9628 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');
9629 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9630 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');
9631 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9632 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');
9633 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9634 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9635 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
9636 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.');
9637 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.');
9638 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.');
9639 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.');
9640 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.');
9641 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');
9642 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.');
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_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 in.');
9645 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9646 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound');
9647 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)');
9648 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
9649 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9650 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
9651 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9652 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
9653 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');
9654 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
9655 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');
9656 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');
9657 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9658 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
9659 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
9660 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');
9661 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
9662 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9663 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
9664 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');
9665 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');
9666 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');
9667 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)');
9668 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9669 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');
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','k','12','1','Level of compression');
9672 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
9673 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
9674 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
9675 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
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 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
9678 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
9679 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9680 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
9681 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
9682 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9683
9684 -- Globe
9685 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
9686 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
9687 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');
9688 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');
9689 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');
9690 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');
9691 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9692 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9693 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color');
9694 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');
9695 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9696 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
9697 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9698 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9699 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9700 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9701 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9702 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9703 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9704 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9705 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9706 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9707 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
9708 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9709 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');
9710 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9711 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9712
9713 -- Tactile Material
9714 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
9715 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
9716 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
9717 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille');
9718 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9719 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');
9720 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9721 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9722 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
9723 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');
9724 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');
9725 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');
9726 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');
9727 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');
9728 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');
9729 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');
9730 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9731 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9732 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','4','1','Level of contraction');
9733 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
9734 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
9735 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9736 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9737 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9738 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9739 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
9740 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');
9741 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');
9742 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');
9743 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
9744 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');
9745 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');
9746 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');
9747 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');
9748 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');
9749 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');
9750 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
9751 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');
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 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
9756 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');
9757 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');
9758 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');
9759 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9760 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9761
9762 -- Projected Graphic
9763 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
9764 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
9765 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');
9766 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
9767 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');
9768 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');
9769 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
9770 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
9771 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9772 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
9773 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');
9774 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9775 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');
9776 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9777 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9778 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9779 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9780 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
9781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9782 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9783 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');
9784 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');
9785 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');
9786 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9787 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9788 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9789 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');
9790 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');
9791 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');
9792 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9793 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
9794 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');
9795 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');
9796 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');
9797 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');
9798 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');
9799 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');
9800 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');
9801 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9802 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9803 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9804 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9805 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
9806 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.');
9807 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.');
9808 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.');
9809 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.');
9810 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.');
9811 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.');
9812 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.');
9813 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.)');
9814 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.)');
9815 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.)');
9816 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.)');
9817 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9818 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 x 10 in. (21 x 26 cm.)');
9819 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.)');
9820 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.)');
9821 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.)');
9822 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9823 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material');
9824 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
9825 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9826 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9827 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
9828 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');
9829 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');
9830 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');
9831 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9832 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9833
9834 -- Microform
9835 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
9836 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
9837 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');
9838 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');
9839 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');
9840 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');
9841 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
9842 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');
9843 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
9844 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9845 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9846 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative');
9847 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9848 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9849 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9850 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9851 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
9852 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.');
9853 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.');
9854 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.');
9855 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
9856 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.');
9857 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.)');
9858 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.)');
9859 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.)');
9860 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.)');
9861 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9862 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9863 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');
9864 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)');
9865 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)');
9866 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)');
9867 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)');
9868 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-)');
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 ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Reduction ratio varies');
9871 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
9872 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');
9873 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9874 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9875 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9876 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9877 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
9878 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');
9879 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
9880 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
9881 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9882 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');
9883 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9884 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9885 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
9886 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');
9887 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');
9888 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');
9889 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');
9890 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9891 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
9892 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');
9893 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');
9894 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');
9895 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');
9896 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');
9897 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');
9898 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');
9899 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');
9900 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');
9901 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9902 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9903
9904 -- Non-projected Graphic
9905 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
9906 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
9907 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
9908 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
9909 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
9910 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');
9911 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
9912 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
9913 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
9914 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
9915 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');
9916 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
9917 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');
9918 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9919 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9920 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
9921 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');
9922 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');
9923 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9924 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');
9925 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9926 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9927 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9928 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
9929 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9930 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');
9931 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');
9932 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9933 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9934 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9935 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9936 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9937 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');
9938 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9939 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9940 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9941 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9942 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9943 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9944 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9945 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9946 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material');
9947 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9948 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');
9949 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');
9950 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9951 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9952 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9953 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9954 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9955 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');
9956 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9957 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9958 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9959 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9960 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9961 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9962 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9963 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9964
9965 -- Motion Picture
9966 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
9967 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
9968 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');
9969 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');
9970 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');
9971 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9972 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9973 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color');
9974 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');
9975 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9976 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');
9977 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9978 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9979 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9980 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
9981 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');
9982 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)');
9983 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
9984 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)');
9985 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');
9986 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');
9987 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9988 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9989 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');
9990 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');
9991 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');
9992 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9993 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
9994 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');
9995 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');
9996 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');
9997 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');
9998 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');
9999 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');
10000 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');
10001 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
10002 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10003 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10004 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10005 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
10006 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.');
10007 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.');
10008 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.');
10009 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.');
10010 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.');
10011 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.');
10012 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.');
10013 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10014 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10015 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels');
10016 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10017 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10018 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');
10019 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');
10020 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10021 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10022 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10023 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements');
10024 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');
10025 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
10026 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
10027 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
10028 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');
10029 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');
10030 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');
10031 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
10032 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10033
10034 -- Remote-sensing Image
10035 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
10036 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
10037 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10038 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor');
10039 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface');
10040 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
10041 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
10042 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');
10043 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10044 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10045 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor');
10046 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');
10047 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');
10048 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
10049 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');
10050 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10051 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
10052 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%');
10053 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%');
10054 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%');
10055 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%');
10056 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%');
10057 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%');
10058 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%');
10059 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%');
10060 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%');
10061 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%');
10062 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');
10063 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10064 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
10065 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
10066 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');
10067 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');
10068 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');
10069 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');
10070 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');
10071 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');
10072 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');
10073 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');
10074 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');
10075 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10076 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10077 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
10078 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
10079 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');
10080 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');
10081 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');
10082 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');
10083 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10084 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10085 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
10086 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
10087 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
10088 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10089 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10090 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
10091 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');
10092 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');
10093 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');
10094 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');
10095 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');
10096 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)');
10097 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');
10098 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
10099 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');
10100 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)');
10101 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)');
10102 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)');
10103 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');
10104 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');
10105 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');
10106 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');
10107 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');
10108 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');
10109 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');
10110 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');
10111 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');
10112 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');
10113 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');
10114 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');
10115 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');
10116 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');
10117 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');
10118 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');
10119 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');
10120 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');
10121 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');
10122 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');
10123 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');
10124 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)');
10125 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');
10126 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
10127 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
10128 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');
10129 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');
10130 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10131 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10132
10133 -- Sound Recording
10134 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
10135 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
10136 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');
10137 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
10138 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');
10139 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');
10140 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
10141 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');
10142 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');
10143 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10144 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');
10145 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10146 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
10147 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');
10148 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');
10149 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');
10150 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');
10151 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');
10152 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');
10153 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');
10154 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');
10155 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');
10156 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');
10157 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');
10158 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');
10159 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');
10160 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');
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','e','4','1','Configuration of playback channels');
10164 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10165 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
10166 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
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','f','5','1','Groove width or pitch');
10170 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');
10171 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');
10172 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');
10173 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10174 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10175 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions');
10176 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.');
10177 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.');
10178 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.');
10179 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.');
10180 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.');
10181 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.');
10182 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.)');
10183 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.');
10184 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');
10185 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.');
10186 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.');
10187 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10188 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10189 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
10190 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.');
10191 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.');
10192 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');
10193 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.');
10194 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.');
10195 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10196 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10197 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
10198 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');
10199 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');
10200 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');
10201 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');
10202 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');
10203 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');
10204 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');
10205 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10206 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10207 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
10208 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');
10209 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');
10210 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');
10211 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');
10212 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');
10213 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');
10214 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');
10215 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');
10216 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');
10217 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10218 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10219 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
10220 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');
10221 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');
10222 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');
10223 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');
10224 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10225 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10226
10227 -- Videorecording
10228 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
10229 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
10230 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
10231 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10232 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
10233 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
10234 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10235 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10236 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color');
10237 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');
10238 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
10239 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10240 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');
10241 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10242 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10243 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
10244 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
10245 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
10246 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');
10247 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
10248 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');
10249 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
10250 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
10251 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
10252 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
10253 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');
10254 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');
10255 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');
10256 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');
10257 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.');
10258 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.');
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_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
10261 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10262 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');
10263 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');
10264 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');
10265 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10266 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
10267 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');
10268 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');
10269 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');
10270 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');
10271 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');
10272 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');
10273 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');
10274 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
10275 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10276 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10277 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10278 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
10279 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.');
10280 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.');
10281 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.');
10282 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.');
10283 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.');
10284 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.');
10285 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10286 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10287 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
10288 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10289 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10290 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');
10291 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');
10292 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10293 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10294 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10295
10296 -- Fixed Field position data -- 0-based!
10297 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
10298 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
10299 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
10300 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
10301 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
10302 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
10303 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
10304 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
10305 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
10306 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
10307 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
10308 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
10309 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
10310 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
10311 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
10312 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
10313 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
10314 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
10315 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
10316 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
10317 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
10318 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
10319 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
10320 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
10321 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
10322 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
10323 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
10324 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
10325 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
10326 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
10327 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
10328 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
10329 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
10330 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
10331 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
10332 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
10333 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
10334 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
10335 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
10336 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
10337 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
10338 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
10339 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
10340 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
10341 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
10342 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
10343 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
10344 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
10345 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
10346 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
10347 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
10348 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
10349 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
10350 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
10351 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
10352 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
10353 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
10354 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
10355 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
10356 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
10357 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
10358 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
10359 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
10360 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
10361 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
10362 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
10363 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
10364 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
10365 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
10366 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
10367 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
10368 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
10369 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
10370 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
10371 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
10372 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
10373 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
10374 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
10375 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
10376 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
10377 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
10378 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
10379 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
10380 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
10381 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
10382 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
10383 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
10384 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
10385 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
10386 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
10387 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
10388 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
10389 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
10390 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
10391 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
10392 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
10393 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
10394 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
10395 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
10396 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
10397 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
10398 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
10399 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
10400 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
10401 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
10402 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
10403 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
10404 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
10405 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
10406 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
10407 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
10408 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
10409 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
10410 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
10411 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
10412 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
10413 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
10414 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
10415 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
10416 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
10417 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
10418 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
10419 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
10420 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
10421 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
10422 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
10423 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
10424 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
10425 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
10426 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
10427 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
10428 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
10429 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
10430 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
10431 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');
10432 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');
10433 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
10434 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
10435 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
10436 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
10437 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
10438 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
10439 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
10440 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
10441 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
10442 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
10443
10444 CREATE OR REPLACE FUNCTION biblio.marc21_record_type( rid BIGINT ) RETURNS config.marc21_rec_type_map AS $func$
10445 DECLARE
10446         ldr         RECORD;
10447         tval        TEXT;
10448         tval_rec    RECORD;
10449         bval        TEXT;
10450         bval_rec    RECORD;
10451     retval      config.marc21_rec_type_map%ROWTYPE;
10452 BEGIN
10453     SELECT * INTO ldr FROM metabib.full_rec WHERE record = rid AND tag = 'LDR' LIMIT 1;
10454
10455     IF ldr.id IS NULL THEN
10456         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10457         RETURN retval;
10458     END IF;
10459
10460     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10461     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10462
10463
10464     tval := SUBSTRING( ldr.value, tval_rec.start_pos + 1, tval_rec.length );
10465     bval := SUBSTRING( ldr.value, bval_rec.start_pos + 1, bval_rec.length );
10466
10467     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr.value;
10468
10469     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10470
10471
10472     IF retval.code IS NULL THEN
10473         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10474     END IF;
10475
10476     RETURN retval;
10477 END;
10478 $func$ LANGUAGE PLPGSQL;
10479
10480 CREATE OR REPLACE FUNCTION biblio.marc21_extract_fixed_field( rid BIGINT, ff TEXT ) RETURNS TEXT AS $func$
10481 DECLARE
10482     rtype       TEXT;
10483     ff_pos      RECORD;
10484     tag_data    RECORD;
10485     val         TEXT;
10486 BEGIN
10487     rtype := (biblio.marc21_record_type( rid )).code;
10488     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
10489         FOR tag_data IN SELECT * FROM metabib.full_rec WHERE tag = UPPER(ff_pos.tag) AND record = rid LOOP
10490             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
10491             RETURN val;
10492         END LOOP;
10493         val := REPEAT( ff_pos.default_val, ff_pos.length );
10494         RETURN val;
10495     END LOOP;
10496
10497     RETURN NULL;
10498 END;
10499 $func$ LANGUAGE PLPGSQL;
10500
10501 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
10502 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
10503 DECLARE
10504     rowid   INT := 0;
10505     _007    RECORD;
10506     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
10507     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
10508     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
10509     retval  biblio.marc21_physical_characteristics%ROWTYPE;
10510 BEGIN
10511
10512     SELECT * INTO _007 FROM metabib.full_rec WHERE record = rid AND tag = '007' LIMIT 1;
10513
10514     IF _007.id IS NOT NULL THEN
10515         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007.value, 1, 1 );
10516
10517         IF ptype.ptype_key IS NOT NULL THEN
10518             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
10519                 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 );
10520
10521                 IF pval.id IS NOT NULL THEN
10522                     rowid := rowid + 1;
10523                     retval.id := rowid;
10524                     retval.record := rid;
10525                     retval.ptype := ptype.ptype_key;
10526                     retval.subfield := psf.id;
10527                     retval.value := pval.id;
10528                     RETURN NEXT retval;
10529                 END IF;
10530
10531             END LOOP;
10532         END IF;
10533     END IF;
10534
10535     RETURN;
10536 END;
10537 $func$ LANGUAGE PLPGSQL;
10538
10539 DROP VIEW IF EXISTS money.open_usr_circulation_summary;
10540 DROP VIEW IF EXISTS money.open_usr_summary;
10541 DROP VIEW IF EXISTS money.open_billable_xact_summary;
10542
10543 -- The view should supply defaults for numeric (amount) columns
10544 CREATE OR REPLACE VIEW money.billable_xact_summary AS
10545     SELECT  xact.id,
10546         xact.usr,
10547         xact.xact_start,
10548         xact.xact_finish,
10549         COALESCE(credit.amount, 0.0::numeric) AS total_paid,
10550         credit.payment_ts AS last_payment_ts,
10551         credit.note AS last_payment_note,
10552         credit.payment_type AS last_payment_type,
10553         COALESCE(debit.amount, 0.0::numeric) AS total_owed,
10554         debit.billing_ts AS last_billing_ts,
10555         debit.note AS last_billing_note,
10556         debit.billing_type AS last_billing_type,
10557         COALESCE(debit.amount, 0.0::numeric) - COALESCE(credit.amount, 0.0::numeric) AS balance_owed,
10558         p.relname AS xact_type
10559       FROM  money.billable_xact xact
10560         JOIN pg_class p ON xact.tableoid = p.oid
10561         LEFT JOIN (
10562             SELECT  billing.xact,
10563                 sum(billing.amount) AS amount,
10564                 max(billing.billing_ts) AS billing_ts,
10565                 last(billing.note) AS note,
10566                 last(billing.billing_type) AS billing_type
10567               FROM  money.billing
10568               WHERE billing.voided IS FALSE
10569               GROUP BY billing.xact
10570             ) debit ON xact.id = debit.xact
10571         LEFT JOIN (
10572             SELECT  payment_view.xact,
10573                 sum(payment_view.amount) AS amount,
10574                 max(payment_view.payment_ts) AS payment_ts,
10575                 last(payment_view.note) AS note,
10576                 last(payment_view.payment_type) AS payment_type
10577               FROM  money.payment_view
10578               WHERE payment_view.voided IS FALSE
10579               GROUP BY payment_view.xact
10580             ) credit ON xact.id = credit.xact
10581       ORDER BY debit.billing_ts, credit.payment_ts;
10582
10583 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
10584     SELECT * FROM money.billable_xact_summary_location_view
10585     WHERE xact_finish IS NULL;
10586
10587 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
10588     SELECT 
10589         usr,
10590         SUM(total_paid) AS total_paid,
10591         SUM(total_owed) AS total_owed,
10592         SUM(balance_owed) AS balance_owed
10593     FROM  money.materialized_billable_xact_summary
10594     WHERE xact_type = 'circulation' AND xact_finish IS NULL
10595     GROUP BY usr;
10596
10597 CREATE OR REPLACE VIEW money.usr_summary AS
10598     SELECT 
10599         usr, 
10600         sum(total_paid) AS total_paid, 
10601         sum(total_owed) AS total_owed, 
10602         sum(balance_owed) AS balance_owed
10603     FROM money.materialized_billable_xact_summary
10604     GROUP BY usr;
10605
10606 CREATE OR REPLACE VIEW money.open_usr_summary AS
10607     SELECT 
10608         usr, 
10609         sum(total_paid) AS total_paid, 
10610         sum(total_owed) AS total_owed, 
10611         sum(balance_owed) AS balance_owed
10612     FROM money.materialized_billable_xact_summary
10613     WHERE xact_finish IS NULL
10614     GROUP BY usr;
10615
10616 -- 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;
10617
10618 CREATE TABLE config.biblio_fingerprint (
10619         id                      SERIAL  PRIMARY KEY,
10620         name            TEXT    NOT NULL, 
10621         xpath           TEXT    NOT NULL,
10622     first_word  BOOL    NOT NULL DEFAULT FALSE,
10623         format          TEXT    NOT NULL DEFAULT 'marcxml'
10624 );
10625
10626 INSERT INTO config.biblio_fingerprint (name, xpath, format)
10627     VALUES (
10628         'Title',
10629         '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' ||
10630             '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' ||
10631             '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' ||
10632             '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' ||
10633             '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]',
10634         'marcxml'
10635     );
10636
10637 INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word)
10638     VALUES (
10639         'Author',
10640         '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|'
10641             '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|'
10642             '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|'
10643             '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|'
10644             '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]',
10645         'marcxml',
10646         TRUE
10647     );
10648
10649 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$
10650 DECLARE
10651     qual        INT;
10652     ldr         TEXT;
10653     tval        TEXT;
10654     tval_rec    RECORD;
10655     bval        TEXT;
10656     bval_rec    RECORD;
10657     type_map    RECORD;
10658     ff_pos      RECORD;
10659     ff_tag_data TEXT;
10660 BEGIN
10661
10662     IF marc IS NULL OR marc = '' THEN
10663         RETURN NULL;
10664     END IF;
10665
10666     -- First, the count of tags
10667     qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1);
10668
10669     -- now go through a bunch of pain to get the record type
10670     IF best_type IS NOT NULL THEN
10671         ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1];
10672
10673         IF ldr IS NOT NULL THEN
10674             SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10675             SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10676
10677
10678             tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
10679             bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
10680
10681             -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
10682
10683             SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10684
10685             IF type_map.code IS NOT NULL THEN
10686                 IF best_type = type_map.code THEN
10687                     qual := qual + qual / 2;
10688                 END IF;
10689
10690                 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
10691                     ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length);
10692                     IF ff_tag_data = best_lang THEN
10693                             qual := qual + 100;
10694                     END IF;
10695                 END LOOP;
10696             END IF;
10697         END IF;
10698     END IF;
10699
10700     -- Now look for some quality metrics
10701     -- DCL record?
10702     IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN
10703         qual := qual + 10;
10704     END IF;
10705
10706     -- From OCLC?
10707     IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN
10708         qual := qual + 10;
10709     END IF;
10710
10711     RETURN qual;
10712
10713 END;
10714 $func$ LANGUAGE PLPGSQL;
10715
10716 CREATE OR REPLACE FUNCTION biblio.extract_fingerprint ( marc text ) RETURNS TEXT AS $func$
10717 DECLARE
10718     idx     config.biblio_fingerprint%ROWTYPE;
10719     xfrm        config.xml_transform%ROWTYPE;
10720     prev_xfrm   TEXT;
10721     transformed_xml TEXT;
10722     xml_node    TEXT;
10723     xml_node_list   TEXT[];
10724     raw_text    TEXT;
10725     output_text TEXT := '';
10726 BEGIN
10727
10728     IF marc IS NULL OR marc = '' THEN
10729         RETURN NULL;
10730     END IF;
10731
10732     -- Loop over the indexing entries
10733     FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP
10734
10735         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
10736
10737         -- See if we can skip the XSLT ... it's expensive
10738         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
10739             -- Can't skip the transform
10740             IF xfrm.xslt <> '---' THEN
10741                 transformed_xml := oils_xslt_process(marc,xfrm.xslt);
10742             ELSE
10743                 transformed_xml := marc;
10744             END IF;
10745
10746             prev_xfrm := xfrm.name;
10747         END IF;
10748
10749         raw_text := COALESCE(
10750             naco_normalize(
10751                 ARRAY_TO_STRING(
10752                     oils_xpath(
10753                         '//text()',
10754                         (oils_xpath(
10755                             idx.xpath,
10756                             transformed_xml,
10757                             ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]
10758                         ))[1]
10759                     ),
10760                     ''
10761                 )
10762             ),
10763             ''
10764         );
10765
10766         raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E'');
10767         raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain!
10768
10769         IF idx.first_word IS TRUE THEN
10770             raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1');
10771         END IF;
10772
10773         output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g');
10774
10775     END LOOP;
10776
10777     RETURN output_text;
10778
10779 END;
10780 $func$ LANGUAGE PLPGSQL;
10781
10782 -- BEFORE UPDATE OR INSERT trigger for biblio.record_entry
10783 CREATE OR REPLACE FUNCTION biblio.fingerprint_trigger () RETURNS TRIGGER AS $func$
10784 BEGIN
10785
10786     -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS')
10787
10788     IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we?
10789         RETURN NEW;
10790     END IF;
10791
10792     NEW.fingerprint := biblio.extract_fingerprint(NEW.marc);
10793     NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]);
10794
10795     RETURN NEW;
10796
10797 END;
10798 $func$ LANGUAGE PLPGSQL;
10799
10800 CREATE TABLE config.internal_flag (
10801     name    TEXT    PRIMARY KEY,
10802     value   TEXT,
10803     enabled BOOL    NOT NULL DEFAULT FALSE
10804 );
10805 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert');
10806 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc');
10807 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.skip_located_uri');
10808 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri');
10809 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec');
10810 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor');
10811 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry');
10812 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_authority_linking');
10813 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_update');
10814 INSERT INTO config.internal_flag (name) VALUES ('ingest.assume_inserts_only');
10815
10816 CREATE TABLE authority.bib_linking (
10817     id          BIGSERIAL   PRIMARY KEY,
10818     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
10819     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
10820 );
10821 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
10822 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
10823
10824 CREATE OR REPLACE FUNCTION public.remove_paren_substring( TEXT ) RETURNS TEXT AS $func$
10825     SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g');
10826 $func$ LANGUAGE SQL STRICT IMMUTABLE;
10827
10828 CREATE OR REPLACE FUNCTION biblio.map_authority_linking (bibid BIGINT, marc TEXT) RETURNS BIGINT AS $func$
10829     DELETE FROM authority.bib_linking WHERE bib = $1;
10830     INSERT INTO authority.bib_linking (bib, authority)
10831         SELECT  y.bib,
10832                 y.authority
10833           FROM (    SELECT  DISTINCT $1 AS bib,
10834                             BTRIM(remove_paren_substring(txt))::BIGINT AS authority
10835                       FROM  explode_array(oils_xpath('//*[@code="0"]/text()',$2)) x(txt)
10836                       WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$
10837                 ) y JOIN authority.record_entry r ON r.id = y.authority;
10838     SELECT $1;
10839 $func$ LANGUAGE SQL;
10840
10841 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_rec_descriptor( bib_id BIGINT ) RETURNS VOID AS $func$
10842 BEGIN
10843     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10844     IF NOT FOUND THEN
10845         DELETE FROM metabib.rec_descriptor WHERE record = bib_id;
10846     END IF;
10847     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)
10848         SELECT  bib_id,
10849                 biblio.marc21_extract_fixed_field( bib_id, 'Type' ),
10850                 biblio.marc21_extract_fixed_field( bib_id, 'Form' ),
10851                 biblio.marc21_extract_fixed_field( bib_id, 'BLvl' ),
10852                 biblio.marc21_extract_fixed_field( bib_id, 'Ctrl' ),
10853                 biblio.marc21_extract_fixed_field( bib_id, 'ELvl' ),
10854                 biblio.marc21_extract_fixed_field( bib_id, 'Audn' ),
10855                 biblio.marc21_extract_fixed_field( bib_id, 'LitF' ),
10856                 biblio.marc21_extract_fixed_field( bib_id, 'TMat' ),
10857                 biblio.marc21_extract_fixed_field( bib_id, 'Desc' ),
10858                 biblio.marc21_extract_fixed_field( bib_id, 'DtSt' ),
10859                 biblio.marc21_extract_fixed_field( bib_id, 'Lang' ),
10860                 (   SELECT  v.value
10861                       FROM  biblio.marc21_physical_characteristics( bib_id) p
10862                             JOIN config.marc21_physical_characteristic_subfield_map s ON (s.id = p.subfield)
10863                             JOIN config.marc21_physical_characteristic_value_map v ON (v.id = p.value)
10864                       WHERE p.ptype = 'v' AND s.subfield = 'e'    ),
10865                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date1'), ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
10866                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date2'), ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
10867
10868     RETURN;
10869 END;
10870 $func$ LANGUAGE PLPGSQL;
10871
10872 CREATE TABLE config.metabib_class (
10873     name    TEXT    PRIMARY KEY,
10874     label   TEXT    NOT NULL UNIQUE
10875 );
10876
10877 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
10878 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
10879 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
10880 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
10881 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
10882
10883 CREATE TABLE metabib.facet_entry (
10884         id              BIGSERIAL       PRIMARY KEY,
10885         source          BIGINT          NOT NULL,
10886         field           INT             NOT NULL,
10887         value           TEXT            NOT NULL
10888 );
10889
10890 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_field_entries( bib_id BIGINT ) RETURNS VOID AS $func$
10891 DECLARE
10892     fclass          RECORD;
10893     ind_data        metabib.field_entry_template%ROWTYPE;
10894 BEGIN
10895     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10896     IF NOT FOUND THEN
10897         FOR fclass IN SELECT * FROM config.metabib_class LOOP
10898             -- RAISE NOTICE 'Emptying out %', fclass.name;
10899             EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id;
10900         END LOOP;
10901         DELETE FROM metabib.facet_entry WHERE source = bib_id;
10902     END IF;
10903
10904     FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP
10905         IF ind_data.field < 0 THEN
10906             ind_data.field = -1 * ind_data.field;
10907             INSERT INTO metabib.facet_entry (field, source, value)
10908                 VALUES (ind_data.field, ind_data.source, ind_data.value);
10909         ELSE
10910             EXECUTE $$
10911                 INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value)
10912                     VALUES ($$ ||
10913                         quote_literal(ind_data.field) || $$, $$ ||
10914                         quote_literal(ind_data.source) || $$, $$ ||
10915                         quote_literal(ind_data.value) ||
10916                     $$);$$;
10917         END IF;
10918
10919     END LOOP;
10920
10921     RETURN;
10922 END;
10923 $func$ LANGUAGE PLPGSQL;
10924
10925 CREATE OR REPLACE FUNCTION biblio.extract_located_uris( bib_id BIGINT, marcxml TEXT, editor_id INT ) RETURNS VOID AS $func$
10926 DECLARE
10927     uris            TEXT[];
10928     uri_xml         TEXT;
10929     uri_label       TEXT;
10930     uri_href        TEXT;
10931     uri_use         TEXT;
10932     uri_owner       TEXT;
10933     uri_owner_id    INT;
10934     uri_id          INT;
10935     uri_cn_id       INT;
10936     uri_map_id      INT;
10937 BEGIN
10938
10939     uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml);
10940     IF ARRAY_UPPER(uris,1) > 0 THEN
10941         FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP
10942             -- First we pull info out of the 856
10943             uri_xml     := uris[i];
10944
10945             uri_href    := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1];
10946             CONTINUE WHEN uri_href IS NULL;
10947
10948             uri_label   := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10949             CONTINUE WHEN uri_label IS NULL;
10950
10951             uri_owner   := (oils_xpath('//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10952             CONTINUE WHEN uri_owner IS NULL;
10953
10954             uri_use     := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10955
10956             uri_owner := REGEXP_REPLACE(uri_owner, $re$^.*?\((\w+)\).*$$re$, E'\\1');
10957
10958             SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner;
10959             CONTINUE WHEN NOT FOUND;
10960
10961             -- now we look for a matching uri
10962             SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10963             IF NOT FOUND THEN -- create one
10964                 INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use);
10965                 SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10966             END IF;
10967
10968             -- we need a call number to link through
10969             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;
10970             IF NOT FOUND THEN
10971                 INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label)
10972                     VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##');
10973                 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;
10974             END IF;
10975
10976             -- now, link them if they're not already
10977             SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id;
10978             IF NOT FOUND THEN
10979                 INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id);
10980             END IF;
10981
10982         END LOOP;
10983     END IF;
10984
10985     RETURN;
10986 END;
10987 $func$ LANGUAGE PLPGSQL;
10988
10989 CREATE OR REPLACE FUNCTION metabib.remap_metarecord_for_bib( bib_id BIGINT, fp TEXT ) RETURNS BIGINT AS $func$
10990 DECLARE
10991     source_count    INT;
10992     old_mr          BIGINT;
10993     tmp_mr          metabib.metarecord%ROWTYPE;
10994     deleted_mrs     BIGINT[];
10995 BEGIN
10996
10997     DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; -- Rid ourselves of the search-estimate-killing linkage
10998
10999     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
11000
11001         IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN -- Find the first fingerprint-matching
11002             old_mr := tmp_mr.id;
11003         ELSE
11004             SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id;
11005             IF source_count = 0 THEN -- No other records
11006                 deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id);
11007                 DELETE FROM metabib.metarecord WHERE id = tmp_mr.id;
11008             END IF;
11009         END IF;
11010
11011     END LOOP;
11012
11013     IF old_mr IS NULL THEN -- we found no suitable, preexisting MR based on old source maps
11014         SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint?
11015         IF old_mr IS NULL THEN -- nope, create one and grab its id
11016             INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id );
11017             SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp;
11018         ELSE -- indeed there is. update it with a null cache and recalcualated 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     ELSE -- there was one we already attached to, update its mods cache and master_record
11025         UPDATE  metabib.metarecord
11026           SET   mods = NULL,
11027                 master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
11028           WHERE id = old_mr;
11029     END IF;
11030
11031     INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping
11032
11033     IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN
11034         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
11035     END IF;
11036
11037     RETURN old_mr;
11038
11039 END;
11040 $func$ LANGUAGE PLPGSQL;
11041
11042 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_full_rec( bib_id BIGINT ) RETURNS VOID AS $func$
11043 BEGIN
11044     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
11045     IF NOT FOUND THEN
11046         DELETE FROM metabib.real_full_rec WHERE record = bib_id;
11047     END IF;
11048     INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value)
11049         SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id );
11050
11051     RETURN;
11052 END;
11053 $func$ LANGUAGE PLPGSQL;
11054
11055 -- AFTER UPDATE OR INSERT trigger for biblio.record_entry
11056 CREATE OR REPLACE FUNCTION biblio.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
11057 BEGIN
11058
11059     IF NEW.deleted IS TRUE THEN -- If this bib is deleted
11060         DELETE FROM metabib.metarecord_source_map WHERE source = NEW.id; -- Rid ourselves of the search-estimate-killing linkage
11061         DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible
11062         RETURN NEW; -- and we're done
11063     END IF;
11064
11065     IF TG_OP = 'UPDATE' THEN -- re-ingest?
11066         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
11067
11068         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
11069             RETURN NEW;
11070         END IF;
11071     END IF;
11072
11073     -- Record authority linking
11074     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
11075     IF NOT FOUND THEN
11076         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
11077     END IF;
11078
11079     -- Flatten and insert the mfr data
11080     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
11081     IF NOT FOUND THEN
11082         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
11083         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
11084         IF NOT FOUND THEN
11085             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
11086         END IF;
11087     END IF;
11088
11089     -- Gather and insert the field entry data
11090     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
11091
11092     -- Located URI magic
11093     IF TG_OP = 'INSERT' THEN
11094         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11095         IF NOT FOUND THEN
11096             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11097         END IF;
11098     ELSE
11099         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11100         IF NOT FOUND THEN
11101             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11102         END IF;
11103     END IF;
11104
11105     -- (re)map metarecord-bib linking
11106     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
11107         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
11108         IF NOT FOUND THEN
11109             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11110         END IF;
11111     ELSE -- we're doing an update, and we're not deleted, remap
11112         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_update' AND enabled;
11113         IF NOT FOUND THEN
11114             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11115         END IF;
11116     END IF;
11117
11118     RETURN NEW;
11119 END;
11120 $func$ LANGUAGE PLPGSQL;
11121
11122 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
11123 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 ();
11124
11125 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
11126
11127 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT ) RETURNS SETOF RECORD AS $func$
11128 DECLARE
11129     xpath_list  TEXT[];
11130     select_list TEXT[];
11131     where_list  TEXT[];
11132     q           TEXT;
11133     out_record  RECORD;
11134     empty_test  RECORD;
11135 BEGIN
11136     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
11137  
11138     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
11139  
11140     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
11141         IF xpath_list[i] = 'null()' THEN
11142             select_list := ARRAY_APPEND( select_list, 'NULL::TEXT AS c_' || i );
11143         ELSE
11144             select_list := ARRAY_APPEND(
11145                 select_list,
11146                 $sel$
11147                 EXPLODE_ARRAY(
11148                     COALESCE(
11149                         NULLIF(
11150                             oils_xpath(
11151                                 $sel$ ||
11152                                     quote_literal(
11153                                         CASE
11154                                             WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
11155                                             ELSE xpath_list[i] || '//text()'
11156                                         END
11157                                     ) ||
11158                                 $sel$,
11159                                 $sel$ || document_field || $sel$
11160                             ),
11161                            '{}'::TEXT[]
11162                         ),
11163                         '{NULL}'::TEXT[]
11164                     )
11165                 ) AS c_$sel$ || i
11166             );
11167             where_list := ARRAY_APPEND(
11168                 where_list,
11169                 'c_' || i || ' IS NOT NULL'
11170             );
11171         END IF;
11172     END LOOP;
11173  
11174     q := $q$
11175 SELECT * FROM (
11176     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
11177 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' AND ' );
11178     -- RAISE NOTICE 'query: %', q;
11179  
11180     FOR out_record IN EXECUTE q LOOP
11181         RETURN NEXT out_record;
11182     END LOOP;
11183  
11184     RETURN;
11185 END;
11186 $func$ LANGUAGE PLPGSQL IMMUTABLE;
11187
11188 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
11189 DECLARE
11190
11191     owning_lib      TEXT;
11192     circ_lib        TEXT;
11193     call_number     TEXT;
11194     copy_number     TEXT;
11195     status          TEXT;
11196     location        TEXT;
11197     circulate       TEXT;
11198     deposit         TEXT;
11199     deposit_amount  TEXT;
11200     ref             TEXT;
11201     holdable        TEXT;
11202     price           TEXT;
11203     barcode         TEXT;
11204     circ_modifier   TEXT;
11205     circ_as_type    TEXT;
11206     alert_message   TEXT;
11207     opac_visible    TEXT;
11208     pub_note        TEXT;
11209     priv_note       TEXT;
11210
11211     attr_def        RECORD;
11212     tmp_attr_set    RECORD;
11213     attr_set        vandelay.import_item%ROWTYPE;
11214
11215     xpath           TEXT;
11216
11217 BEGIN
11218
11219     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
11220
11221     IF FOUND THEN
11222
11223         attr_set.definition := attr_def.id; 
11224     
11225         -- Build the combined XPath
11226     
11227         owning_lib :=
11228             CASE
11229                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
11230                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
11231                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
11232             END;
11233     
11234         circ_lib :=
11235             CASE
11236                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
11237                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
11238                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
11239             END;
11240     
11241         call_number :=
11242             CASE
11243                 WHEN attr_def.call_number IS NULL THEN 'null()'
11244                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
11245                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
11246             END;
11247     
11248         copy_number :=
11249             CASE
11250                 WHEN attr_def.copy_number IS NULL THEN 'null()'
11251                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
11252                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
11253             END;
11254     
11255         status :=
11256             CASE
11257                 WHEN attr_def.status IS NULL THEN 'null()'
11258                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
11259                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
11260             END;
11261     
11262         location :=
11263             CASE
11264                 WHEN attr_def.location IS NULL THEN 'null()'
11265                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
11266                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
11267             END;
11268     
11269         circulate :=
11270             CASE
11271                 WHEN attr_def.circulate IS NULL THEN 'null()'
11272                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
11273                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
11274             END;
11275     
11276         deposit :=
11277             CASE
11278                 WHEN attr_def.deposit IS NULL THEN 'null()'
11279                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
11280                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
11281             END;
11282     
11283         deposit_amount :=
11284             CASE
11285                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
11286                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
11287                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
11288             END;
11289     
11290         ref :=
11291             CASE
11292                 WHEN attr_def.ref IS NULL THEN 'null()'
11293                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
11294                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
11295             END;
11296     
11297         holdable :=
11298             CASE
11299                 WHEN attr_def.holdable IS NULL THEN 'null()'
11300                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
11301                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
11302             END;
11303     
11304         price :=
11305             CASE
11306                 WHEN attr_def.price IS NULL THEN 'null()'
11307                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
11308                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
11309             END;
11310     
11311         barcode :=
11312             CASE
11313                 WHEN attr_def.barcode IS NULL THEN 'null()'
11314                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
11315                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
11316             END;
11317     
11318         circ_modifier :=
11319             CASE
11320                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
11321                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
11322                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
11323             END;
11324     
11325         circ_as_type :=
11326             CASE
11327                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
11328                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
11329                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
11330             END;
11331     
11332         alert_message :=
11333             CASE
11334                 WHEN attr_def.alert_message IS NULL THEN 'null()'
11335                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
11336                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
11337             END;
11338     
11339         opac_visible :=
11340             CASE
11341                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
11342                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
11343                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
11344             END;
11345
11346         pub_note :=
11347             CASE
11348                 WHEN attr_def.pub_note IS NULL THEN 'null()'
11349                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
11350                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
11351             END;
11352         priv_note :=
11353             CASE
11354                 WHEN attr_def.priv_note IS NULL THEN 'null()'
11355                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
11356                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
11357             END;
11358     
11359     
11360         xpath := 
11361             owning_lib      || '|' || 
11362             circ_lib        || '|' || 
11363             call_number     || '|' || 
11364             copy_number     || '|' || 
11365             status          || '|' || 
11366             location        || '|' || 
11367             circulate       || '|' || 
11368             deposit         || '|' || 
11369             deposit_amount  || '|' || 
11370             ref             || '|' || 
11371             holdable        || '|' || 
11372             price           || '|' || 
11373             barcode         || '|' || 
11374             circ_modifier   || '|' || 
11375             circ_as_type    || '|' || 
11376             alert_message   || '|' || 
11377             pub_note        || '|' || 
11378             priv_note       || '|' || 
11379             opac_visible;
11380
11381         -- RAISE NOTICE 'XPath: %', xpath;
11382         
11383         FOR tmp_attr_set IN
11384                 SELECT  *
11385                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
11386                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
11387                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
11388                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
11389         LOOP
11390     
11391             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
11392             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
11393
11394             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
11395             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
11396     
11397             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
11398             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
11399             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
11400     
11401             SELECT  id INTO attr_set.location
11402               FROM  asset.copy_location
11403               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
11404                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
11405     
11406             attr_set.circulate      :=
11407                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
11408                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
11409
11410             attr_set.deposit        :=
11411                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
11412                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
11413
11414             attr_set.holdable       :=
11415                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
11416                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
11417
11418             attr_set.opac_visible   :=
11419                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
11420                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
11421
11422             attr_set.ref            :=
11423                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
11424                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
11425     
11426             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
11427             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
11428             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
11429     
11430             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
11431             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
11432             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
11433             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
11434             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11435             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
11436             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
11437             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11438     
11439             RETURN NEXT attr_set;
11440     
11441         END LOOP;
11442     
11443     END IF;
11444
11445     RETURN;
11446
11447 END;
11448 $$ LANGUAGE PLPGSQL;
11449
11450 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
11451 DECLARE
11452     attr_def    BIGINT;
11453     item_data   vandelay.import_item%ROWTYPE;
11454 BEGIN
11455
11456     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
11457
11458     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
11459         INSERT INTO vandelay.import_item (
11460             record,
11461             definition,
11462             owning_lib,
11463             circ_lib,
11464             call_number,
11465             copy_number,
11466             status,
11467             location,
11468             circulate,
11469             deposit,
11470             deposit_amount,
11471             ref,
11472             holdable,
11473             price,
11474             barcode,
11475             circ_modifier,
11476             circ_as_type,
11477             alert_message,
11478             pub_note,
11479             priv_note,
11480             opac_visible
11481         ) VALUES (
11482             NEW.id,
11483             item_data.definition,
11484             item_data.owning_lib,
11485             item_data.circ_lib,
11486             item_data.call_number,
11487             item_data.copy_number,
11488             item_data.status,
11489             item_data.location,
11490             item_data.circulate,
11491             item_data.deposit,
11492             item_data.deposit_amount,
11493             item_data.ref,
11494             item_data.holdable,
11495             item_data.price,
11496             item_data.barcode,
11497             item_data.circ_modifier,
11498             item_data.circ_as_type,
11499             item_data.alert_message,
11500             item_data.pub_note,
11501             item_data.priv_note,
11502             item_data.opac_visible
11503         );
11504     END LOOP;
11505
11506     RETURN NULL;
11507 END;
11508 $func$ LANGUAGE PLPGSQL;
11509
11510 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11511 BEGIN
11512     EXECUTE $$
11513         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11514     $$;
11515         RETURN TRUE;
11516 END;
11517 $creator$ LANGUAGE 'plpgsql';
11518
11519 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11520 BEGIN
11521     EXECUTE $$
11522         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11523             audit_id    BIGINT                          PRIMARY KEY,
11524             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11525             audit_action        TEXT                            NOT NULL,
11526             LIKE $$ || sch || $$.$$ || tbl || $$
11527         );
11528     $$;
11529         RETURN TRUE;
11530 END;
11531 $creator$ LANGUAGE 'plpgsql';
11532
11533 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11534 BEGIN
11535     EXECUTE $$
11536         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11537         RETURNS TRIGGER AS $func$
11538         BEGIN
11539             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11540                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11541                     now(),
11542                     SUBSTR(TG_OP,1,1),
11543                     OLD.*;
11544             RETURN NULL;
11545         END;
11546         $func$ LANGUAGE 'plpgsql';
11547     $$;
11548         RETURN TRUE;
11549 END;
11550 $creator$ LANGUAGE 'plpgsql';
11551
11552 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11553 BEGIN
11554     EXECUTE $$
11555         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11556             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11557             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11558     $$;
11559         RETURN TRUE;
11560 END;
11561 $creator$ LANGUAGE 'plpgsql';
11562
11563 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11564 BEGIN
11565     EXECUTE $$
11566         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11567             SELECT      -1, now() as audit_time, '-' as audit_action, *
11568               FROM      $$ || sch || $$.$$ || tbl || $$
11569                 UNION ALL
11570             SELECT      *
11571               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11572     $$;
11573         RETURN TRUE;
11574 END;
11575 $creator$ LANGUAGE 'plpgsql';
11576
11577 -- The main event
11578
11579 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11580 BEGIN
11581     PERFORM acq.create_acq_seq(sch, tbl);
11582     PERFORM acq.create_acq_history(sch, tbl);
11583     PERFORM acq.create_acq_func(sch, tbl);
11584     PERFORM acq.create_acq_update_trigger(sch, tbl);
11585     PERFORM acq.create_acq_lifecycle(sch, tbl);
11586     RETURN TRUE;
11587 END;
11588 $creator$ LANGUAGE 'plpgsql';
11589
11590 ALTER TABLE acq.lineitem DROP COLUMN item_count;
11591
11592 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11593     SELECT  fund.id AS fund,
11594             fund_debit.encumbrance AS encumbrance,
11595             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11596       FROM acq.fund AS fund
11597                         LEFT JOIN acq.fund_debit AS fund_debit
11598                                 ON ( fund.id = fund_debit.fund )
11599       GROUP BY 1,2;
11600
11601 CREATE TABLE acq.debit_attribution (
11602         id                     INT         NOT NULL PRIMARY KEY,
11603         fund_debit             INT         NOT NULL
11604                                            REFERENCES acq.fund_debit
11605                                            DEFERRABLE INITIALLY DEFERRED,
11606     debit_amount           NUMERIC     NOT NULL,
11607         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11608                                            DEFERRABLE INITIALLY DEFERRED,
11609     credit_amount          NUMERIC
11610 );
11611
11612 CREATE INDEX acq_attribution_debit_idx
11613         ON acq.debit_attribution( fund_debit );
11614
11615 CREATE INDEX acq_attribution_credit_idx
11616         ON acq.debit_attribution( funding_source_credit );
11617
11618 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11619 /*
11620 Function to attribute expenditures and encumbrances to funding source credits,
11621 and thereby to funding sources.
11622
11623 Read the debits in chonological order, attributing each one to one or
11624 more funding source credits.  Constraints:
11625
11626 1. Don't attribute more to a credit than the amount of the credit.
11627
11628 2. For a given fund, don't attribute more to a funding source than the
11629 source has allocated to that fund.
11630
11631 3. Attribute debits to credits with deadlines before attributing them to
11632 credits without deadlines.  Otherwise attribute to the earliest credits
11633 first, based on the deadline date when present, or on the effective date
11634 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11635 This ordering is defined by an ORDER BY clause on the view
11636 acq.ordered_funding_source_credit.
11637
11638 Start by truncating the table acq.debit_attribution.  Then insert a row
11639 into that table for each attribution.  If a debit cannot be fully
11640 attributed, insert a row for the unattributable balance, with the 
11641 funding_source_credit and credit_amount columns NULL.
11642 */
11643 DECLARE
11644         curr_fund_source_bal RECORD;
11645         seqno                INT;     -- sequence num for credits applicable to a fund
11646         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11647         fc                   RECORD;  -- used for loading t_fund_credit table
11648         sc                   RECORD;  -- used for loading t_fund_credit table
11649         --
11650         -- Used exclusively in the main loop:
11651         --
11652         deb                 RECORD;   -- current row from acq.fund_debit table
11653         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11654         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11655         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11656         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11657         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11658         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11659         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11660         attrib_count        INT;      -- populates id of acq.debit_attribution
11661 BEGIN
11662         --
11663         -- Load a temporary table.  For each combination of fund and funding source,
11664         -- load an entry with the total amount allocated to that fund by that source.
11665         -- This sum may reflect transfers as well as original allocations.  We will
11666         -- reduce this balance whenever we attribute debits to it.
11667         --
11668         CREATE TEMP TABLE t_fund_source_bal
11669         ON COMMIT DROP AS
11670                 SELECT
11671                         fund AS fund,
11672                         funding_source AS source,
11673                         sum( amount ) AS balance
11674                 FROM
11675                         acq.fund_allocation
11676                 GROUP BY
11677                         fund,
11678                         funding_source
11679                 HAVING
11680                         sum( amount ) > 0;
11681         --
11682         CREATE INDEX t_fund_source_bal_idx
11683                 ON t_fund_source_bal( fund, source );
11684         -------------------------------------------------------------------------------
11685         --
11686         -- Load another temporary table.  For each fund, load zero or more
11687         -- funding source credits from which that fund can get money.
11688         --
11689         CREATE TEMP TABLE t_fund_credit (
11690                 fund        INT,
11691                 seq         INT,
11692                 credit      INT
11693         ) ON COMMIT DROP;
11694         --
11695         FOR fc IN
11696                 SELECT DISTINCT fund
11697                 FROM acq.fund_allocation
11698                 ORDER BY fund
11699         LOOP                  -- Loop over the funds
11700                 seqno := 1;
11701                 FOR sc IN
11702                         SELECT
11703                                 ofsc.id
11704                         FROM
11705                                 acq.ordered_funding_source_credit AS ofsc
11706                         WHERE
11707                                 ofsc.funding_source IN
11708                                 (
11709                                         SELECT funding_source
11710                                         FROM acq.fund_allocation
11711                                         WHERE fund = fc.fund
11712                                 )
11713                 ORDER BY
11714                     ofsc.sort_priority,
11715                     ofsc.sort_date,
11716                     ofsc.id
11717                 LOOP                        -- Add each credit to the list
11718                         INSERT INTO t_fund_credit (
11719                                 fund,
11720                                 seq,
11721                                 credit
11722                         ) VALUES (
11723                                 fc.fund,
11724                                 seqno,
11725                                 sc.id
11726                         );
11727                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11728                         seqno := seqno + 1;
11729                 END LOOP;     -- Loop over credits for a given fund
11730         END LOOP;         -- Loop over funds
11731         --
11732         CREATE INDEX t_fund_credit_idx
11733                 ON t_fund_credit( fund, seq );
11734         -------------------------------------------------------------------------------
11735         --
11736         -- Load yet another temporary table.  This one is a list of funding source
11737         -- credits, with their balances.  We shall reduce those balances as we
11738         -- attribute debits to them.
11739         --
11740         CREATE TEMP TABLE t_credit
11741         ON COMMIT DROP AS
11742         SELECT
11743             fsc.id AS credit,
11744             fsc.funding_source AS source,
11745             fsc.amount AS balance,
11746             fs.currency_type AS currency_type
11747         FROM
11748             acq.funding_source_credit AS fsc,
11749             acq.funding_source fs
11750         WHERE
11751             fsc.funding_source = fs.id
11752                         AND fsc.amount > 0;
11753         --
11754         CREATE INDEX t_credit_idx
11755                 ON t_credit( credit );
11756         --
11757         -------------------------------------------------------------------------------
11758         --
11759         -- Now that we have loaded the lookup tables: loop through the debits,
11760         -- attributing each one to one or more funding source credits.
11761         -- 
11762         truncate table acq.debit_attribution;
11763         --
11764         attrib_count := 0;
11765         FOR deb in
11766                 SELECT
11767                         fd.id,
11768                         fd.fund,
11769                         fd.amount,
11770                         f.currency_type,
11771                         fd.encumbrance
11772                 FROM
11773                         acq.fund_debit fd,
11774                         acq.fund f
11775                 WHERE
11776                         fd.fund = f.id
11777                 ORDER BY
11778                         fd.id
11779         LOOP
11780                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11781                 --
11782                 debit_balance := deb.amount;
11783                 --
11784                 -- Loop over the funding source credits that are eligible
11785                 -- to pay for this debit
11786                 --
11787                 FOR fund_credit IN
11788                         SELECT
11789                                 credit
11790                         FROM
11791                                 t_fund_credit
11792                         WHERE
11793                                 fund = deb.fund
11794                         ORDER BY
11795                                 seq
11796                 LOOP
11797                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11798                         --
11799                         -- Look up the balance for this credit.  If it's zero, then
11800                         -- it's not useful, so treat it as if you didn't find it.
11801                         -- (Actually there shouldn't be any zero balances in the table,
11802                         -- but we check just to make sure.)
11803                         --
11804                         SELECT *
11805                         INTO curr_credit_bal
11806                         FROM t_credit
11807                         WHERE
11808                                 credit = fund_credit.credit
11809                                 AND balance > 0;
11810                         --
11811                         IF curr_credit_bal IS NULL THEN
11812                                 --
11813                                 -- This credit is exhausted; try the next one.
11814                                 --
11815                                 CONTINUE;
11816                         END IF;
11817                         --
11818                         --
11819                         -- At this point we have an applicable credit with some money left.
11820                         -- Now see if the relevant funding_source has any money left.
11821                         --
11822                         -- Look up the balance of the allocation for this combination of
11823                         -- fund and source.  If you find such an entry, but it has a zero
11824                         -- balance, then it's not useful, so treat it as unfound.
11825                         -- (Actually there shouldn't be any zero balances in the table,
11826                         -- but we check just to make sure.)
11827                         --
11828                         SELECT *
11829                         INTO curr_fund_source_bal
11830                         FROM t_fund_source_bal
11831                         WHERE
11832                                 fund = deb.fund
11833                                 AND source = curr_credit_bal.source
11834                                 AND balance > 0;
11835                         --
11836                         IF curr_fund_source_bal IS NULL THEN
11837                                 --
11838                                 -- This fund/source doesn't exist or is already exhausted,
11839                                 -- so we can't use this credit.  Go on to the next one.
11840                                 --
11841                                 CONTINUE;
11842                         END IF;
11843                         --
11844                         -- Convert the available balances to the currency of the fund
11845                         --
11846                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11847                                 curr_credit_bal.currency_type, deb.currency_type );
11848                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11849                                 curr_credit_bal.currency_type, deb.currency_type );
11850                         --
11851                         -- Determine how much we can attribute to this credit: the minimum
11852                         -- of the debit amount, the fund/source balance, and the
11853                         -- credit balance
11854                         --
11855                         --RAISE NOTICE '   deb bal %', debit_balance;
11856                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11857                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11858                         --
11859                         conv_attr_amount := NULL;
11860                         attr_amount := debit_balance;
11861                         --
11862                         IF attr_amount > conv_alloc_balance THEN
11863                                 attr_amount := conv_alloc_balance;
11864                                 conv_attr_amount := curr_fund_source_bal.balance;
11865                         END IF;
11866                         IF attr_amount > conv_cred_balance THEN
11867                                 attr_amount := conv_cred_balance;
11868                                 conv_attr_amount := curr_credit_bal.balance;
11869                         END IF;
11870                         --
11871                         -- If we're attributing all of one of the balances, then that's how
11872                         -- much we will deduct from the balances, and we already captured
11873                         -- that amount above.  Otherwise we must convert the amount of the
11874                         -- attribution from the currency of the fund back to the currency of
11875                         -- the funding source.
11876                         --
11877                         IF conv_attr_amount IS NULL THEN
11878                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11879                                         deb.currency_type, curr_credit_bal.currency_type );
11880                         END IF;
11881                         --
11882                         -- Insert a row to record the attribution
11883                         --
11884                         attrib_count := attrib_count + 1;
11885                         INSERT INTO acq.debit_attribution (
11886                                 id,
11887                                 fund_debit,
11888                                 debit_amount,
11889                                 funding_source_credit,
11890                                 credit_amount
11891                         ) VALUES (
11892                                 attrib_count,
11893                                 deb.id,
11894                                 attr_amount,
11895                                 curr_credit_bal.credit,
11896                                 conv_attr_amount
11897                         );
11898                         --
11899                         -- Subtract the attributed amount from the various balances
11900                         --
11901                         debit_balance := debit_balance - attr_amount;
11902                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11903                         --
11904                         IF curr_fund_source_bal.balance <= 0 THEN
11905                                 --
11906                                 -- This allocation is exhausted.  Delete it so
11907                                 -- that we don't waste time looking at it again.
11908                                 --
11909                                 DELETE FROM t_fund_source_bal
11910                                 WHERE
11911                                         fund = curr_fund_source_bal.fund
11912                                         AND source = curr_fund_source_bal.source;
11913                         ELSE
11914                                 UPDATE t_fund_source_bal
11915                                 SET balance = balance - conv_attr_amount
11916                                 WHERE
11917                                         fund = curr_fund_source_bal.fund
11918                                         AND source = curr_fund_source_bal.source;
11919                         END IF;
11920                         --
11921                         IF curr_credit_bal.balance <= 0 THEN
11922                                 --
11923                                 -- This funding source credit is exhausted.  Delete it
11924                                 -- so that we don't waste time looking at it again.
11925                                 --
11926                                 --DELETE FROM t_credit
11927                                 --WHERE
11928                                 --      credit = curr_credit_bal.credit;
11929                                 --
11930                                 DELETE FROM t_fund_credit
11931                                 WHERE
11932                                         credit = curr_credit_bal.credit;
11933                         ELSE
11934                                 UPDATE t_credit
11935                                 SET balance = curr_credit_bal.balance
11936                                 WHERE
11937                                         credit = curr_credit_bal.credit;
11938                         END IF;
11939                         --
11940                         -- Are we done with this debit yet?
11941                         --
11942                         IF debit_balance <= 0 THEN
11943                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11944                         END IF;
11945                 END LOOP;       -- End loop over credits
11946                 --
11947                 IF debit_balance <> 0 THEN
11948                         --
11949                         -- We weren't able to attribute this debit, or at least not
11950                         -- all of it.  Insert a row for the unattributed balance.
11951                         --
11952                         attrib_count := attrib_count + 1;
11953                         INSERT INTO acq.debit_attribution (
11954                                 id,
11955                                 fund_debit,
11956                                 debit_amount,
11957                                 funding_source_credit,
11958                                 credit_amount
11959                         ) VALUES (
11960                                 attrib_count,
11961                                 deb.id,
11962                                 debit_balance,
11963                                 NULL,
11964                                 NULL
11965                         );
11966                 END IF;
11967         END LOOP;   -- End of loop over debits
11968 END;
11969 $$ LANGUAGE 'plpgsql';
11970
11971 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11972 DECLARE
11973     query TEXT;
11974     output TEXT;
11975 BEGIN
11976     query := $q$
11977         SELECT  regexp_replace(
11978                     oils_xpath_string(
11979                         $q$ || quote_literal($3) || $q$,
11980                         marc,
11981                         ' '
11982                     ),
11983                     $q$ || quote_literal($4) || $q$,
11984                     '',
11985                     'g')
11986           FROM  $q$ || $1 || $q$
11987           WHERE id = $q$ || $2;
11988
11989     EXECUTE query INTO output;
11990
11991     -- RAISE NOTICE 'query: %, output; %', query, output;
11992
11993     RETURN output;
11994 END;
11995 $$ LANGUAGE PLPGSQL IMMUTABLE;
11996
11997 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
11998     SELECT extract_marc_field($1,$2,$3,'');
11999 $$ LANGUAGE SQL IMMUTABLE;
12000
12001 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
12002 DECLARE
12003     moved_objects INT := 0;
12004     source_cn     asset.call_number%ROWTYPE;
12005     target_cn     asset.call_number%ROWTYPE;
12006     metarec       metabib.metarecord%ROWTYPE;
12007     hold          action.hold_request%ROWTYPE;
12008     ser_rec       serial.record_entry%ROWTYPE;
12009     uri_count     INT := 0;
12010     counter       INT := 0;
12011     uri_datafield TEXT;
12012     uri_text      TEXT := '';
12013 BEGIN
12014
12015     -- move any 856 entries on records that have at least one MARC-mapped URI entry
12016     SELECT  INTO uri_count COUNT(*)
12017       FROM  asset.uri_call_number_map m
12018             JOIN asset.call_number cn ON (m.call_number = cn.id)
12019       WHERE cn.record = source_record;
12020
12021     IF uri_count > 0 THEN
12022
12023         SELECT  COUNT(*) INTO counter
12024           FROM  oils_xpath_table(
12025                     'id',
12026                     'marc',
12027                     'biblio.record_entry',
12028                     '//*[@tag="856"]',
12029                     'id=' || source_record
12030                 ) as t(i int,c text);
12031
12032         FOR i IN 1 .. counter LOOP
12033             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
12034                         ' tag="856"' || 
12035                         ' ind1="' || FIRST(ind1) || '"'  || 
12036                         ' ind2="' || FIRST(ind2) || '">' || 
12037                         array_to_string(
12038                             array_accum(
12039                                 '<subfield code="' || subfield || '">' ||
12040                                 regexp_replace(
12041                                     regexp_replace(
12042                                         regexp_replace(data,'&','&amp;','g'),
12043                                         '>', '&gt;', 'g'
12044                                     ),
12045                                     '<', '&lt;', 'g'
12046                                 ) || '</subfield>'
12047                             ), ''
12048                         ) || '</datafield>' INTO uri_datafield
12049               FROM  oils_xpath_table(
12050                         'id',
12051                         'marc',
12052                         'biblio.record_entry',
12053                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
12054                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
12055                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
12056                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
12057                         'id=' || source_record
12058                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
12059
12060             uri_text := uri_text || uri_datafield;
12061         END LOOP;
12062
12063         IF uri_text <> '' THEN
12064             UPDATE  biblio.record_entry
12065               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
12066               WHERE id = target_record;
12067         END IF;
12068
12069     END IF;
12070
12071     -- Find and move metarecords to the target record
12072     SELECT  INTO metarec *
12073       FROM  metabib.metarecord
12074       WHERE master_record = source_record;
12075
12076     IF FOUND THEN
12077         UPDATE  metabib.metarecord
12078           SET   master_record = target_record,
12079             mods = NULL
12080           WHERE id = metarec.id;
12081
12082         moved_objects := moved_objects + 1;
12083     END IF;
12084
12085     -- Find call numbers attached to the source ...
12086     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
12087
12088         SELECT  INTO target_cn *
12089           FROM  asset.call_number
12090           WHERE label = source_cn.label
12091             AND owning_lib = source_cn.owning_lib
12092             AND record = target_record;
12093
12094         -- ... and if there's a conflicting one on the target ...
12095         IF FOUND THEN
12096
12097             -- ... move the copies to that, and ...
12098             UPDATE  asset.copy
12099               SET   call_number = target_cn.id
12100               WHERE call_number = source_cn.id;
12101
12102             -- ... move V holds to the move-target call number
12103             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
12104
12105                 UPDATE  action.hold_request
12106                   SET   target = target_cn.id
12107                   WHERE id = hold.id;
12108
12109                 moved_objects := moved_objects + 1;
12110             END LOOP;
12111
12112         -- ... if not ...
12113         ELSE
12114             -- ... just move the call number to the target record
12115             UPDATE  asset.call_number
12116               SET   record = target_record
12117               WHERE id = source_cn.id;
12118         END IF;
12119
12120         moved_objects := moved_objects + 1;
12121     END LOOP;
12122
12123     -- Find T holds targeting the source record ...
12124     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
12125
12126         -- ... and move them to the target record
12127         UPDATE  action.hold_request
12128           SET   target = target_record
12129           WHERE id = hold.id;
12130
12131         moved_objects := moved_objects + 1;
12132     END LOOP;
12133
12134     -- Find serial records targeting the source record ...
12135     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
12136         -- ... and move them to the target record
12137         UPDATE  serial.record_entry
12138           SET   record = target_record
12139           WHERE id = ser_rec.id;
12140
12141         moved_objects := moved_objects + 1;
12142     END LOOP;
12143
12144     -- Finally, "delete" the source record
12145     DELETE FROM biblio.record_entry WHERE id = source_record;
12146
12147     -- That's all, folks!
12148     RETURN moved_objects;
12149 END;
12150 $func$ LANGUAGE plpgsql;
12151
12152 CREATE OR REPLACE FUNCTION acq.transfer_fund(
12153         old_fund   IN INT,
12154         old_amount IN NUMERIC,     -- in currency of old fund
12155         new_fund   IN INT,
12156         new_amount IN NUMERIC,     -- in currency of new fund
12157         user_id    IN INT,
12158         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
12159         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
12160 ) RETURNS VOID AS $$
12161 /* -------------------------------------------------------------------------------
12162
12163 Function to transfer money from one fund to another.
12164
12165 A transfer is represented as a pair of entries in acq.fund_allocation, with a
12166 negative amount for the old (losing) fund and a positive amount for the new
12167 (gaining) fund.  In some cases there may be more than one such pair of entries
12168 in order to pull the money from different funding sources, or more specifically
12169 from different funding source credits.  For each such pair there is also an
12170 entry in acq.fund_transfer.
12171
12172 Since funding_source is a non-nullable column in acq.fund_allocation, we must
12173 choose a funding source for the transferred money to come from.  This choice
12174 must meet two constraints, so far as possible:
12175
12176 1. The amount transferred from a given funding source must not exceed the
12177 amount allocated to the old fund by the funding source.  To that end we
12178 compare the amount being transferred to the amount allocated.
12179
12180 2. We shouldn't transfer money that has already been spent or encumbered, as
12181 defined by the funding attribution process.  We attribute expenses to the
12182 oldest funding source credits first.  In order to avoid transferring that
12183 attributed money, we reverse the priority, transferring from the newest funding
12184 source credits first.  There can be no guarantee that this approach will
12185 avoid overcommitting a fund, but no other approach can do any better.
12186
12187 In this context the age of a funding source credit is defined by the
12188 deadline_date for credits with deadline_dates, and by the effective_date for
12189 credits without deadline_dates, with the proviso that credits with deadline_dates
12190 are all considered "older" than those without.
12191
12192 ----------
12193
12194 In the signature for this function, there is one last parameter commented out,
12195 named "funding_source_in".  Correspondingly, the WHERE clause for the query
12196 driving the main loop has an OR clause commented out, which references the
12197 funding_source_in parameter.
12198
12199 If these lines are uncommented, this function will allow the user optionally to
12200 restrict a fund transfer to a specified funding source.  If the source
12201 parameter is left NULL, then there will be no such restriction.
12202
12203 ------------------------------------------------------------------------------- */ 
12204 DECLARE
12205         same_currency      BOOLEAN;
12206         currency_ratio     NUMERIC;
12207         old_fund_currency  TEXT;
12208         old_remaining      NUMERIC;  -- in currency of old fund
12209         new_fund_currency  TEXT;
12210         new_fund_active    BOOLEAN;
12211         new_remaining      NUMERIC;  -- in currency of new fund
12212         curr_old_amt       NUMERIC;  -- in currency of old fund
12213         curr_new_amt       NUMERIC;  -- in currency of new fund
12214         source_addition    NUMERIC;  -- in currency of funding source
12215         source_deduction   NUMERIC;  -- in currency of funding source
12216         orig_allocated_amt NUMERIC;  -- in currency of funding source
12217         allocated_amt      NUMERIC;  -- in currency of fund
12218         source             RECORD;
12219 BEGIN
12220         --
12221         -- Sanity checks
12222         --
12223         IF old_fund IS NULL THEN
12224                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
12225         END IF;
12226         --
12227         IF old_amount IS NULL THEN
12228                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
12229         END IF;
12230         --
12231         -- The new fund and its amount must be both NULL or both not NULL.
12232         --
12233         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
12234                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
12235         END IF;
12236         --
12237         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
12238                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
12239         END IF;
12240         --
12241         IF user_id IS NULL THEN
12242                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
12243         END IF;
12244         --
12245         -- Initialize the amounts to be transferred, each denominated
12246         -- in the currency of its respective fund.  They will be
12247         -- reduced on each iteration of the loop.
12248         --
12249         old_remaining := old_amount;
12250         new_remaining := new_amount;
12251         --
12252         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
12253         --      old_amount, old_fund, new_amount, new_fund;
12254         --
12255         -- Get the currency types of the old and new funds.
12256         --
12257         SELECT
12258                 currency_type
12259         INTO
12260                 old_fund_currency
12261         FROM
12262                 acq.fund
12263         WHERE
12264                 id = old_fund;
12265         --
12266         IF old_fund_currency IS NULL THEN
12267                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
12268         END IF;
12269         --
12270         IF new_fund IS NOT NULL THEN
12271                 SELECT
12272                         currency_type,
12273                         active
12274                 INTO
12275                         new_fund_currency,
12276                         new_fund_active
12277                 FROM
12278                         acq.fund
12279                 WHERE
12280                         id = new_fund;
12281                 --
12282                 IF new_fund_currency IS NULL THEN
12283                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
12284                 ELSIF NOT new_fund_active THEN
12285                         --
12286                         -- No point in putting money into a fund from whence you can't spend it
12287                         --
12288                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
12289                 END IF;
12290                 --
12291                 IF new_amount = old_amount THEN
12292                         same_currency := true;
12293                         currency_ratio := 1;
12294                 ELSE
12295                         --
12296                         -- We'll have to translate currency between funds.  We presume that
12297                         -- the calling code has already applied an appropriate exchange rate,
12298                         -- so we'll apply the same conversion to each sub-transfer.
12299                         --
12300                         same_currency := false;
12301                         currency_ratio := new_amount / old_amount;
12302                 END IF;
12303         END IF;
12304         --
12305         -- Identify the funding source(s) from which we want to transfer the money.
12306         -- The principle is that we want to transfer the newest money first, because
12307         -- we spend the oldest money first.  The priority for spending is defined
12308         -- by a sort of the view acq.ordered_funding_source_credit.
12309         --
12310         FOR source in
12311                 SELECT
12312                         ofsc.id,
12313                         ofsc.funding_source,
12314                         ofsc.amount,
12315                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
12316                                 AS converted_amt,
12317                         fs.currency_type
12318                 FROM
12319                         acq.ordered_funding_source_credit AS ofsc,
12320                         acq.funding_source fs
12321                 WHERE
12322                         ofsc.funding_source = fs.id
12323                         and ofsc.funding_source IN
12324                         (
12325                                 SELECT funding_source
12326                                 FROM acq.fund_allocation
12327                                 WHERE fund = old_fund
12328                         )
12329                         -- and
12330                         -- (
12331                         --      ofsc.funding_source = funding_source_in
12332                         --      OR funding_source_in IS NULL
12333                         -- )
12334                 ORDER BY
12335                         ofsc.sort_priority desc,
12336                         ofsc.sort_date desc,
12337                         ofsc.id desc
12338         LOOP
12339                 --
12340                 -- Determine how much money the old fund got from this funding source,
12341                 -- denominated in the currency types of the source and of the fund.
12342                 -- This result may reflect transfers from previous iterations.
12343                 --
12344                 SELECT
12345                         COALESCE( sum( amount ), 0 ),
12346                         COALESCE( sum( amount )
12347                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
12348                 INTO
12349                         orig_allocated_amt,     -- in currency of the source
12350                         allocated_amt           -- in currency of the old fund
12351                 FROM
12352                         acq.fund_allocation
12353                 WHERE
12354                         fund = old_fund
12355                         and funding_source = source.funding_source;
12356                 --      
12357                 -- Determine how much to transfer from this credit, in the currency
12358                 -- of the fund.   Begin with the amount remaining to be attributed:
12359                 --
12360                 curr_old_amt := old_remaining;
12361                 --
12362                 -- Can't attribute more than was allocated from the fund:
12363                 --
12364                 IF curr_old_amt > allocated_amt THEN
12365                         curr_old_amt := allocated_amt;
12366                 END IF;
12367                 --
12368                 -- Can't attribute more than the amount of the current credit:
12369                 --
12370                 IF curr_old_amt > source.converted_amt THEN
12371                         curr_old_amt := source.converted_amt;
12372                 END IF;
12373                 --
12374                 curr_old_amt := trunc( curr_old_amt, 2 );
12375                 --
12376                 old_remaining := old_remaining - curr_old_amt;
12377                 --
12378                 -- Determine the amount to be deducted, if any,
12379                 -- from the old allocation.
12380                 --
12381                 IF old_remaining > 0 THEN
12382                         --
12383                         -- In this case we're using the whole allocation, so use that
12384                         -- amount directly instead of applying a currency translation
12385                         -- and thereby inviting round-off errors.
12386                         --
12387                         source_deduction := - orig_allocated_amt;
12388                 ELSE 
12389                         source_deduction := trunc(
12390                                 ( - curr_old_amt ) *
12391                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
12392                                 2 );
12393                 END IF;
12394                 --
12395                 IF source_deduction <> 0 THEN
12396                         --
12397                         -- Insert negative allocation for old fund in fund_allocation,
12398                         -- converted into the currency of the funding source
12399                         --
12400                         INSERT INTO acq.fund_allocation (
12401                                 funding_source,
12402                                 fund,
12403                                 amount,
12404                                 allocator,
12405                                 note
12406                         ) VALUES (
12407                                 source.funding_source,
12408                                 old_fund,
12409                                 source_deduction,
12410                                 user_id,
12411                                 'Transfer to fund ' || new_fund
12412                         );
12413                 END IF;
12414                 --
12415                 IF new_fund IS NOT NULL THEN
12416                         --
12417                         -- Determine how much to add to the new fund, in
12418                         -- its currency, and how much remains to be added:
12419                         --
12420                         IF same_currency THEN
12421                                 curr_new_amt := curr_old_amt;
12422                         ELSE
12423                                 IF old_remaining = 0 THEN
12424                                         --
12425                                         -- This is the last iteration, so nothing should be left
12426                                         --
12427                                         curr_new_amt := new_remaining;
12428                                         new_remaining := 0;
12429                                 ELSE
12430                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
12431                                         new_remaining := new_remaining - curr_new_amt;
12432                                 END IF;
12433                         END IF;
12434                         --
12435                         -- Determine how much to add, if any,
12436                         -- to the new fund's allocation.
12437                         --
12438                         IF old_remaining > 0 THEN
12439                                 --
12440                                 -- In this case we're using the whole allocation, so use that amount
12441                                 -- amount directly instead of applying a currency translation and
12442                                 -- thereby inviting round-off errors.
12443                                 --
12444                                 source_addition := orig_allocated_amt;
12445                         ELSIF source.currency_type = old_fund_currency THEN
12446                                 --
12447                                 -- In this case we don't need a round trip currency translation,
12448                                 -- thereby inviting round-off errors:
12449                                 --
12450                                 source_addition := curr_old_amt;
12451                         ELSE 
12452                                 source_addition := trunc(
12453                                         curr_new_amt *
12454                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
12455                                         2 );
12456                         END IF;
12457                         --
12458                         IF source_addition <> 0 THEN
12459                                 --
12460                                 -- Insert positive allocation for new fund in fund_allocation,
12461                                 -- converted to the currency of the founding source
12462                                 --
12463                                 INSERT INTO acq.fund_allocation (
12464                                         funding_source,
12465                                         fund,
12466                                         amount,
12467                                         allocator,
12468                                         note
12469                                 ) VALUES (
12470                                         source.funding_source,
12471                                         new_fund,
12472                                         source_addition,
12473                                         user_id,
12474                                         'Transfer from fund ' || old_fund
12475                                 );
12476                         END IF;
12477                 END IF;
12478                 --
12479                 IF trunc( curr_old_amt, 2 ) <> 0
12480                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12481                         --
12482                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12483                         --
12484                         INSERT INTO acq.fund_transfer (
12485                                 src_fund,
12486                                 src_amount,
12487                                 dest_fund,
12488                                 dest_amount,
12489                                 transfer_user,
12490                                 note,
12491                                 funding_source_credit
12492                         ) VALUES (
12493                                 old_fund,
12494                                 trunc( curr_old_amt, 2 ),
12495                                 new_fund,
12496                                 trunc( curr_new_amt, 2 ),
12497                                 user_id,
12498                                 xfer_note,
12499                                 source.id
12500                         );
12501                 END IF;
12502                 --
12503                 if old_remaining <= 0 THEN
12504                         EXIT;                   -- Nothing more to be transferred
12505                 END IF;
12506         END LOOP;
12507 END;
12508 $$ LANGUAGE plpgsql;
12509
12510 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12511         old_year INTEGER,
12512         user_id INTEGER,
12513         org_unit_id INTEGER
12514 ) RETURNS VOID AS $$
12515 DECLARE
12516 --
12517 new_id      INT;
12518 old_fund    RECORD;
12519 org_found   BOOLEAN;
12520 --
12521 BEGIN
12522         --
12523         -- Sanity checks
12524         --
12525         IF old_year IS NULL THEN
12526                 RAISE EXCEPTION 'Input year argument is NULL';
12527         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12528                 RAISE EXCEPTION 'Input year is out of range';
12529         END IF;
12530         --
12531         IF user_id IS NULL THEN
12532                 RAISE EXCEPTION 'Input user id argument is NULL';
12533         END IF;
12534         --
12535         IF org_unit_id IS NULL THEN
12536                 RAISE EXCEPTION 'Org unit id argument is NULL';
12537         ELSE
12538                 SELECT TRUE INTO org_found
12539                 FROM actor.org_unit
12540                 WHERE id = org_unit_id;
12541                 --
12542                 IF org_found IS NULL THEN
12543                         RAISE EXCEPTION 'Org unit id is invalid';
12544                 END IF;
12545         END IF;
12546         --
12547         -- Loop over the applicable funds
12548         --
12549         FOR old_fund in SELECT * FROM acq.fund
12550         WHERE
12551                 year = old_year
12552                 AND propagate
12553                 AND org = org_unit_id
12554         LOOP
12555                 BEGIN
12556                         INSERT INTO acq.fund (
12557                                 org,
12558                                 name,
12559                                 year,
12560                                 currency_type,
12561                                 code,
12562                                 rollover,
12563                                 propagate,
12564                                 balance_warning_percent,
12565                                 balance_stop_percent
12566                         ) VALUES (
12567                                 old_fund.org,
12568                                 old_fund.name,
12569                                 old_year + 1,
12570                                 old_fund.currency_type,
12571                                 old_fund.code,
12572                                 old_fund.rollover,
12573                                 true,
12574                                 old_fund.balance_warning_percent,
12575                                 old_fund.balance_stop_percent
12576                         )
12577                         RETURNING id INTO new_id;
12578                 EXCEPTION
12579                         WHEN unique_violation THEN
12580                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12581                                 CONTINUE;
12582                 END;
12583                 --RAISE NOTICE 'Propagating fund % to fund %',
12584                 --      old_fund.code, new_id;
12585         END LOOP;
12586 END;
12587 $$ LANGUAGE plpgsql;
12588
12589 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12590         old_year INTEGER,
12591         user_id INTEGER,
12592         org_unit_id INTEGER
12593 ) RETURNS VOID AS $$
12594 DECLARE
12595 --
12596 new_id      INT;
12597 old_fund    RECORD;
12598 org_found   BOOLEAN;
12599 --
12600 BEGIN
12601         --
12602         -- Sanity checks
12603         --
12604         IF old_year IS NULL THEN
12605                 RAISE EXCEPTION 'Input year argument is NULL';
12606         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12607                 RAISE EXCEPTION 'Input year is out of range';
12608         END IF;
12609         --
12610         IF user_id IS NULL THEN
12611                 RAISE EXCEPTION 'Input user id argument is NULL';
12612         END IF;
12613         --
12614         IF org_unit_id IS NULL THEN
12615                 RAISE EXCEPTION 'Org unit id argument is NULL';
12616         ELSE
12617                 SELECT TRUE INTO org_found
12618                 FROM actor.org_unit
12619                 WHERE id = org_unit_id;
12620                 --
12621                 IF org_found IS NULL THEN
12622                         RAISE EXCEPTION 'Org unit id is invalid';
12623                 END IF;
12624         END IF;
12625         --
12626         -- Loop over the applicable funds
12627         --
12628         FOR old_fund in SELECT * FROM acq.fund
12629         WHERE
12630                 year = old_year
12631                 AND propagate
12632                 AND org in (
12633                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12634                 )
12635         LOOP
12636                 BEGIN
12637                         INSERT INTO acq.fund (
12638                                 org,
12639                                 name,
12640                                 year,
12641                                 currency_type,
12642                                 code,
12643                                 rollover,
12644                                 propagate,
12645                                 balance_warning_percent,
12646                                 balance_stop_percent
12647                         ) VALUES (
12648                                 old_fund.org,
12649                                 old_fund.name,
12650                                 old_year + 1,
12651                                 old_fund.currency_type,
12652                                 old_fund.code,
12653                                 old_fund.rollover,
12654                                 true,
12655                                 old_fund.balance_warning_percent,
12656                                 old_fund.balance_stop_percent
12657                         )
12658                         RETURNING id INTO new_id;
12659                 EXCEPTION
12660                         WHEN unique_violation THEN
12661                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12662                                 CONTINUE;
12663                 END;
12664                 --RAISE NOTICE 'Propagating fund % to fund %',
12665                 --      old_fund.code, new_id;
12666         END LOOP;
12667 END;
12668 $$ LANGUAGE plpgsql;
12669
12670 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12671         old_year INTEGER,
12672         user_id INTEGER,
12673         org_unit_id INTEGER
12674 ) RETURNS VOID AS $$
12675 DECLARE
12676 --
12677 new_fund    INT;
12678 new_year    INT := old_year + 1;
12679 org_found   BOOL;
12680 xfer_amount NUMERIC;
12681 roll_fund   RECORD;
12682 deb         RECORD;
12683 detail      RECORD;
12684 --
12685 BEGIN
12686         --
12687         -- Sanity checks
12688         --
12689         IF old_year IS NULL THEN
12690                 RAISE EXCEPTION 'Input year argument is NULL';
12691     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12692         RAISE EXCEPTION 'Input year is out of range';
12693         END IF;
12694         --
12695         IF user_id IS NULL THEN
12696                 RAISE EXCEPTION 'Input user id argument is NULL';
12697         END IF;
12698         --
12699         IF org_unit_id IS NULL THEN
12700                 RAISE EXCEPTION 'Org unit id argument is NULL';
12701         ELSE
12702                 --
12703                 -- Validate the org unit
12704                 --
12705                 SELECT TRUE
12706                 INTO org_found
12707                 FROM actor.org_unit
12708                 WHERE id = org_unit_id;
12709                 --
12710                 IF org_found IS NULL THEN
12711                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12712                 END IF;
12713         END IF;
12714         --
12715         -- Loop over the propagable funds to identify the details
12716         -- from the old fund plus the id of the new one, if it exists.
12717         --
12718         FOR roll_fund in
12719         SELECT
12720             oldf.id AS old_fund,
12721             oldf.org,
12722             oldf.name,
12723             oldf.currency_type,
12724             oldf.code,
12725                 oldf.rollover,
12726             newf.id AS new_fund_id
12727         FROM
12728         acq.fund AS oldf
12729         LEFT JOIN acq.fund AS newf
12730                 ON ( oldf.code = newf.code )
12731         WHERE
12732                     oldf.org = org_unit_id
12733                 and oldf.year = old_year
12734                 and oldf.propagate
12735         and newf.year = new_year
12736         LOOP
12737                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12738                 --
12739                 IF roll_fund.new_fund_id IS NULL THEN
12740                         --
12741                         -- The old fund hasn't been propagated yet.  Propagate it now.
12742                         --
12743                         INSERT INTO acq.fund (
12744                                 org,
12745                                 name,
12746                                 year,
12747                                 currency_type,
12748                                 code,
12749                                 rollover,
12750                                 propagate,
12751                                 balance_warning_percent,
12752                                 balance_stop_percent
12753                         ) VALUES (
12754                                 roll_fund.org,
12755                                 roll_fund.name,
12756                                 new_year,
12757                                 roll_fund.currency_type,
12758                                 roll_fund.code,
12759                                 true,
12760                                 true,
12761                                 roll_fund.balance_warning_percent,
12762                                 roll_fund.balance_stop_percent
12763                         )
12764                         RETURNING id INTO new_fund;
12765                 ELSE
12766                         new_fund = roll_fund.new_fund_id;
12767                 END IF;
12768                 --
12769                 -- Determine the amount to transfer
12770                 --
12771                 SELECT amount
12772                 INTO xfer_amount
12773                 FROM acq.fund_spent_balance
12774                 WHERE fund = roll_fund.old_fund;
12775                 --
12776                 IF xfer_amount <> 0 THEN
12777                         IF roll_fund.rollover THEN
12778                                 --
12779                                 -- Transfer balance from old fund to new
12780                                 --
12781                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12782                                 --
12783                                 PERFORM acq.transfer_fund(
12784                                         roll_fund.old_fund,
12785                                         xfer_amount,
12786                                         new_fund,
12787                                         xfer_amount,
12788                                         user_id,
12789                                         'Rollover'
12790                                 );
12791                         ELSE
12792                                 --
12793                                 -- Transfer balance from old fund to the void
12794                                 --
12795                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12796                                 --
12797                                 PERFORM acq.transfer_fund(
12798                                         roll_fund.old_fund,
12799                                         xfer_amount,
12800                                         NULL,
12801                                         NULL,
12802                                         user_id,
12803                                         'Rollover'
12804                                 );
12805                         END IF;
12806                 END IF;
12807                 --
12808                 IF roll_fund.rollover THEN
12809                         --
12810                         -- Move any lineitems from the old fund to the new one
12811                         -- where the associated debit is an encumbrance.
12812                         --
12813                         -- Any other tables tying expenditure details to funds should
12814                         -- receive similar treatment.  At this writing there are none.
12815                         --
12816                         UPDATE acq.lineitem_detail
12817                         SET fund = new_fund
12818                         WHERE
12819                         fund = roll_fund.old_fund -- this condition may be redundant
12820                         AND fund_debit in
12821                         (
12822                                 SELECT id
12823                                 FROM acq.fund_debit
12824                                 WHERE
12825                                 fund = roll_fund.old_fund
12826                                 AND encumbrance
12827                         );
12828                         --
12829                         -- Move encumbrance debits from the old fund to the new fund
12830                         --
12831                         UPDATE acq.fund_debit
12832                         SET fund = new_fund
12833                         wHERE
12834                                 fund = roll_fund.old_fund
12835                                 AND encumbrance;
12836                 END IF;
12837                 --
12838                 -- Mark old fund as inactive, now that we've closed it
12839                 --
12840                 UPDATE acq.fund
12841                 SET active = FALSE
12842                 WHERE id = roll_fund.old_fund;
12843         END LOOP;
12844 END;
12845 $$ LANGUAGE plpgsql;
12846
12847 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12848         old_year INTEGER,
12849         user_id INTEGER,
12850         org_unit_id INTEGER
12851 ) RETURNS VOID AS $$
12852 DECLARE
12853 --
12854 new_fund    INT;
12855 new_year    INT := old_year + 1;
12856 org_found   BOOL;
12857 xfer_amount NUMERIC;
12858 roll_fund   RECORD;
12859 deb         RECORD;
12860 detail      RECORD;
12861 --
12862 BEGIN
12863         --
12864         -- Sanity checks
12865         --
12866         IF old_year IS NULL THEN
12867                 RAISE EXCEPTION 'Input year argument is NULL';
12868     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12869         RAISE EXCEPTION 'Input year is out of range';
12870         END IF;
12871         --
12872         IF user_id IS NULL THEN
12873                 RAISE EXCEPTION 'Input user id argument is NULL';
12874         END IF;
12875         --
12876         IF org_unit_id IS NULL THEN
12877                 RAISE EXCEPTION 'Org unit id argument is NULL';
12878         ELSE
12879                 --
12880                 -- Validate the org unit
12881                 --
12882                 SELECT TRUE
12883                 INTO org_found
12884                 FROM actor.org_unit
12885                 WHERE id = org_unit_id;
12886                 --
12887                 IF org_found IS NULL THEN
12888                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12889                 END IF;
12890         END IF;
12891         --
12892         -- Loop over the propagable funds to identify the details
12893         -- from the old fund plus the id of the new one, if it exists.
12894         --
12895         FOR roll_fund in
12896         SELECT
12897             oldf.id AS old_fund,
12898             oldf.org,
12899             oldf.name,
12900             oldf.currency_type,
12901             oldf.code,
12902                 oldf.rollover,
12903             newf.id AS new_fund_id
12904         FROM
12905         acq.fund AS oldf
12906         LEFT JOIN acq.fund AS newf
12907                 ON ( oldf.code = newf.code )
12908         WHERE
12909                     oldf.year = old_year
12910                 AND oldf.propagate
12911         AND newf.year = new_year
12912                 AND oldf.org in (
12913                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12914                 )
12915         LOOP
12916                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12917                 --
12918                 IF roll_fund.new_fund_id IS NULL THEN
12919                         --
12920                         -- The old fund hasn't been propagated yet.  Propagate it now.
12921                         --
12922                         INSERT INTO acq.fund (
12923                                 org,
12924                                 name,
12925                                 year,
12926                                 currency_type,
12927                                 code,
12928                                 rollover,
12929                                 propagate,
12930                                 balance_warning_percent,
12931                                 balance_stop_percent
12932                         ) VALUES (
12933                                 roll_fund.org,
12934                                 roll_fund.name,
12935                                 new_year,
12936                                 roll_fund.currency_type,
12937                                 roll_fund.code,
12938                                 true,
12939                                 true,
12940                                 roll_fund.balance_warning_percent,
12941                                 roll_fund.balance_stop_percent
12942                         )
12943                         RETURNING id INTO new_fund;
12944                 ELSE
12945                         new_fund = roll_fund.new_fund_id;
12946                 END IF;
12947                 --
12948                 -- Determine the amount to transfer
12949                 --
12950                 SELECT amount
12951                 INTO xfer_amount
12952                 FROM acq.fund_spent_balance
12953                 WHERE fund = roll_fund.old_fund;
12954                 --
12955                 IF xfer_amount <> 0 THEN
12956                         IF roll_fund.rollover THEN
12957                                 --
12958                                 -- Transfer balance from old fund to new
12959                                 --
12960                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12961                                 --
12962                                 PERFORM acq.transfer_fund(
12963                                         roll_fund.old_fund,
12964                                         xfer_amount,
12965                                         new_fund,
12966                                         xfer_amount,
12967                                         user_id,
12968                                         'Rollover'
12969                                 );
12970                         ELSE
12971                                 --
12972                                 -- Transfer balance from old fund to the void
12973                                 --
12974                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12975                                 --
12976                                 PERFORM acq.transfer_fund(
12977                                         roll_fund.old_fund,
12978                                         xfer_amount,
12979                                         NULL,
12980                                         NULL,
12981                                         user_id,
12982                                         'Rollover'
12983                                 );
12984                         END IF;
12985                 END IF;
12986                 --
12987                 IF roll_fund.rollover THEN
12988                         --
12989                         -- Move any lineitems from the old fund to the new one
12990                         -- where the associated debit is an encumbrance.
12991                         --
12992                         -- Any other tables tying expenditure details to funds should
12993                         -- receive similar treatment.  At this writing there are none.
12994                         --
12995                         UPDATE acq.lineitem_detail
12996                         SET fund = new_fund
12997                         WHERE
12998                         fund = roll_fund.old_fund -- this condition may be redundant
12999                         AND fund_debit in
13000                         (
13001                                 SELECT id
13002                                 FROM acq.fund_debit
13003                                 WHERE
13004                                 fund = roll_fund.old_fund
13005                                 AND encumbrance
13006                         );
13007                         --
13008                         -- Move encumbrance debits from the old fund to the new fund
13009                         --
13010                         UPDATE acq.fund_debit
13011                         SET fund = new_fund
13012                         wHERE
13013                                 fund = roll_fund.old_fund
13014                                 AND encumbrance;
13015                 END IF;
13016                 --
13017                 -- Mark old fund as inactive, now that we've closed it
13018                 --
13019                 UPDATE acq.fund
13020                 SET active = FALSE
13021                 WHERE id = roll_fund.old_fund;
13022         END LOOP;
13023 END;
13024 $$ LANGUAGE plpgsql;
13025
13026 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
13027     SELECT regexp_replace($1, ',', '', 'g');
13028 $$ LANGUAGE SQL STRICT IMMUTABLE;
13029
13030 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
13031     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
13032 $$ LANGUAGE SQL STRICT IMMUTABLE;
13033
13034 CREATE TABLE acq.distribution_formula_application (
13035     id BIGSERIAL PRIMARY KEY,
13036     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
13037     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
13038     formula INT NOT NULL
13039         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
13040     lineitem INT NOT NULL
13041         REFERENCES acq.lineitem( id )
13042                 ON DELETE CASCADE
13043                 DEFERRABLE INITIALLY DEFERRED
13044 );
13045
13046 CREATE INDEX acqdfa_df_idx
13047     ON acq.distribution_formula_application(formula);
13048 CREATE INDEX acqdfa_li_idx
13049     ON acq.distribution_formula_application(lineitem);
13050 CREATE INDEX acqdfa_creator_idx
13051     ON acq.distribution_formula_application(creator);
13052
13053 CREATE TABLE acq.user_request_type (
13054     id      SERIAL  PRIMARY KEY,
13055     label   TEXT    NOT NULL UNIQUE -- i18n-ize
13056 );
13057
13058 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
13059 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
13060 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
13061 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
13062 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
13063
13064 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
13065
13066 CREATE TABLE acq.cancel_reason (
13067         id            SERIAL            PRIMARY KEY,
13068         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
13069                                         DEFERRABLE INITIALLY DEFERRED,
13070         label         TEXT              NOT NULL,
13071         description   TEXT              NOT NULL,
13072         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
13073         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
13074 );
13075
13076 -- Reserve ids 1-999 for stock reasons
13077 -- Reserve ids 1000-1999 for EDI reasons
13078 -- 2000+ are available for staff to create
13079
13080 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
13081
13082 CREATE TABLE acq.user_request (
13083     id                  SERIAL  PRIMARY KEY,
13084     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
13085     hold                BOOL    NOT NULL DEFAULT TRUE,
13086
13087     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
13088     holdable_formats    TEXT,           -- nullable, for use in hold creation
13089     phone_notify        TEXT,
13090     email_notify        BOOL    NOT NULL DEFAULT TRUE,
13091     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
13092     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
13093     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
13094     need_before         TIMESTAMPTZ,    -- don't create holds after this
13095     max_fee             TEXT,
13096
13097     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
13098     isxn                TEXT,
13099     title               TEXT,
13100     volume              TEXT,
13101     author              TEXT,
13102     article_title       TEXT,
13103     article_pages       TEXT,
13104     publisher           TEXT,
13105     location            TEXT,
13106     pubdate             TEXT,
13107     mentioned           TEXT,
13108     other_info          TEXT,
13109         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
13110                                              DEFERRABLE INITIALLY DEFERRED
13111 );
13112
13113 CREATE TABLE acq.lineitem_alert_text (
13114         id               SERIAL         PRIMARY KEY,
13115         code             TEXT           NOT NULL,
13116         description      TEXT,
13117         owning_lib       INT            NOT NULL
13118                                         REFERENCES actor.org_unit(id)
13119                                         DEFERRABLE INITIALLY DEFERRED,
13120         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
13121 );
13122
13123 ALTER TABLE acq.lineitem_note
13124         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
13125                                          DEFERRABLE INITIALLY DEFERRED;
13126
13127 -- add ON DELETE CASCADE clause
13128
13129 ALTER TABLE acq.lineitem_note
13130         DROP CONSTRAINT lineitem_note_lineitem_fkey;
13131
13132 ALTER TABLE acq.lineitem_note
13133         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13134                 ON DELETE CASCADE
13135                 DEFERRABLE INITIALLY DEFERRED;
13136
13137 ALTER TABLE acq.lineitem_note
13138         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13139
13140 CREATE TABLE acq.invoice_method (
13141     code    TEXT    PRIMARY KEY,
13142     name    TEXT    NOT NULL -- i18n-ize
13143 );
13144 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
13145 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
13146
13147 CREATE TABLE acq.invoice_payment_method (
13148         code      TEXT     PRIMARY KEY,
13149         name      TEXT     NOT NULL
13150 );
13151
13152 CREATE TABLE acq.invoice (
13153     id             SERIAL      PRIMARY KEY,
13154     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
13155     provider       INT         NOT NULL REFERENCES acq.provider (id),
13156     shipper        INT         NOT NULL REFERENCES acq.provider (id),
13157     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
13158     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
13159     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
13160     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
13161         payment_auth   TEXT,
13162         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
13163                                    DEFERRABLE INITIALLY DEFERRED,
13164         note           TEXT,
13165     complete       BOOL        NOT NULL DEFAULT FALSE,
13166     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
13167 );
13168
13169 CREATE TABLE acq.invoice_entry (
13170     id              SERIAL      PRIMARY KEY,
13171     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
13172     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13173     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
13174     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
13175     phys_item_count INT, -- and how many did staff count
13176     note            TEXT,
13177     billed_per_item BOOL,
13178     cost_billed     NUMERIC(8,2),
13179     actual_cost     NUMERIC(8,2),
13180         amount_paid     NUMERIC (8,2)
13181 );
13182
13183 CREATE TABLE acq.invoice_item_type (
13184     code    TEXT    PRIMARY KEY,
13185     name    TEXT    NOT NULL, -- i18n-ize
13186         prorate BOOL    NOT NULL DEFAULT FALSE
13187 );
13188
13189 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
13190 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
13191 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
13192 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
13193 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
13194 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
13195
13196 CREATE TABLE acq.po_item (
13197         id              SERIAL      PRIMARY KEY,
13198         purchase_order  INT         REFERENCES acq.purchase_order (id)
13199                                     ON UPDATE CASCADE ON DELETE SET NULL
13200                                     DEFERRABLE INITIALLY DEFERRED,
13201         fund_debit      INT         REFERENCES acq.fund_debit (id)
13202                                     DEFERRABLE INITIALLY DEFERRED,
13203         inv_item_type   TEXT        NOT NULL
13204                                     REFERENCES acq.invoice_item_type (code)
13205                                     DEFERRABLE INITIALLY DEFERRED,
13206         title           TEXT,
13207         author          TEXT,
13208         note            TEXT,
13209         estimated_cost  NUMERIC(8,2),
13210         fund            INT         REFERENCES acq.fund (id)
13211                                     DEFERRABLE INITIALLY DEFERRED,
13212         target          BIGINT
13213 );
13214
13215 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
13216     id              SERIAL      PRIMARY KEY,
13217     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
13218     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13219     fund_debit      INT         REFERENCES acq.fund_debit (id),
13220     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
13221     title           TEXT,
13222     author          TEXT,
13223     note            TEXT,
13224     cost_billed     NUMERIC(8,2),
13225     actual_cost     NUMERIC(8,2),
13226     fund            INT         REFERENCES acq.fund (id)
13227                                 DEFERRABLE INITIALLY DEFERRED,
13228     amount_paid     NUMERIC (8,2),
13229     po_item         INT         REFERENCES acq.po_item (id)
13230                                 DEFERRABLE INITIALLY DEFERRED,
13231     target          BIGINT
13232 );
13233
13234 CREATE TABLE acq.edi_message (
13235     id               SERIAL          PRIMARY KEY,
13236     account          INTEGER         REFERENCES acq.edi_account(id)
13237                                      DEFERRABLE INITIALLY DEFERRED,
13238     remote_file      TEXT,
13239     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
13240     translate_time   TIMESTAMPTZ,
13241     process_time     TIMESTAMPTZ,
13242     error_time       TIMESTAMPTZ,
13243     status           TEXT            NOT NULL DEFAULT 'new'
13244                                      CONSTRAINT status_value CHECK
13245                                      ( status IN (
13246                                         'new',          -- needs to be translated
13247                                         'translated',   -- needs to be processed
13248                                         'trans_error',  -- error in translation step
13249                                         'processed',    -- needs to have remote_file deleted
13250                                         'proc_error',   -- error in processing step
13251                                         'delete_error', -- error in deletion
13252                                         'retry',        -- need to retry
13253                                         'complete'      -- done
13254                                      )),
13255     edi              TEXT,
13256     jedi             TEXT,
13257     error            TEXT,
13258     purchase_order   INT             REFERENCES acq.purchase_order
13259                                      DEFERRABLE INITIALLY DEFERRED,
13260     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
13261                                      CHECK ( message_type IN (
13262                                         'ORDERS',
13263                                         'ORDRSP',
13264                                         'INVOIC',
13265                                         'OSTENQ',
13266                                         'OSTRPT'
13267                                      ))
13268 );
13269
13270 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
13271
13272 ALTER TABLE acq.provider_address
13273         ADD COLUMN fax_phone TEXT;
13274
13275 ALTER TABLE acq.provider_contact_address
13276         ADD COLUMN fax_phone TEXT;
13277
13278 CREATE TABLE acq.provider_note (
13279     id      SERIAL              PRIMARY KEY,
13280     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
13281     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13282     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13283     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13284     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13285     value       TEXT            NOT NULL
13286 );
13287 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
13288 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
13289 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
13290
13291 -- For each fund: the total allocation from all sources, in the
13292 -- currency of the fund (or 0 if there are no allocations)
13293
13294 CREATE VIEW acq.all_fund_allocation_total AS
13295 SELECT
13296     f.id AS fund,
13297     COALESCE( SUM( a.amount * acq.exchange_ratio(
13298         s.currency_type, f.currency_type))::numeric(100,2), 0 )
13299     AS amount
13300 FROM
13301     acq.fund f
13302         LEFT JOIN acq.fund_allocation a
13303             ON a.fund = f.id
13304         LEFT JOIN acq.funding_source s
13305             ON a.funding_source = s.id
13306 GROUP BY
13307     f.id;
13308
13309 -- For every fund: the total encumbrances (or 0 if none),
13310 -- in the currency of the fund.
13311
13312 CREATE VIEW acq.all_fund_encumbrance_total AS
13313 SELECT
13314         f.id AS fund,
13315         COALESCE( encumb.amount, 0 ) AS amount
13316 FROM
13317         acq.fund AS f
13318                 LEFT JOIN (
13319                         SELECT
13320                                 fund,
13321                                 sum( amount ) AS amount
13322                         FROM
13323                                 acq.fund_debit
13324                         WHERE
13325                                 encumbrance
13326                         GROUP BY fund
13327                 ) AS encumb
13328                         ON f.id = encumb.fund;
13329
13330 -- For every fund: the total spent (or 0 if none),
13331 -- in the currency of the fund.
13332
13333 CREATE VIEW acq.all_fund_spent_total AS
13334 SELECT
13335     f.id AS fund,
13336     COALESCE( spent.amount, 0 ) AS amount
13337 FROM
13338     acq.fund AS f
13339         LEFT JOIN (
13340             SELECT
13341                 fund,
13342                 sum( amount ) AS amount
13343             FROM
13344                 acq.fund_debit
13345             WHERE
13346                 NOT encumbrance
13347             GROUP BY fund
13348         ) AS spent
13349             ON f.id = spent.fund;
13350
13351 -- For each fund: the amount not yet spent, in the currency
13352 -- of the fund.  May include encumbrances.
13353
13354 CREATE VIEW acq.all_fund_spent_balance AS
13355 SELECT
13356         c.fund,
13357         c.amount - d.amount AS amount
13358 FROM acq.all_fund_allocation_total c
13359     LEFT JOIN acq.all_fund_spent_total d USING (fund);
13360
13361 -- For each fund: the amount neither spent nor encumbered,
13362 -- in the currency of the fund
13363
13364 CREATE VIEW acq.all_fund_combined_balance AS
13365 SELECT
13366      a.fund,
13367      a.amount - COALESCE( c.amount, 0 ) AS amount
13368 FROM
13369      acq.all_fund_allocation_total a
13370         LEFT OUTER JOIN (
13371             SELECT
13372                 fund,
13373                 SUM( amount ) AS amount
13374             FROM
13375                 acq.fund_debit
13376             GROUP BY
13377                 fund
13378         ) AS c USING ( fund );
13379
13380 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 $$
13381 DECLARE
13382         suffix TEXT;
13383         bucket_row RECORD;
13384         picklist_row RECORD;
13385         queue_row RECORD;
13386         folder_row RECORD;
13387 BEGIN
13388
13389     -- do some initial cleanup 
13390     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
13391     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
13392     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
13393
13394     -- actor.*
13395     IF del_cards THEN
13396         DELETE FROM actor.card where usr = src_usr;
13397     ELSE
13398         IF deactivate_cards THEN
13399             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
13400         END IF;
13401         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
13402     END IF;
13403
13404
13405     IF del_addrs THEN
13406         DELETE FROM actor.usr_address WHERE usr = src_usr;
13407     ELSE
13408         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
13409     END IF;
13410
13411     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
13412     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
13413     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
13414     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
13415     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
13416
13417     -- permission.*
13418     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
13419     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
13420     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
13421     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
13422
13423
13424     -- container.*
13425         
13426         -- For each *_bucket table: transfer every bucket belonging to src_usr
13427         -- into the custody of dest_usr.
13428         --
13429         -- In order to avoid colliding with an existing bucket owned by
13430         -- the destination user, append the source user's id (in parenthesese)
13431         -- to the name.  If you still get a collision, add successive
13432         -- spaces to the name and keep trying until you succeed.
13433         --
13434         FOR bucket_row in
13435                 SELECT id, name
13436                 FROM   container.biblio_record_entry_bucket
13437                 WHERE  owner = src_usr
13438         LOOP
13439                 suffix := ' (' || src_usr || ')';
13440                 LOOP
13441                         BEGIN
13442                                 UPDATE  container.biblio_record_entry_bucket
13443                                 SET     owner = dest_usr, name = name || suffix
13444                                 WHERE   id = bucket_row.id;
13445                         EXCEPTION WHEN unique_violation THEN
13446                                 suffix := suffix || ' ';
13447                                 CONTINUE;
13448                         END;
13449                         EXIT;
13450                 END LOOP;
13451         END LOOP;
13452
13453         FOR bucket_row in
13454                 SELECT id, name
13455                 FROM   container.call_number_bucket
13456                 WHERE  owner = src_usr
13457         LOOP
13458                 suffix := ' (' || src_usr || ')';
13459                 LOOP
13460                         BEGIN
13461                                 UPDATE  container.call_number_bucket
13462                                 SET     owner = dest_usr, name = name || suffix
13463                                 WHERE   id = bucket_row.id;
13464                         EXCEPTION WHEN unique_violation THEN
13465                                 suffix := suffix || ' ';
13466                                 CONTINUE;
13467                         END;
13468                         EXIT;
13469                 END LOOP;
13470         END LOOP;
13471
13472         FOR bucket_row in
13473                 SELECT id, name
13474                 FROM   container.copy_bucket
13475                 WHERE  owner = src_usr
13476         LOOP
13477                 suffix := ' (' || src_usr || ')';
13478                 LOOP
13479                         BEGIN
13480                                 UPDATE  container.copy_bucket
13481                                 SET     owner = dest_usr, name = name || suffix
13482                                 WHERE   id = bucket_row.id;
13483                         EXCEPTION WHEN unique_violation THEN
13484                                 suffix := suffix || ' ';
13485                                 CONTINUE;
13486                         END;
13487                         EXIT;
13488                 END LOOP;
13489         END LOOP;
13490
13491         FOR bucket_row in
13492                 SELECT id, name
13493                 FROM   container.user_bucket
13494                 WHERE  owner = src_usr
13495         LOOP
13496                 suffix := ' (' || src_usr || ')';
13497                 LOOP
13498                         BEGIN
13499                                 UPDATE  container.user_bucket
13500                                 SET     owner = dest_usr, name = name || suffix
13501                                 WHERE   id = bucket_row.id;
13502                         EXCEPTION WHEN unique_violation THEN
13503                                 suffix := suffix || ' ';
13504                                 CONTINUE;
13505                         END;
13506                         EXIT;
13507                 END LOOP;
13508         END LOOP;
13509
13510         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13511
13512     -- vandelay.*
13513         -- transfer queues the same way we transfer buckets (see above)
13514         FOR queue_row in
13515                 SELECT id, name
13516                 FROM   vandelay.queue
13517                 WHERE  owner = src_usr
13518         LOOP
13519                 suffix := ' (' || src_usr || ')';
13520                 LOOP
13521                         BEGIN
13522                                 UPDATE  vandelay.queue
13523                                 SET     owner = dest_usr, name = name || suffix
13524                                 WHERE   id = queue_row.id;
13525                         EXCEPTION WHEN unique_violation THEN
13526                                 suffix := suffix || ' ';
13527                                 CONTINUE;
13528                         END;
13529                         EXIT;
13530                 END LOOP;
13531         END LOOP;
13532
13533     -- money.*
13534     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13535     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13536     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13537     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13538     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13539
13540     -- action.*
13541     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13542     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13543     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13544
13545     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13546     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13547     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13548     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13549
13550     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13551     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13552     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13553     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13554     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13555
13556     -- acq.*
13557     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13558         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13559
13560         -- transfer picklists the same way we transfer buckets (see above)
13561         FOR picklist_row in
13562                 SELECT id, name
13563                 FROM   acq.picklist
13564                 WHERE  owner = src_usr
13565         LOOP
13566                 suffix := ' (' || src_usr || ')';
13567                 LOOP
13568                         BEGIN
13569                                 UPDATE  acq.picklist
13570                                 SET     owner = dest_usr, name = name || suffix
13571                                 WHERE   id = picklist_row.id;
13572                         EXCEPTION WHEN unique_violation THEN
13573                                 suffix := suffix || ' ';
13574                                 CONTINUE;
13575                         END;
13576                         EXIT;
13577                 END LOOP;
13578         END LOOP;
13579
13580     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13581     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13582     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13583     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13584     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13585     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13586     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13587     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13588
13589     -- asset.*
13590     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13591     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13592     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13593     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13594     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13595     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13596
13597     -- serial.*
13598     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13599     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13600
13601     -- reporter.*
13602     -- It's not uncommon to define the reporter schema in a replica 
13603     -- DB only, so don't assume these tables exist in the write DB.
13604     BEGIN
13605         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13606     EXCEPTION WHEN undefined_table THEN
13607         -- do nothing
13608     END;
13609     BEGIN
13610         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13611     EXCEPTION WHEN undefined_table THEN
13612         -- do nothing
13613     END;
13614     BEGIN
13615         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13616     EXCEPTION WHEN undefined_table THEN
13617         -- do nothing
13618     END;
13619     BEGIN
13620                 -- transfer folders the same way we transfer buckets (see above)
13621                 FOR folder_row in
13622                         SELECT id, name
13623                         FROM   reporter.template_folder
13624                         WHERE  owner = src_usr
13625                 LOOP
13626                         suffix := ' (' || src_usr || ')';
13627                         LOOP
13628                                 BEGIN
13629                                         UPDATE  reporter.template_folder
13630                                         SET     owner = dest_usr, name = name || suffix
13631                                         WHERE   id = folder_row.id;
13632                                 EXCEPTION WHEN unique_violation THEN
13633                                         suffix := suffix || ' ';
13634                                         CONTINUE;
13635                                 END;
13636                                 EXIT;
13637                         END LOOP;
13638                 END LOOP;
13639     EXCEPTION WHEN undefined_table THEN
13640         -- do nothing
13641     END;
13642     BEGIN
13643                 -- transfer folders the same way we transfer buckets (see above)
13644                 FOR folder_row in
13645                         SELECT id, name
13646                         FROM   reporter.report_folder
13647                         WHERE  owner = src_usr
13648                 LOOP
13649                         suffix := ' (' || src_usr || ')';
13650                         LOOP
13651                                 BEGIN
13652                                         UPDATE  reporter.report_folder
13653                                         SET     owner = dest_usr, name = name || suffix
13654                                         WHERE   id = folder_row.id;
13655                                 EXCEPTION WHEN unique_violation THEN
13656                                         suffix := suffix || ' ';
13657                                         CONTINUE;
13658                                 END;
13659                                 EXIT;
13660                         END LOOP;
13661                 END LOOP;
13662     EXCEPTION WHEN undefined_table THEN
13663         -- do nothing
13664     END;
13665     BEGIN
13666                 -- transfer folders the same way we transfer buckets (see above)
13667                 FOR folder_row in
13668                         SELECT id, name
13669                         FROM   reporter.output_folder
13670                         WHERE  owner = src_usr
13671                 LOOP
13672                         suffix := ' (' || src_usr || ')';
13673                         LOOP
13674                                 BEGIN
13675                                         UPDATE  reporter.output_folder
13676                                         SET     owner = dest_usr, name = name || suffix
13677                                         WHERE   id = folder_row.id;
13678                                 EXCEPTION WHEN unique_violation THEN
13679                                         suffix := suffix || ' ';
13680                                         CONTINUE;
13681                                 END;
13682                                 EXIT;
13683                         END LOOP;
13684                 END LOOP;
13685     EXCEPTION WHEN undefined_table THEN
13686         -- do nothing
13687     END;
13688
13689     -- Finally, delete the source user
13690     DELETE FROM actor.usr WHERE id = src_usr;
13691
13692 END;
13693 $$ LANGUAGE plpgsql;
13694
13695 -- The "add" trigger functions should protect against existing NULLed values, just in case
13696 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13697 BEGIN
13698     IF NOT NEW.voided THEN
13699         UPDATE  money.materialized_billable_xact_summary
13700           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13701             last_billing_ts = NEW.billing_ts,
13702             last_billing_note = NEW.note,
13703             last_billing_type = NEW.billing_type,
13704             balance_owed = balance_owed + NEW.amount
13705           WHERE id = NEW.xact;
13706     END IF;
13707
13708     RETURN NEW;
13709 END;
13710 $$ LANGUAGE PLPGSQL;
13711
13712 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13713 BEGIN
13714     IF NOT NEW.voided THEN
13715         UPDATE  money.materialized_billable_xact_summary
13716           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13717             last_payment_ts = NEW.payment_ts,
13718             last_payment_note = NEW.note,
13719             last_payment_type = TG_ARGV[0],
13720             balance_owed = balance_owed - NEW.amount
13721           WHERE id = NEW.xact;
13722     END IF;
13723
13724     RETURN NEW;
13725 END;
13726 $$ LANGUAGE PLPGSQL;
13727
13728 -- Refresh the mat view with the corrected underlying view
13729 TRUNCATE money.materialized_billable_xact_summary;
13730 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13731
13732 -- Now redefine the view as a window onto the materialized view
13733 CREATE OR REPLACE VIEW money.billable_xact_summary AS
13734     SELECT * FROM money.materialized_billable_xact_summary;
13735
13736 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13737     user_id    IN INTEGER,
13738     perm_code  IN TEXT
13739 )
13740 RETURNS SETOF INTEGER AS $$
13741 --
13742 -- Return a set of all the org units for which a given user has a given
13743 -- permission, granted directly (not through inheritance from a parent
13744 -- org unit).
13745 --
13746 -- The permissions apply to a minimum depth of the org unit hierarchy,
13747 -- for the org unit(s) to which the user is assigned.  (They also apply
13748 -- to the subordinates of those org units, but we don't report the
13749 -- subordinates here.)
13750 --
13751 -- For purposes of this function, the permission.usr_work_ou_map table
13752 -- defines which users belong to which org units.  I.e. we ignore the
13753 -- home_ou column of actor.usr.
13754 --
13755 -- The result set may contain duplicates, which should be eliminated
13756 -- by a DISTINCT clause.
13757 --
13758 DECLARE
13759     b_super       BOOLEAN;
13760     n_perm        INTEGER;
13761     n_min_depth   INTEGER;
13762     n_work_ou     INTEGER;
13763     n_curr_ou     INTEGER;
13764     n_depth       INTEGER;
13765     n_curr_depth  INTEGER;
13766 BEGIN
13767     --
13768     -- Check for superuser
13769     --
13770     SELECT INTO b_super
13771         super_user
13772     FROM
13773         actor.usr
13774     WHERE
13775         id = user_id;
13776     --
13777     IF NOT FOUND THEN
13778         return;             -- No user?  No permissions.
13779     ELSIF b_super THEN
13780         --
13781         -- Super user has all permissions everywhere
13782         --
13783         FOR n_work_ou IN
13784             SELECT
13785                 id
13786             FROM
13787                 actor.org_unit
13788             WHERE
13789                 parent_ou IS NULL
13790         LOOP
13791             RETURN NEXT n_work_ou;
13792         END LOOP;
13793         RETURN;
13794     END IF;
13795     --
13796     -- Translate the permission name
13797     -- to a numeric permission id
13798     --
13799     SELECT INTO n_perm
13800         id
13801     FROM
13802         permission.perm_list
13803     WHERE
13804         code = perm_code;
13805     --
13806     IF NOT FOUND THEN
13807         RETURN;               -- No such permission
13808     END IF;
13809     --
13810     -- Find the highest-level org unit (i.e. the minimum depth)
13811     -- to which the permission is applied for this user
13812     --
13813     -- This query is modified from the one in permission.usr_perms().
13814     --
13815     SELECT INTO n_min_depth
13816         min( depth )
13817     FROM    (
13818         SELECT depth
13819           FROM permission.usr_perm_map upm
13820          WHERE upm.usr = user_id
13821            AND (upm.perm = n_perm OR upm.perm = -1)
13822                     UNION
13823         SELECT  gpm.depth
13824           FROM  permission.grp_perm_map gpm
13825           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13826             AND gpm.grp IN (
13827                SELECT   (permission.grp_ancestors(
13828                     (SELECT profile FROM actor.usr WHERE id = user_id)
13829                 )).id
13830             )
13831                     UNION
13832         SELECT  p.depth
13833           FROM  permission.grp_perm_map p
13834           WHERE (p.perm = n_perm OR p.perm = -1)
13835             AND p.grp IN (
13836                 SELECT (permission.grp_ancestors(m.grp)).id
13837                 FROM   permission.usr_grp_map m
13838                 WHERE  m.usr = user_id
13839             )
13840     ) AS x;
13841     --
13842     IF NOT FOUND THEN
13843         RETURN;                -- No such permission for this user
13844     END IF;
13845     --
13846     -- Identify the org units to which the user is assigned.  Note that
13847     -- we pay no attention to the home_ou column in actor.usr.
13848     --
13849     FOR n_work_ou IN
13850         SELECT
13851             work_ou
13852         FROM
13853             permission.usr_work_ou_map
13854         WHERE
13855             usr = user_id
13856     LOOP            -- For each org unit to which the user is assigned
13857         --
13858         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13859         -- We take it on faith that this depth agrees with the actual hierarchy
13860         -- defined in actor.org_unit.
13861         --
13862         SELECT INTO n_depth
13863             type.depth
13864         FROM
13865             actor.org_unit_type type
13866                 INNER JOIN actor.org_unit ou
13867                     ON ( ou.ou_type = type.id )
13868         WHERE
13869             ou.id = n_work_ou;
13870         --
13871         IF NOT FOUND THEN
13872             CONTINUE;        -- Maybe raise exception?
13873         END IF;
13874         --
13875         -- Compare the depth of the work org unit to the
13876         -- minimum depth, and branch accordingly
13877         --
13878         IF n_depth = n_min_depth THEN
13879             --
13880             -- The org unit is at the right depth, so return it.
13881             --
13882             RETURN NEXT n_work_ou;
13883         ELSIF n_depth > n_min_depth THEN
13884             --
13885             -- Traverse the org unit tree toward the root,
13886             -- until you reach the minimum depth determined above
13887             --
13888             n_curr_depth := n_depth;
13889             n_curr_ou := n_work_ou;
13890             WHILE n_curr_depth > n_min_depth LOOP
13891                 SELECT INTO n_curr_ou
13892                     parent_ou
13893                 FROM
13894                     actor.org_unit
13895                 WHERE
13896                     id = n_curr_ou;
13897                 --
13898                 IF FOUND THEN
13899                     n_curr_depth := n_curr_depth - 1;
13900                 ELSE
13901                     --
13902                     -- This can happen only if the hierarchy defined in
13903                     -- actor.org_unit is corrupted, or out of sync with
13904                     -- the depths defined in actor.org_unit_type.
13905                     -- Maybe we should raise an exception here, instead
13906                     -- of silently ignoring the problem.
13907                     --
13908                     n_curr_ou = NULL;
13909                     EXIT;
13910                 END IF;
13911             END LOOP;
13912             --
13913             IF n_curr_ou IS NOT NULL THEN
13914                 RETURN NEXT n_curr_ou;
13915             END IF;
13916         ELSE
13917             --
13918             -- The permission applies only at a depth greater than the work org unit.
13919             -- Use connectby() to find all dependent org units at the specified depth.
13920             --
13921             FOR n_curr_ou IN
13922                 SELECT ou::INTEGER
13923                 FROM connectby(
13924                         'actor.org_unit',         -- table name
13925                         'id',                     -- key column
13926                         'parent_ou',              -- recursive foreign key
13927                         n_work_ou::TEXT,          -- id of starting point
13928                         (n_min_depth - n_depth)   -- max depth to search, relative
13929                     )                             --   to starting point
13930                     AS t(
13931                         ou text,            -- dependent org unit
13932                         parent_ou text,     -- (ignore)
13933                         level int           -- depth relative to starting point
13934                     )
13935                 WHERE
13936                     level = n_min_depth - n_depth
13937             LOOP
13938                 RETURN NEXT n_curr_ou;
13939             END LOOP;
13940         END IF;
13941         --
13942     END LOOP;
13943     --
13944     RETURN;
13945     --
13946 END;
13947 $$ LANGUAGE 'plpgsql';
13948
13949 ALTER TABLE acq.purchase_order
13950         ADD COLUMN cancel_reason INT
13951                 REFERENCES acq.cancel_reason( id )
13952             DEFERRABLE INITIALLY DEFERRED,
13953         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13954
13955 -- Build the history table and lifecycle view
13956 -- for acq.purchase_order
13957
13958 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
13959
13960 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
13961
13962 ALTER TABLE acq.lineitem
13963         ADD COLUMN cancel_reason INT
13964                 REFERENCES acq.cancel_reason( id )
13965             DEFERRABLE INITIALLY DEFERRED,
13966         ADD COLUMN estimated_unit_price NUMERIC,
13967         ADD COLUMN claim_policy INT
13968                 REFERENCES acq.claim_policy
13969                 DEFERRABLE INITIALLY DEFERRED,
13970         ALTER COLUMN eg_bib_id SET DATA TYPE bigint;
13971
13972 -- Build the history table and lifecycle view
13973 -- for acq.lineitem
13974
13975 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
13976 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
13977
13978 ALTER TABLE acq.lineitem_detail
13979         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13980                                             DEFERRABLE INITIALLY DEFERRED;
13981
13982 ALTER TABLE acq.lineitem_detail
13983         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13984
13985 ALTER TABLE acq.lineitem_detail
13986         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13987                 ON DELETE CASCADE
13988                 DEFERRABLE INITIALLY DEFERRED;
13989
13990 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13991
13992 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13993         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
13994
13995 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13996         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
13997
13998 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13999
14000     use MARC::Record;
14001     use MARC::File::XML (BinaryEncoding => 'UTF-8');
14002     use strict;
14003
14004     my $target_xml = shift;
14005     my $source_xml = shift;
14006     my $field_spec = shift;
14007
14008     my $target_r = MARC::Record->new_from_xml( $target_xml );
14009     my $source_r = MARC::Record->new_from_xml( $source_xml );
14010
14011     return $target_xml unless ($target_r && $source_r);
14012
14013     my @field_list = split(',', $field_spec);
14014
14015     my %fields;
14016     for my $f (@field_list) {
14017         $f =~ s/^\s*//; $f =~ s/\s*$//;
14018         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14019             my $field = $1;
14020             $field =~ s/\s+//;
14021             my $sf = $2;
14022             $sf =~ s/\s+//;
14023             my $match = $3;
14024             $match =~ s/^\s*//; $match =~ s/\s*$//;
14025             $fields{$field} = { sf => [ split('', $sf) ] };
14026             if ($match) {
14027                 my ($msf,$mre) = split('~', $match);
14028                 if (length($msf) > 0 and length($mre) > 0) {
14029                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14030                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14031                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14032                 }
14033             }
14034         }
14035     }
14036
14037     for my $f ( keys %fields) {
14038         if ( @{$fields{$f}{sf}} ) {
14039             for my $from_field ($source_r->field( $f )) {
14040                 my @tos = $target_r->field( $f );
14041                 if (!@tos) {
14042                     my @new_fields = map { $_->clone } $source_r->field( $f );
14043                     $target_r->insert_fields_ordered( @new_fields );
14044                 } else {
14045                     for my $to_field (@tos) {
14046                         if (exists($fields{$f}{match})) {
14047                             next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14048                         }
14049                         my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
14050                         $to_field->add_subfields( @new_sf );
14051                     }
14052                 }
14053             }
14054         } else {
14055             my @new_fields = map { $_->clone } $source_r->field( $f );
14056             $target_r->insert_fields_ordered( @new_fields );
14057         }
14058     }
14059
14060     $target_xml = $target_r->as_xml_record;
14061     $target_xml =~ s/^<\?.+?\?>$//mo;
14062     $target_xml =~ s/\n//sgo;
14063     $target_xml =~ s/>\s+</></sgo;
14064
14065     return $target_xml;
14066
14067 $_$ LANGUAGE PLPERLU;
14068
14069 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14070
14071     use MARC::Record;
14072     use MARC::File::XML (BinaryEncoding => 'UTF-8');
14073     use strict;
14074
14075     my $xml = shift;
14076     my $r = MARC::Record->new_from_xml( $xml );
14077
14078     return $xml unless ($r);
14079
14080     my $field_spec = shift;
14081     my @field_list = split(',', $field_spec);
14082
14083     my %fields;
14084     for my $f (@field_list) {
14085         $f =~ s/^\s*//; $f =~ s/\s*$//;
14086         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14087             my $field = $1;
14088             $field =~ s/\s+//;
14089             my $sf = $2;
14090             $sf =~ s/\s+//;
14091             my $match = $3;
14092             $match =~ s/^\s*//; $match =~ s/\s*$//;
14093             $fields{$field} = { sf => [ split('', $sf) ] };
14094             if ($match) {
14095                 my ($msf,$mre) = split('~', $match);
14096                 if (length($msf) > 0 and length($mre) > 0) {
14097                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14098                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14099                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14100                 }
14101             }
14102         }
14103     }
14104
14105     for my $f ( keys %fields) {
14106         for my $to_field ($r->field( $f )) {
14107             if (exists($fields{$f}{match})) {
14108                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14109             }
14110
14111             if ( @{$fields{$f}{sf}} ) {
14112                 $to_field->delete_subfield(code => $fields{$f}{sf});
14113             } else {
14114                 $r->delete_field( $to_field );
14115             }
14116         }
14117     }
14118
14119     $xml = $r->as_xml_record;
14120     $xml =~ s/^<\?.+?\?>$//mo;
14121     $xml =~ s/\n//sgo;
14122     $xml =~ s/>\s+</></sgo;
14123
14124     return $xml;
14125
14126 $_$ LANGUAGE PLPERLU;
14127
14128 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14129     SELECT vandelay.add_field( vandelay.strip_field( $1, $3), $2, $3 );
14130 $_$ LANGUAGE SQL;
14131
14132 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14133     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
14134 $_$ LANGUAGE SQL;
14135
14136 CREATE VIEW action.unfulfilled_hold_max_loop AS
14137         SELECT  hold,
14138                 max(count) AS max
14139         FROM    action.unfulfilled_hold_loops
14140         GROUP BY 1;
14141
14142 ALTER TABLE acq.lineitem_attr
14143         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
14144
14145 ALTER TABLE acq.lineitem_attr
14146         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
14147                 ON DELETE CASCADE
14148                 DEFERRABLE INITIALLY DEFERRED;
14149
14150 ALTER TABLE acq.po_note
14151         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
14152
14153 CREATE TABLE vandelay.merge_profile (
14154     id              BIGSERIAL   PRIMARY KEY,
14155     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
14156     name            TEXT        NOT NULL,
14157     add_spec        TEXT,
14158     replace_spec    TEXT,
14159     strip_spec      TEXT,
14160     preserve_spec   TEXT,
14161     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
14162     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))
14163 );
14164
14165 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
14166 DECLARE
14167     attr        RECORD;
14168     attr_def    RECORD;
14169     eg_rec      RECORD;
14170     id_value    TEXT;
14171     exact_id    BIGINT;
14172 BEGIN
14173
14174     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
14175
14176     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
14177
14178     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
14179         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
14180
14181         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
14182             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
14183             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
14184             IF exact_id IS NOT NULL THEN
14185                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
14186             END IF;
14187         END IF;
14188     END IF;
14189
14190     IF exact_id IS NULL THEN
14191         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
14192
14193             -- All numbers? check for an id match
14194             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
14195                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
14196                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14197                 END LOOP;
14198             END IF;
14199
14200             -- Looks like an ISBN? check for an isbn match
14201             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
14202                 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
14203                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
14204                     IF FOUND THEN
14205                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
14206                     END IF;
14207                 END LOOP;
14208
14209                 -- subcheck for isbn-as-tcn
14210                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
14211                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14212                 END LOOP;
14213             END IF;
14214
14215             -- check for an OCLC tcn_value match
14216             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
14217                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') 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             END IF;
14221
14222             -- check for a direct tcn_value match
14223             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
14224                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14225             END LOOP;
14226
14227             -- check for a direct item barcode match
14228             FOR eg_rec IN
14229                     SELECT  DISTINCT b.*
14230                       FROM  biblio.record_entry b
14231                             JOIN asset.call_number cn ON (cn.record = b.id)
14232                             JOIN asset.copy cp ON (cp.call_number = cn.id)
14233                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
14234             LOOP
14235                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14236             END LOOP;
14237
14238         END LOOP;
14239     END IF;
14240
14241     RETURN NULL;
14242 END;
14243 $func$ LANGUAGE PLPGSQL;
14244
14245 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 $_$
14246     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
14247 $_$ LANGUAGE SQL;
14248
14249 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
14250 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
14251 DECLARE
14252     output              vandelay.compile_profile%ROWTYPE;
14253     profile             vandelay.merge_profile%ROWTYPE;
14254     profile_tmpl        TEXT;
14255     profile_tmpl_owner  TEXT;
14256     add_rule            TEXT := '';
14257     strip_rule          TEXT := '';
14258     replace_rule        TEXT := '';
14259     preserve_rule       TEXT := '';
14260
14261 BEGIN
14262
14263     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
14264     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
14265
14266     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
14267         SELECT  p.* INTO profile
14268           FROM  vandelay.merge_profile p
14269                 JOIN actor.org_unit u ON (u.id = p.owner)
14270           WHERE p.name = profile_tmpl
14271                 AND u.shortname = profile_tmpl_owner;
14272
14273         IF profile.id IS NOT NULL THEN
14274             add_rule := COALESCE(profile.add_spec,'');
14275             strip_rule := COALESCE(profile.strip_spec,'');
14276             replace_rule := COALESCE(profile.replace_spec,'');
14277             preserve_rule := COALESCE(profile.preserve_spec,'');
14278         END IF;
14279     END IF;
14280
14281     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),','),'');
14282     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),','),'');
14283     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),','),'');
14284     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),','),'');
14285
14286     output.add_rule := BTRIM(add_rule,',');
14287     output.replace_rule := BTRIM(replace_rule,',');
14288     output.strip_rule := BTRIM(strip_rule,',');
14289     output.preserve_rule := BTRIM(preserve_rule,',');
14290
14291     RETURN output;
14292 END;
14293 $_$ LANGUAGE PLPGSQL;
14294
14295 -- Template-based marc munging functions
14296 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14297 DECLARE
14298     merge_profile   vandelay.merge_profile%ROWTYPE;
14299     dyn_profile     vandelay.compile_profile%ROWTYPE;
14300     editor_string   TEXT;
14301     editor_id       INT;
14302     source_marc     TEXT;
14303     target_marc     TEXT;
14304     eg_marc         TEXT;
14305     replace_rule    TEXT;
14306     match_count     INT;
14307 BEGIN
14308
14309     SELECT  b.marc INTO eg_marc
14310       FROM  biblio.record_entry b
14311       WHERE b.id = eg_id
14312       LIMIT 1;
14313
14314     IF eg_marc IS NULL OR v_marc IS NULL THEN
14315         -- RAISE NOTICE 'no marc for template or bib record';
14316         RETURN FALSE;
14317     END IF;
14318
14319     dyn_profile := vandelay.compile_profile( v_marc );
14320
14321     IF merge_profile_id IS NOT NULL THEN
14322         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14323         IF FOUND THEN
14324             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14325             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14326             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14327             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14328         END IF;
14329     END IF;
14330
14331     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14332         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14333         RETURN FALSE;
14334     END IF;
14335
14336     IF dyn_profile.replace_rule <> '' THEN
14337         source_marc = v_marc;
14338         target_marc = eg_marc;
14339         replace_rule = dyn_profile.replace_rule;
14340     ELSE
14341         source_marc = eg_marc;
14342         target_marc = v_marc;
14343         replace_rule = dyn_profile.preserve_rule;
14344     END IF;
14345
14346     UPDATE  biblio.record_entry
14347       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14348       WHERE id = eg_id;
14349
14350     IF NOT FOUND THEN
14351         -- RAISE NOTICE 'update of biblio.record_entry failed';
14352         RETURN FALSE;
14353     END IF;
14354
14355     RETURN TRUE;
14356
14357 END;
14358 $$ LANGUAGE PLPGSQL;
14359
14360 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
14361     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
14362 $$ LANGUAGE SQL;
14363
14364 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14365 DECLARE
14366     merge_profile   vandelay.merge_profile%ROWTYPE;
14367     dyn_profile     vandelay.compile_profile%ROWTYPE;
14368     editor_string   TEXT;
14369     editor_id       INT;
14370     source_marc     TEXT;
14371     target_marc     TEXT;
14372     eg_marc         TEXT;
14373     v_marc          TEXT;
14374     replace_rule    TEXT;
14375     match_count     INT;
14376 BEGIN
14377
14378     SELECT  q.marc INTO v_marc
14379       FROM  vandelay.queued_record q
14380             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
14381       LIMIT 1;
14382
14383     IF v_marc IS NULL THEN
14384         -- RAISE NOTICE 'no marc for vandelay or bib record';
14385         RETURN FALSE;
14386     END IF;
14387
14388     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
14389         UPDATE  vandelay.queued_bib_record
14390           SET   imported_as = eg_id,
14391                 import_time = NOW()
14392           WHERE id = import_id;
14393
14394         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
14395
14396         IF editor_string IS NOT NULL AND editor_string <> '' THEN
14397             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
14398
14399             IF editor_id IS NULL THEN
14400                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
14401             END IF;
14402
14403             IF editor_id IS NOT NULL THEN
14404                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
14405             END IF;
14406         END IF;
14407
14408         RETURN TRUE;
14409     END IF;
14410
14411     -- RAISE NOTICE 'update of biblio.record_entry failed';
14412
14413     RETURN FALSE;
14414
14415 END;
14416 $$ LANGUAGE PLPGSQL;
14417
14418 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14419 DECLARE
14420     eg_id           BIGINT;
14421     match_count     INT;
14422     match_attr      vandelay.bib_attr_definition%ROWTYPE;
14423 BEGIN
14424
14425     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
14426
14427     IF FOUND THEN
14428         -- RAISE NOTICE 'already imported, cannot auto-overlay'
14429         RETURN FALSE;
14430     END IF;
14431
14432     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
14433
14434     IF match_count <> 1 THEN
14435         -- RAISE NOTICE 'not an exact match';
14436         RETURN FALSE;
14437     END IF;
14438
14439     SELECT  d.* INTO match_attr
14440       FROM  vandelay.bib_attr_definition d
14441             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
14442             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
14443       WHERE m.queued_record = import_id;
14444
14445     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
14446         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
14447         RETURN FALSE;
14448     END IF;
14449
14450     SELECT  m.eg_record INTO eg_id
14451       FROM  vandelay.bib_match m
14452       WHERE m.queued_record = import_id
14453       LIMIT 1;
14454
14455     IF eg_id IS NULL THEN
14456         RETURN FALSE;
14457     END IF;
14458
14459     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
14460 END;
14461 $$ LANGUAGE PLPGSQL;
14462
14463 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14464 DECLARE
14465     queued_record   vandelay.queued_bib_record%ROWTYPE;
14466 BEGIN
14467
14468     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
14469
14470         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14471             RETURN NEXT queued_record.id;
14472         END IF;
14473
14474     END LOOP;
14475
14476     RETURN;
14477
14478 END;
14479 $$ LANGUAGE PLPGSQL;
14480
14481 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14482     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14483 $$ LANGUAGE SQL;
14484
14485 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14486 DECLARE
14487     merge_profile   vandelay.merge_profile%ROWTYPE;
14488     dyn_profile     vandelay.compile_profile%ROWTYPE;
14489     source_marc     TEXT;
14490     target_marc     TEXT;
14491     eg_marc         TEXT;
14492     v_marc          TEXT;
14493     replace_rule    TEXT;
14494     match_count     INT;
14495 BEGIN
14496
14497     SELECT  b.marc INTO eg_marc
14498       FROM  authority.record_entry b
14499             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14500       LIMIT 1;
14501
14502     SELECT  q.marc INTO v_marc
14503       FROM  vandelay.queued_record q
14504             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14505       LIMIT 1;
14506
14507     IF eg_marc IS NULL OR v_marc IS NULL THEN
14508         -- RAISE NOTICE 'no marc for vandelay or authority record';
14509         RETURN FALSE;
14510     END IF;
14511
14512     dyn_profile := vandelay.compile_profile( v_marc );
14513
14514     IF merge_profile_id IS NOT NULL THEN
14515         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14516         IF FOUND THEN
14517             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14518             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14519             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14520             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14521         END IF;
14522     END IF;
14523
14524     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14525         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14526         RETURN FALSE;
14527     END IF;
14528
14529     IF dyn_profile.replace_rule <> '' THEN
14530         source_marc = v_marc;
14531         target_marc = eg_marc;
14532         replace_rule = dyn_profile.replace_rule;
14533     ELSE
14534         source_marc = eg_marc;
14535         target_marc = v_marc;
14536         replace_rule = dyn_profile.preserve_rule;
14537     END IF;
14538
14539     UPDATE  authority.record_entry
14540       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14541       WHERE id = eg_id;
14542
14543     IF FOUND THEN
14544         UPDATE  vandelay.queued_authority_record
14545           SET   imported_as = eg_id,
14546                 import_time = NOW()
14547           WHERE id = import_id;
14548         RETURN TRUE;
14549     END IF;
14550
14551     -- RAISE NOTICE 'update of authority.record_entry failed';
14552
14553     RETURN FALSE;
14554
14555 END;
14556 $$ LANGUAGE PLPGSQL;
14557
14558 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14559 DECLARE
14560     eg_id           BIGINT;
14561     match_count     INT;
14562 BEGIN
14563     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14564
14565     IF match_count <> 1 THEN
14566         -- RAISE NOTICE 'not an exact match';
14567         RETURN FALSE;
14568     END IF;
14569
14570     SELECT  m.eg_record INTO eg_id
14571       FROM  vandelay.authority_match m
14572       WHERE m.queued_record = import_id
14573       LIMIT 1;
14574
14575     IF eg_id IS NULL THEN
14576         RETURN FALSE;
14577     END IF;
14578
14579     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14580 END;
14581 $$ LANGUAGE PLPGSQL;
14582
14583 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14584 DECLARE
14585     queued_record   vandelay.queued_authority_record%ROWTYPE;
14586 BEGIN
14587
14588     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14589
14590         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14591             RETURN NEXT queued_record.id;
14592         END IF;
14593
14594     END LOOP;
14595
14596     RETURN;
14597
14598 END;
14599 $$ LANGUAGE PLPGSQL;
14600
14601 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14602     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14603 $$ LANGUAGE SQL;
14604
14605 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14606 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14607 DECLARE
14608     eg_tcn          TEXT;
14609     eg_tcn_source   TEXT;
14610     output          vandelay.tcn_data%ROWTYPE;
14611 BEGIN
14612
14613     -- 001/003
14614     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14615     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14616
14617         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14618         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14619             eg_tcn_source := 'System Local';
14620         END IF;
14621
14622         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14623
14624         IF NOT FOUND THEN
14625             output.used := FALSE;
14626         ELSE
14627             output.used := TRUE;
14628         END IF;
14629
14630         output.tcn := eg_tcn;
14631         output.tcn_source := eg_tcn_source;
14632         RETURN NEXT output;
14633
14634     END IF;
14635
14636     -- 901 ab
14637     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14638     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14639
14640         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14641         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14642             eg_tcn_source := 'System Local';
14643         END IF;
14644
14645         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14646
14647         IF NOT FOUND THEN
14648             output.used := FALSE;
14649         ELSE
14650             output.used := TRUE;
14651         END IF;
14652
14653         output.tcn := eg_tcn;
14654         output.tcn_source := eg_tcn_source;
14655         RETURN NEXT output;
14656
14657     END IF;
14658
14659     -- 039 ab
14660     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14661     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14662
14663         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14664         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14665             eg_tcn_source := 'System Local';
14666         END IF;
14667
14668         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14669
14670         IF NOT FOUND THEN
14671             output.used := FALSE;
14672         ELSE
14673             output.used := TRUE;
14674         END IF;
14675
14676         output.tcn := eg_tcn;
14677         output.tcn_source := eg_tcn_source;
14678         RETURN NEXT output;
14679
14680     END IF;
14681
14682     -- 020 a
14683     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14684     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14685
14686         eg_tcn_source := 'ISBN';
14687
14688         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14689
14690         IF NOT FOUND THEN
14691             output.used := FALSE;
14692         ELSE
14693             output.used := TRUE;
14694         END IF;
14695
14696         output.tcn := eg_tcn;
14697         output.tcn_source := eg_tcn_source;
14698         RETURN NEXT output;
14699
14700     END IF;
14701
14702     -- 022 a
14703     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14704     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14705
14706         eg_tcn_source := 'ISSN';
14707
14708         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14709
14710         IF NOT FOUND THEN
14711             output.used := FALSE;
14712         ELSE
14713             output.used := TRUE;
14714         END IF;
14715
14716         output.tcn := eg_tcn;
14717         output.tcn_source := eg_tcn_source;
14718         RETURN NEXT output;
14719
14720     END IF;
14721
14722     -- 010 a
14723     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14724     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14725
14726         eg_tcn_source := 'LCCN';
14727
14728         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14729
14730         IF NOT FOUND THEN
14731             output.used := FALSE;
14732         ELSE
14733             output.used := TRUE;
14734         END IF;
14735
14736         output.tcn := eg_tcn;
14737         output.tcn_source := eg_tcn_source;
14738         RETURN NEXT output;
14739
14740     END IF;
14741
14742     -- 035 a
14743     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14744     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14745
14746         eg_tcn_source := 'System Legacy';
14747
14748         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14749
14750         IF NOT FOUND THEN
14751             output.used := FALSE;
14752         ELSE
14753             output.used := TRUE;
14754         END IF;
14755
14756         output.tcn := eg_tcn;
14757         output.tcn_source := eg_tcn_source;
14758         RETURN NEXT output;
14759
14760     END IF;
14761
14762     RETURN;
14763 END;
14764 $_$ LANGUAGE PLPGSQL;
14765
14766 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14767
14768 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);
14769
14770 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
14771
14772 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14773 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14774 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14775 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14776 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14777
14778 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14779 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14780 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14781 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14782
14783 ALTER TABLE metabib.series_field_entry
14784         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14785                 REFERENCES biblio.record_entry (id)
14786                 ON DELETE CASCADE
14787                 DEFERRABLE INITIALLY DEFERRED;
14788
14789 ALTER TABLE metabib.series_field_entry
14790         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14791                 REFERENCES config.metabib_field (id)
14792                 ON DELETE CASCADE
14793                 DEFERRABLE INITIALLY DEFERRED;
14794
14795 CREATE TABLE acq.claim_policy_action (
14796         id              SERIAL       PRIMARY KEY,
14797         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14798                                  ON DELETE CASCADE
14799                                      DEFERRABLE INITIALLY DEFERRED,
14800         action_interval INTERVAL     NOT NULL,
14801         action          INT          NOT NULL REFERENCES acq.claim_event_type
14802                                      DEFERRABLE INITIALLY DEFERRED,
14803         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14804 );
14805
14806 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14807 DECLARE
14808     value       TEXT;
14809     atype       TEXT;
14810     prov        INT;
14811     pos         INT;
14812     adef        RECORD;
14813     xpath_string    TEXT;
14814 BEGIN
14815     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14816  
14817         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14818  
14819         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14820             IF (atype = 'lineitem_provider_attr_definition') THEN
14821                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14822                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14823             END IF;
14824  
14825             IF (atype = 'lineitem_provider_attr_definition') THEN
14826                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14827             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14828                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14829             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14830                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14831             END IF;
14832  
14833             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14834  
14835             pos := 1;
14836  
14837             LOOP
14838                 SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14839  
14840                 IF (value IS NOT NULL AND value <> '') THEN
14841                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14842                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14843                 ELSE
14844                     EXIT;
14845                 END IF;
14846  
14847                 pos := pos + 1;
14848             END LOOP;
14849  
14850         END IF;
14851  
14852     END LOOP;
14853  
14854     RETURN NULL;
14855 END;
14856 $function$ LANGUAGE PLPGSQL;
14857
14858 UPDATE config.metabib_field SET label = name;
14859 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14860
14861 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_field_class_fkey
14862          FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14863
14864 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14865
14866 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14867
14868 CREATE TABLE config.metabib_search_alias (
14869     alias       TEXT    PRIMARY KEY,
14870     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14871     field       INT     REFERENCES config.metabib_field (id)
14872 );
14873
14874 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14875 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14876 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14877 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14878 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14879 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14880 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14881 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14882
14883 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14884 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14885 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14886 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14887 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14888 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14889 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14890 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14891 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14892 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14893 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14894 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14895 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14896
14897 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14898 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14899 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14900 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14901 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14902 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14903 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14904 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14905
14906 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14907 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14908 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14909 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14910 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14911 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
14912
14913 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14914 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14915 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14916
14917 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14918 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;
14919 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;
14920 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;
14921 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;
14922
14923 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14924 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14925 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14926 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14927
14928 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14929 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14930 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14931 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14932 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14933 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14934 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14935 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14936 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14937 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14938 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14939 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14940 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14941 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14942
14943 CREATE TABLE asset.opac_visible_copies (
14944   id        BIGINT primary key, -- copy id
14945   record    BIGINT,
14946   circ_lib  INTEGER
14947 );
14948 COMMENT ON TABLE asset.opac_visible_copies IS $$
14949 Materialized view of copies that are visible in the OPAC, used by
14950 search.query_parser_fts() to speed up OPAC visibility checks on large
14951 databases.  Contents are maintained by a set of triggers.
14952 $$;
14953 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
14954
14955 CREATE OR REPLACE FUNCTION search.query_parser_fts (
14956
14957     param_search_ou INT,
14958     param_depth     INT,
14959     param_query     TEXT,
14960     param_statuses  INT[],
14961     param_locations INT[],
14962     param_offset    INT,
14963     param_check     INT,
14964     param_limit     INT,
14965     metarecord      BOOL,
14966     staff           BOOL
14967  
14968 ) RETURNS SETOF search.search_result AS $func$
14969 DECLARE
14970
14971     current_res         search.search_result%ROWTYPE;
14972     search_org_list     INT[];
14973
14974     check_limit         INT;
14975     core_limit          INT;
14976     core_offset         INT;
14977     tmp_int             INT;
14978
14979     core_result         RECORD;
14980     core_cursor         REFCURSOR;
14981     core_rel_query      TEXT;
14982
14983     total_count         INT := 0;
14984     check_count         INT := 0;
14985     deleted_count       INT := 0;
14986     visible_count       INT := 0;
14987     excluded_count      INT := 0;
14988
14989 BEGIN
14990
14991     check_limit := COALESCE( param_check, 1000 );
14992     core_limit  := COALESCE( param_limit, 25000 );
14993     core_offset := COALESCE( param_offset, 0 );
14994
14995     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
14996
14997     IF param_search_ou > 0 THEN
14998         IF param_depth IS NOT NULL THEN
14999             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
15000         ELSE
15001             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
15002         END IF;
15003     ELSIF param_search_ou < 0 THEN
15004         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
15005     ELSIF param_search_ou = 0 THEN
15006         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
15007     END IF;
15008
15009     OPEN core_cursor FOR EXECUTE param_query;
15010
15011     LOOP
15012
15013         FETCH core_cursor INTO core_result;
15014         EXIT WHEN NOT FOUND;
15015         EXIT WHEN total_count >= core_limit;
15016
15017         total_count := total_count + 1;
15018
15019         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
15020
15021         check_count := check_count + 1;
15022
15023         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15024         IF NOT FOUND THEN
15025             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
15026             deleted_count := deleted_count + 1;
15027             CONTINUE;
15028         END IF;
15029
15030         PERFORM 1
15031           FROM  biblio.record_entry b
15032                 JOIN config.bib_source s ON (b.source = s.id)
15033           WHERE s.transcendant
15034                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15035
15036         IF FOUND THEN
15037             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
15038             visible_count := visible_count + 1;
15039
15040             current_res.id = core_result.id;
15041             current_res.rel = core_result.rel;
15042
15043             tmp_int := 1;
15044             IF metarecord THEN
15045                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15046             END IF;
15047
15048             IF tmp_int = 1 THEN
15049                 current_res.record = core_result.records[1];
15050             ELSE
15051                 current_res.record = NULL;
15052             END IF;
15053
15054             RETURN NEXT current_res;
15055
15056             CONTINUE;
15057         END IF;
15058
15059         PERFORM 1
15060           FROM  asset.call_number cn
15061                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
15062                 JOIN asset.uri uri ON (map.uri = uri.id)
15063           WHERE NOT cn.deleted
15064                 AND cn.label = '##URI##'
15065                 AND uri.active
15066                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
15067                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15068                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15069           LIMIT 1;
15070
15071         IF FOUND THEN
15072             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
15073             visible_count := visible_count + 1;
15074
15075             current_res.id = core_result.id;
15076             current_res.rel = core_result.rel;
15077
15078             tmp_int := 1;
15079             IF metarecord THEN
15080                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15081             END IF;
15082
15083             IF tmp_int = 1 THEN
15084                 current_res.record = core_result.records[1];
15085             ELSE
15086                 current_res.record = NULL;
15087             END IF;
15088
15089             RETURN NEXT current_res;
15090
15091             CONTINUE;
15092         END IF;
15093
15094         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
15095
15096             PERFORM 1
15097               FROM  asset.call_number cn
15098                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15099               WHERE NOT cn.deleted
15100                     AND NOT cp.deleted
15101                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
15102                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15103                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15104               LIMIT 1;
15105
15106             IF NOT FOUND THEN
15107                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
15108                 excluded_count := excluded_count + 1;
15109                 CONTINUE;
15110             END IF;
15111
15112         END IF;
15113
15114         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
15115
15116             PERFORM 1
15117               FROM  asset.call_number cn
15118                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15119               WHERE NOT cn.deleted
15120                     AND NOT cp.deleted
15121                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
15122                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15123                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15124               LIMIT 1;
15125
15126             IF NOT FOUND THEN
15127                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
15128                 excluded_count := excluded_count + 1;
15129                 CONTINUE;
15130             END IF;
15131
15132         END IF;
15133
15134         IF staff IS NULL OR NOT staff THEN
15135
15136             PERFORM 1
15137               FROM  asset.opac_visible_copies
15138               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15139                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15140               LIMIT 1;
15141
15142             IF NOT FOUND THEN
15143                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15144                 excluded_count := excluded_count + 1;
15145                 CONTINUE;
15146             END IF;
15147
15148         ELSE
15149
15150             PERFORM 1
15151               FROM  asset.call_number cn
15152                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15153                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
15154               WHERE NOT cn.deleted
15155                     AND NOT cp.deleted
15156                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15157                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15158               LIMIT 1;
15159
15160             IF NOT FOUND THEN
15161
15162                 PERFORM 1
15163                   FROM  asset.call_number cn
15164                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15165                   LIMIT 1;
15166
15167                 IF FOUND THEN
15168                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15169                     excluded_count := excluded_count + 1;
15170                     CONTINUE;
15171                 END IF;
15172
15173             END IF;
15174
15175         END IF;
15176
15177         visible_count := visible_count + 1;
15178
15179         current_res.id = core_result.id;
15180         current_res.rel = core_result.rel;
15181
15182         tmp_int := 1;
15183         IF metarecord THEN
15184             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15185         END IF;
15186
15187         IF tmp_int = 1 THEN
15188             current_res.record = core_result.records[1];
15189         ELSE
15190             current_res.record = NULL;
15191         END IF;
15192
15193         RETURN NEXT current_res;
15194
15195         IF visible_count % 1000 = 0 THEN
15196             -- RAISE NOTICE ' % visible so far ... ', visible_count;
15197         END IF;
15198
15199     END LOOP;
15200
15201     current_res.id = NULL;
15202     current_res.rel = NULL;
15203     current_res.record = NULL;
15204     current_res.total = total_count;
15205     current_res.checked = check_count;
15206     current_res.deleted = deleted_count;
15207     current_res.visible = visible_count;
15208     current_res.excluded = excluded_count;
15209
15210     CLOSE core_cursor;
15211
15212     RETURN NEXT current_res;
15213
15214 END;
15215 $func$ LANGUAGE PLPGSQL;
15216
15217 ALTER TABLE biblio.record_entry ADD COLUMN owner INT;
15218 ALTER TABLE biblio.record_entry
15219          ADD CONSTRAINT biblio_record_entry_owner_fkey FOREIGN KEY (owner)
15220          REFERENCES actor.org_unit (id)
15221          DEFERRABLE INITIALLY DEFERRED;
15222
15223 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
15224
15225 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
15226 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
15227
15228 DROP VIEW auditor.biblio_record_entry_lifecycle;
15229
15230 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
15231
15232 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
15233         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
15234 $$ LANGUAGE SQL STRICT IMMUTABLE;
15235
15236 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
15237     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
15238 $$ LANGUAGE SQL STRICT IMMUTABLE;
15239
15240 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
15241     return lc(shift);
15242 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15243
15244 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
15245     return uc(shift);
15246 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15247
15248 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
15249     use Unicode::Normalize;
15250
15251     my $x = NFD(shift);
15252     $x =~ s/\pM+//go;
15253     return $x;
15254
15255 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15256
15257 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
15258     use Unicode::Normalize;
15259
15260     my $x = NFC(shift);
15261     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
15262     return $x;
15263
15264 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15265
15266 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
15267 DECLARE
15268     setting RECORD;
15269     cur_org INT;
15270 BEGIN
15271     cur_org := org_id;
15272     LOOP
15273         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
15274         IF FOUND THEN
15275             RETURN NEXT setting;
15276         END IF;
15277         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
15278         EXIT WHEN cur_org IS NULL;
15279     END LOOP;
15280     RETURN;
15281 END;
15282 $$ LANGUAGE plpgsql STABLE;
15283
15284 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
15285 DECLARE
15286     counter INT;
15287     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
15288 BEGIN
15289
15290     SELECT  COUNT(*) INTO counter
15291       FROM  oils_xpath_table(
15292                 'id',
15293                 'marc',
15294                 'acq.lineitem',
15295                 '//*[@tag="' || tag || '"]',
15296                 'id=' || lineitem
15297             ) as t(i int,c text);
15298
15299     FOR i IN 1 .. counter LOOP
15300         FOR lida IN
15301             SELECT  *
15302               FROM  (   SELECT  id,i,t,v
15303                           FROM  oils_xpath_table(
15304                                     'id',
15305                                     'marc',
15306                                     'acq.lineitem',
15307                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
15308                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
15309                                     'id=' || lineitem
15310                                 ) as t(id int,t text,v text)
15311                     )x
15312         LOOP
15313             RETURN NEXT lida;
15314         END LOOP;
15315     END LOOP;
15316
15317     RETURN;
15318 END;
15319 $$ LANGUAGE PLPGSQL;
15320
15321 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
15322 DECLARE
15323     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
15324     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
15325     result      config.i18n_core%ROWTYPE;
15326     fallback    TEXT;
15327     keyfield    TEXT := keyclass || '.' || keycol;
15328 BEGIN
15329
15330     -- Try the full locale
15331     SELECT  * INTO result
15332       FROM  config.i18n_core
15333       WHERE fq_field = keyfield
15334             AND identity_value = keyvalue
15335             AND translation = locale;
15336
15337     -- Try just the language
15338     IF NOT FOUND THEN
15339         SELECT  * INTO result
15340           FROM  config.i18n_core
15341           WHERE fq_field = keyfield
15342                 AND identity_value = keyvalue
15343                 AND translation = language;
15344     END IF;
15345
15346     -- Fall back to the string we passed in in the first place
15347     IF NOT FOUND THEN
15348     EXECUTE
15349             'SELECT ' ||
15350                 keycol ||
15351             ' FROM ' || keytable ||
15352             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
15353                 INTO fallback;
15354         RETURN fallback;
15355     END IF;
15356
15357     RETURN result.string;
15358 END;
15359 $func$ LANGUAGE PLPGSQL STABLE;
15360
15361 SELECT auditor.create_auditor ( 'acq', 'invoice' );
15362
15363 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
15364
15365 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
15366
15367 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
15368     3, 1, 'delivered_but_lost',
15369     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
15370
15371 CREATE TABLE config.global_flag (
15372     label   TEXT    NOT NULL
15373 ) INHERITS (config.internal_flag);
15374 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
15375
15376 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
15377     VALUES (
15378         'cat.bib.use_id_for_tcn',
15379         oils_i18n_gettext(
15380             'cat.bib.use_id_for_tcn',
15381             'Cat: Use Internal ID for TCN Value',
15382             'cgf', 
15383             'label'
15384         )
15385     );
15386
15387 -- resolves performance issue noted by EG Indiana
15388
15389 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
15390
15391 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
15392
15393 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15394     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
15395 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15396     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/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     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/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     (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 );
15401 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15402     (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 );
15403 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15404     (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 );
15405 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15406     (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 );
15407 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15408     (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 );
15409 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15410     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
15411
15412 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15413  
15414
15415 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
15416
15417 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
15418 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
15419 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
15420 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
15421 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
15422 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
15423
15424 CREATE TABLE metabib.identifier_field_entry (
15425         id              BIGSERIAL       PRIMARY KEY,
15426         source          BIGINT          NOT NULL,
15427         field           INT             NOT NULL,
15428         value           TEXT            NOT NULL,
15429         index_vector    tsvector        NOT NULL
15430 );
15431 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15432         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
15433         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
15434
15435 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
15436 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
15437     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
15438 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
15439
15440 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
15441     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15442 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
15443     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15444
15445 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
15446     use Business::ISBN;
15447     use strict;
15448     use warnings;
15449
15450     # For each ISBN found in a single string containing a set of ISBNs:
15451     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
15452     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
15453
15454     my $input = shift;
15455     my $output = '';
15456
15457     foreach my $word (split(/\s/, $input)) {
15458         my $isbn = Business::ISBN->new($word);
15459
15460         # First check the checksum; if it is not valid, fix it and add the original
15461         # bad-checksum ISBN to the output
15462         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
15463             $output .= $isbn->isbn() . " ";
15464             $isbn->fix_checksum();
15465         }
15466
15467         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
15468         # and add the normalized original ISBN to the output
15469         if ($isbn && $isbn->is_valid()) {
15470             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
15471             $output .= $isbn->isbn . " ";
15472
15473             # If we successfully converted the ISBN to its counterpart, add the
15474             # converted ISBN to the output as well
15475             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15476         }
15477     }
15478     return $output if $output;
15479
15480     # If there were no valid ISBNs, just return the raw input
15481     return $input;
15482 $func$ LANGUAGE PLPERLU;
15483
15484 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15485 /*
15486  * Copyright (C) 2010 Merrimack Valley Library Consortium
15487  * Jason Stephenson <jstephenson@mvlc.org>
15488  * Copyright (C) 2010 Laurentian University
15489  * Dan Scott <dscott@laurentian.ca>
15490  *
15491  * The translate_isbn1013 function takes an input ISBN and returns the
15492  * following in a single space-delimited string if the input ISBN is valid:
15493  *   - The normalized input ISBN (hyphens stripped)
15494  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15495  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15496  */
15497 $$;
15498
15499 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15500 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15501 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15502 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15503 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15504 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15505
15506 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15507         'ISBN 10/13 conversion',
15508         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15509         'translate_isbn1013',
15510         0
15511 );
15512
15513 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15514         'Replace',
15515         'Replace all occurences of first parameter in the string with the second parameter.',
15516         'replace',
15517         2
15518 );
15519
15520 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15521     SELECT  m.id, i.id, 1
15522       FROM  config.metabib_field m,
15523             config.index_normalizer i
15524       WHERE i.func IN ('first_word')
15525             AND m.id IN (18);
15526
15527 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15528     SELECT  m.id, i.id, 2
15529       FROM  config.metabib_field m,
15530             config.index_normalizer i
15531       WHERE i.func IN ('translate_isbn1013')
15532             AND m.id IN (18);
15533
15534 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15535     SELECT  m.id, i.id, $$['-','']$$
15536       FROM  config.metabib_field m,
15537             config.index_normalizer i
15538       WHERE i.func IN ('replace')
15539             AND m.id IN (19);
15540
15541 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15542     SELECT  m.id, i.id, $$[' ','']$$
15543       FROM  config.metabib_field m,
15544             config.index_normalizer i
15545       WHERE i.func IN ('replace')
15546             AND m.id IN (19);
15547
15548 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15549
15550 UPDATE  config.metabib_field_index_norm_map
15551   SET   params = REPLACE(params,E'\'','"')
15552   WHERE params IS NOT NULL AND params <> '';
15553
15554 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15555
15556 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15557
15558 ALTER TABLE config.circ_modifier
15559         ADD COLUMN avg_wait_time INTERVAL;
15560
15561 --CREATE TABLE actor.usr_password_reset (
15562 --  id SERIAL PRIMARY KEY,
15563 --  uuid TEXT NOT NULL, 
15564 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15565 --  request_time TIMESTAMP NOT NULL DEFAULT NOW(), 
15566 --  has_been_reset BOOL NOT NULL DEFAULT false
15567 --);
15568 --COMMENT ON TABLE actor.usr_password_reset IS $$
15569 --/*
15570 -- * Copyright (C) 2010 Laurentian University
15571 -- * Dan Scott <dscott@laurentian.ca>
15572 -- *
15573 -- * Self-serve password reset requests
15574 -- *
15575 -- * ****
15576 -- *
15577 -- * This program is free software; you can redistribute it and/or
15578 -- * modify it under the terms of the GNU General Public License
15579 -- * as published by the Free Software Foundation; either version 2
15580 -- * of the License, or (at your option) any later version.
15581 -- *
15582 -- * This program is distributed in the hope that it will be useful,
15583 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15584 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15585 -- * GNU General Public License for more details.
15586 -- */
15587 --$$;
15588 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15589 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15590 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15591 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15592
15593 -- Use the identifier search class tsconfig
15594 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15595 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15596     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15597     FOR EACH ROW
15598     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15599
15600 INSERT INTO config.global_flag (name,label,enabled)
15601     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15602 INSERT INTO config.global_flag (name,label,enabled)
15603     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15604
15605 -- turn a JSON scalar into an SQL TEXT value
15606 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15607     use JSON::XS;                    
15608     my $json = shift();
15609     my $txt;
15610     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15611     return undef if ($@);
15612     return $txt
15613 $f$ LANGUAGE PLPERLU;
15614
15615 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15616 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15617 DECLARE
15618     c               action.circulation%ROWTYPE;
15619     view_age        INTERVAL;
15620     usr_view_age    actor.usr_setting%ROWTYPE;
15621     usr_view_start  actor.usr_setting%ROWTYPE;
15622 BEGIN
15623     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15624     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15625
15626     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15627         -- User opted in and supplied a retention age
15628         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15629             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15630         ELSE
15631             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15632         END IF;
15633     ELSIF usr_view_start.value IS NOT NULL THEN
15634         -- User opted in
15635         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15636     ELSE
15637         -- User did not opt in
15638         RETURN;
15639     END IF;
15640
15641     FOR c IN
15642         SELECT  *
15643           FROM  action.circulation
15644           WHERE usr = usr_id
15645                 AND parent_circ IS NULL
15646                 AND xact_start > NOW() - view_age
15647           ORDER BY xact_start
15648     LOOP
15649         RETURN NEXT c;
15650     END LOOP;
15651
15652     RETURN;
15653 END;
15654 $func$ LANGUAGE PLPGSQL;
15655
15656 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15657 DECLARE
15658     usr_keep_age    actor.usr_setting%ROWTYPE;
15659     usr_keep_start  actor.usr_setting%ROWTYPE;
15660     org_keep_age    INTERVAL;
15661     org_keep_count  INT;
15662
15663     keep_age        INTERVAL;
15664
15665     target_acp      RECORD;
15666     circ_chain_head action.circulation%ROWTYPE;
15667     circ_chain_tail action.circulation%ROWTYPE;
15668
15669     purge_position  INT;
15670     count_purged    INT;
15671 BEGIN
15672
15673     count_purged := 0;
15674
15675     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15676
15677     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15678     IF org_keep_count IS NULL THEN
15679         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15680     END IF;
15681
15682     -- First, find copies with more than keep_count non-renewal circs
15683     FOR target_acp IN
15684         SELECT  target_copy,
15685                 COUNT(*) AS total_real_circs
15686           FROM  action.circulation
15687           WHERE parent_circ IS NULL
15688                 AND xact_finish IS NOT NULL
15689           GROUP BY target_copy
15690           HAVING COUNT(*) > org_keep_count
15691     LOOP
15692         purge_position := 0;
15693         -- And, for those, select circs that are finished and older than keep_age
15694         FOR circ_chain_head IN
15695             SELECT  *
15696               FROM  action.circulation
15697               WHERE target_copy = target_acp.target_copy
15698                     AND parent_circ IS NULL
15699               ORDER BY xact_start
15700         LOOP
15701
15702             -- Stop once we've purged enough circs to hit org_keep_count
15703             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15704
15705             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15706             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15707
15708             -- Now get the user settings, if any, to block purging if the user wants to keep more circs
15709             usr_keep_age.value := NULL;
15710             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15711
15712             usr_keep_start.value := NULL;
15713             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start';
15714
15715             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15716                 IF oils_json_to_text(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ) THEN
15717                     keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15718                 ELSE
15719                     keep_age := oils_json_to_text(usr_keep_age.value)::INTERVAL;
15720                 END IF;
15721             ELSIF usr_keep_start.value IS NOT NULL THEN
15722                 keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15723             ELSE
15724                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTERVAL );
15725             END IF;
15726
15727             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15728
15729             -- We've passed the purging tests, purge the circ chain starting at the end
15730             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15731             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15732                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15733                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15734             END LOOP;
15735
15736             count_purged := count_purged + 1;
15737             purge_position := purge_position + 1;
15738
15739         END LOOP;
15740     END LOOP;
15741 END;
15742 $func$ LANGUAGE PLPGSQL;
15743
15744 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15745 DECLARE
15746     h               action.hold_request%ROWTYPE;
15747     view_age        INTERVAL;
15748     view_count      INT;
15749     usr_view_count  actor.usr_setting%ROWTYPE;
15750     usr_view_age    actor.usr_setting%ROWTYPE;
15751     usr_view_start  actor.usr_setting%ROWTYPE;
15752 BEGIN
15753     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15754     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15755     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15756
15757     FOR h IN
15758         SELECT  *
15759           FROM  action.hold_request
15760           WHERE usr = usr_id
15761                 AND fulfillment_time IS NULL
15762                 AND cancel_time IS NULL
15763           ORDER BY request_time DESC
15764     LOOP
15765         RETURN NEXT h;
15766     END LOOP;
15767
15768     IF usr_view_start.value IS NULL THEN
15769         RETURN;
15770     END IF;
15771
15772     IF usr_view_age.value IS NOT NULL THEN
15773         -- User opted in and supplied a retention age
15774         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15775             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15776         ELSE
15777             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15778         END IF;
15779     ELSE
15780         -- User opted in
15781         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15782     END IF;
15783
15784     IF usr_view_count.value IS NOT NULL THEN
15785         view_count := oils_json_to_text(usr_view_count.value)::INT;
15786     ELSE
15787         view_count := 1000;
15788     END IF;
15789
15790     -- show some fulfilled/canceled holds
15791     FOR h IN
15792         SELECT  *
15793           FROM  action.hold_request
15794           WHERE usr = usr_id
15795                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15796                 AND request_time > NOW() - view_age
15797           ORDER BY request_time DESC
15798           LIMIT view_count
15799     LOOP
15800         RETURN NEXT h;
15801     END LOOP;
15802
15803     RETURN;
15804 END;
15805 $func$ LANGUAGE PLPGSQL;
15806
15807 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15808
15809 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15810
15811 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15812
15813 DROP TABLE IF EXISTS serial.issuance CASCADE;
15814
15815 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15816
15817 DROP TABLE IF EXISTS serial.subscription CASCADE;
15818
15819 CREATE TABLE asset.copy_template (
15820         id             SERIAL   PRIMARY KEY,
15821         owning_lib     INT      NOT NULL
15822                                 REFERENCES actor.org_unit (id)
15823                                 DEFERRABLE INITIALLY DEFERRED,
15824         creator        BIGINT   NOT NULL
15825                                 REFERENCES actor.usr (id)
15826                                 DEFERRABLE INITIALLY DEFERRED,
15827         editor         BIGINT   NOT NULL
15828                                 REFERENCES actor.usr (id)
15829                                 DEFERRABLE INITIALLY DEFERRED,
15830         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15831         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15832         name           TEXT     NOT NULL,
15833         -- columns above this point are attributes of the template itself
15834         -- columns after this point are attributes of the copy this template modifies/creates
15835         circ_lib       INT      REFERENCES actor.org_unit (id)
15836                                 DEFERRABLE INITIALLY DEFERRED,
15837         status         INT      REFERENCES config.copy_status (id)
15838                                 DEFERRABLE INITIALLY DEFERRED,
15839         location       INT      REFERENCES asset.copy_location (id)
15840                                 DEFERRABLE INITIALLY DEFERRED,
15841         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15842                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15843         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15844                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15845         age_protect    INT,
15846         circulate      BOOL,
15847         deposit        BOOL,
15848         ref            BOOL,
15849         holdable       BOOL,
15850         deposit_amount NUMERIC(6,2),
15851         price          NUMERIC(8,2),
15852         circ_modifier  TEXT,
15853         circ_as_type   TEXT,
15854         alert_message  TEXT,
15855         opac_visible   BOOL,
15856         floating       BOOL,
15857         mint_condition BOOL
15858 );
15859
15860 CREATE TABLE serial.subscription (
15861         id                     SERIAL       PRIMARY KEY,
15862         owning_lib             INT          NOT NULL DEFAULT 1
15863                                             REFERENCES actor.org_unit (id)
15864                                             ON DELETE SET NULL
15865                                             DEFERRABLE INITIALLY DEFERRED,
15866         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15867         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15868         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15869                                             ON DELETE SET NULL
15870                                             DEFERRABLE INITIALLY DEFERRED,
15871         expected_date_offset   INTERVAL
15872         -- acquisitions/business-side tables link to here
15873 );
15874 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
15875 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
15876
15877 --at least one distribution per org_unit holding issues
15878 CREATE TABLE serial.distribution (
15879         id                    SERIAL  PRIMARY KEY,
15880         record_entry          BIGINT  REFERENCES serial.record_entry (id)
15881                                       ON DELETE SET NULL
15882                                       DEFERRABLE INITIALLY DEFERRED,
15883         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
15884                                           summary_method IS NULL
15885                                           OR summary_method IN ( 'add_to_sre',
15886                                           'merge_with_sre', 'use_sre_only',
15887                                           'use_sdist_only')),
15888         subscription          INT     NOT NULL
15889                                       REFERENCES serial.subscription (id)
15890                                                                   ON DELETE CASCADE
15891                                                                   DEFERRABLE INITIALLY DEFERRED,
15892         holding_lib           INT     NOT NULL
15893                                       REFERENCES actor.org_unit (id)
15894                                                                   DEFERRABLE INITIALLY DEFERRED,
15895         label                 TEXT    NOT NULL,
15896         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
15897                                       DEFERRABLE INITIALLY DEFERRED,
15898         receive_unit_template INT     REFERENCES asset.copy_template (id)
15899                                       DEFERRABLE INITIALLY DEFERRED,
15900         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
15901                                       DEFERRABLE INITIALLY DEFERRED,
15902         bind_unit_template    INT     REFERENCES asset.copy_template (id)
15903                                       DEFERRABLE INITIALLY DEFERRED,
15904         unit_label_prefix     TEXT,
15905         unit_label_suffix     TEXT
15906 );
15907 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
15908 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
15909
15910 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
15911
15912 CREATE TABLE serial.stream (
15913         id              SERIAL  PRIMARY KEY,
15914         distribution    INT     NOT NULL
15915                                 REFERENCES serial.distribution (id)
15916                                 ON DELETE CASCADE
15917                                 DEFERRABLE INITIALLY DEFERRED,
15918         routing_label   TEXT
15919 );
15920 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
15921
15922 CREATE UNIQUE INDEX label_once_per_dist
15923         ON serial.stream (distribution, routing_label)
15924         WHERE routing_label IS NOT NULL;
15925
15926 CREATE TABLE serial.routing_list_user (
15927         id             SERIAL       PRIMARY KEY,
15928         stream         INT          NOT NULL
15929                                     REFERENCES serial.stream
15930                                     ON DELETE CASCADE
15931                                     DEFERRABLE INITIALLY DEFERRED,
15932         pos            INT          NOT NULL DEFAULT 1,
15933         reader         INT          REFERENCES actor.usr
15934                                     ON DELETE CASCADE
15935                                     DEFERRABLE INITIALLY DEFERRED,
15936         department     TEXT,
15937         note           TEXT,
15938         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
15939         CONSTRAINT reader_or_dept CHECK
15940         (
15941             -- Recipient is a person or a department, but not both
15942                 (reader IS NOT NULL AND department IS NULL) OR
15943                 (reader IS NULL AND department IS NOT NULL)
15944         )
15945 );
15946 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
15947 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
15948
15949 CREATE TABLE serial.caption_and_pattern (
15950         id           SERIAL       PRIMARY KEY,
15951         subscription INT          NOT NULL REFERENCES serial.subscription (id)
15952                                   ON DELETE CASCADE
15953                                   DEFERRABLE INITIALLY DEFERRED,
15954         type         TEXT         NOT NULL
15955                                   CONSTRAINT cap_type CHECK ( type in
15956                                   ( 'basic', 'supplement', 'index' )),
15957         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
15958         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
15959         end_date     TIMESTAMP WITH TIME ZONE,
15960         active       BOOL         NOT NULL DEFAULT FALSE,
15961         pattern_code TEXT         NOT NULL,       -- must contain JSON
15962         enum_1       TEXT,
15963         enum_2       TEXT,
15964         enum_3       TEXT,
15965         enum_4       TEXT,
15966         enum_5       TEXT,
15967         enum_6       TEXT,
15968         chron_1      TEXT,
15969         chron_2      TEXT,
15970         chron_3      TEXT,
15971         chron_4      TEXT,
15972         chron_5      TEXT
15973 );
15974 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
15975
15976 CREATE TABLE serial.issuance (
15977         id              SERIAL    PRIMARY KEY,
15978         creator         INT       NOT NULL
15979                                   REFERENCES actor.usr (id)
15980                                                           DEFERRABLE INITIALLY DEFERRED,
15981         editor          INT       NOT NULL
15982                                   REFERENCES actor.usr (id)
15983                                   DEFERRABLE INITIALLY DEFERRED,
15984         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15985         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15986         subscription    INT       NOT NULL
15987                                   REFERENCES serial.subscription (id)
15988                                   ON DELETE CASCADE
15989                                   DEFERRABLE INITIALLY DEFERRED,
15990         label           TEXT,
15991         date_published  TIMESTAMP WITH TIME ZONE,
15992         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
15993                               DEFERRABLE INITIALLY DEFERRED,
15994         holding_code    TEXT,
15995         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
15996                                   (
15997                                       holding_type IS NULL
15998                                       OR holding_type IN ('basic','supplement','index')
15999                                   ),
16000         holding_link_id INT
16001         -- TODO: add columns for separate enumeration/chronology values
16002 );
16003 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
16004 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
16005 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
16006
16007 CREATE TABLE serial.unit (
16008         label           TEXT,
16009         label_sort_key  TEXT,
16010         contents        TEXT    NOT NULL
16011 ) INHERITS (asset.copy);
16012 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
16013 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
16014 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
16015 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
16016 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
16017
16018 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
16019
16020 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
16021
16022 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16023
16024 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16025
16026 CREATE TABLE serial.item (
16027         id              SERIAL  PRIMARY KEY,
16028         creator         INT     NOT NULL
16029                                 REFERENCES actor.usr (id)
16030                                 DEFERRABLE INITIALLY DEFERRED,
16031         editor          INT     NOT NULL
16032                                 REFERENCES actor.usr (id)
16033                                 DEFERRABLE INITIALLY DEFERRED,
16034         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16035         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16036         issuance        INT     NOT NULL
16037                                 REFERENCES serial.issuance (id)
16038                                 ON DELETE CASCADE
16039                                 DEFERRABLE INITIALLY DEFERRED,
16040         stream          INT     NOT NULL
16041                                 REFERENCES serial.stream (id)
16042                                 ON DELETE CASCADE
16043                                 DEFERRABLE INITIALLY DEFERRED,
16044         unit            INT     REFERENCES serial.unit (id)
16045                                 ON DELETE SET NULL
16046                                 DEFERRABLE INITIALLY DEFERRED,
16047         uri             INT     REFERENCES asset.uri (id)
16048                                 ON DELETE SET NULL
16049                                 DEFERRABLE INITIALLY DEFERRED,
16050         date_expected   TIMESTAMP WITH TIME ZONE,
16051         date_received   TIMESTAMP WITH TIME ZONE,
16052         status          TEXT    CONSTRAINT valid_status CHECK (
16053                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
16054                                'Expected', 'Not Held', 'Not Published', 'Received'))
16055                             DEFAULT 'Expected',
16056         shadowed        BOOL    NOT NULL DEFAULT FALSE
16057 );
16058 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
16059 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
16060 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
16061 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
16062 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
16063 CREATE INDEX serial_item_status_idx ON serial.item (status);
16064
16065 CREATE TABLE serial.item_note (
16066         id          SERIAL  PRIMARY KEY,
16067         item        INT     NOT NULL
16068                             REFERENCES serial.item (id)
16069                             ON DELETE CASCADE
16070                             DEFERRABLE INITIALLY DEFERRED,
16071         creator     INT     NOT NULL
16072                             REFERENCES actor.usr (id)
16073                             DEFERRABLE INITIALLY DEFERRED,
16074         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
16075         pub         BOOL    NOT NULL    DEFAULT FALSE,
16076         title       TEXT    NOT NULL,
16077         value       TEXT    NOT NULL
16078 );
16079 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
16080
16081 CREATE TABLE serial.basic_summary (
16082         id                  SERIAL  PRIMARY KEY,
16083         distribution        INT     NOT NULL
16084                                     REFERENCES serial.distribution (id)
16085                                     ON DELETE CASCADE
16086                                     DEFERRABLE INITIALLY DEFERRED,
16087         generated_coverage  TEXT    NOT NULL,
16088         textual_holdings    TEXT,
16089         show_generated      BOOL    NOT NULL DEFAULT TRUE
16090 );
16091 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
16092
16093 CREATE TABLE serial.supplement_summary (
16094         id                  SERIAL  PRIMARY KEY,
16095         distribution        INT     NOT NULL
16096                                     REFERENCES serial.distribution (id)
16097                                     ON DELETE CASCADE
16098                                     DEFERRABLE INITIALLY DEFERRED,
16099         generated_coverage  TEXT    NOT NULL,
16100         textual_holdings    TEXT,
16101         show_generated      BOOL    NOT NULL DEFAULT TRUE
16102 );
16103 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
16104
16105 CREATE TABLE serial.index_summary (
16106         id                  SERIAL  PRIMARY KEY,
16107         distribution        INT     NOT NULL
16108                                     REFERENCES serial.distribution (id)
16109                                     ON DELETE CASCADE
16110                                     DEFERRABLE INITIALLY DEFERRED,
16111         generated_coverage  TEXT    NOT NULL,
16112         textual_holdings    TEXT,
16113         show_generated      BOOL    NOT NULL DEFAULT TRUE
16114 );
16115 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
16116
16117 -- 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.
16118
16119 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
16120 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16121
16122 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
16123 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;
16124
16125 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
16126 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16127
16128 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
16129 RETURNS INTEGER AS $$
16130 BEGIN
16131         RETURN EXTRACT( EPOCH FROM interval_val );
16132 END;
16133 $$ LANGUAGE plpgsql;
16134
16135 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
16136 RETURNS INTEGER AS $$
16137 BEGIN
16138         RETURN config.interval_to_seconds( interval_string::INTERVAL );
16139 END;
16140 $$ LANGUAGE plpgsql;
16141
16142 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
16143     'temp',
16144     oils_i18n_gettext(
16145         'temp',
16146         'Temporary bucket which gets deleted after use.',
16147         'cbrebt',
16148         'label'
16149     )
16150 );
16151
16152 -- 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.
16153
16154 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
16155 BEGIN
16156
16157     IF xml_is_well_formed(NEW.marc) THEN
16158         RETURN NEW;
16159     ELSE
16160         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
16161     END IF;
16162     
16163 END;
16164 $func$ LANGUAGE PLPGSQL;
16165
16166 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();
16167
16168 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();
16169
16170 ALTER TABLE serial.record_entry
16171         ALTER COLUMN marc DROP NOT NULL;
16172
16173 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
16174 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
16175 <xsl:stylesheet
16176     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
16177     xmlns:marc="http://www.loc.gov/MARC21/slim"
16178     version="1.0">
16179 <!--
16180 Copyright (C) 2010  Equinox Software, Inc.
16181 Galen Charlton <gmc@esilibrary.cOM.
16182
16183 This program is free software; you can redistribute it and/or
16184 modify it under the terms of the GNU General Public License
16185 as published by the Free Software Foundation; either version 2
16186 of the License, or (at your option) any later version.
16187
16188 This program is distributed in the hope that it will be useful,
16189 but WITHOUT ANY WARRANTY; without even the implied warranty of
16190 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16191 GNU General Public License for more details.
16192
16193 marc21_expand_880.xsl - stylesheet used during indexing to
16194                         map alternative graphical representations
16195                         of MARC fields stored in 880 fields
16196                         to the corresponding tag name and value.
16197
16198 For example, if a MARC record for a Chinese book has
16199
16200 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16201 880.00 $6 245-01/$1 $a八十三年短篇小說選
16202
16203 this stylesheet will transform it to the equivalent of
16204
16205 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16206 245.00 $6 245-01/$1 $a八十三年短篇小說選
16207
16208 -->
16209     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
16210
16211     <xsl:template match="@*|node()">
16212         <xsl:copy>
16213             <xsl:apply-templates select="@*|node()"/>
16214         </xsl:copy>
16215     </xsl:template>
16216
16217     <xsl:template match="//marc:datafield[@tag='880']">
16218         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
16219             <marc:datafield>
16220                 <xsl:attribute name="tag">
16221                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
16222                 </xsl:attribute>
16223                 <xsl:attribute name="ind1">
16224                     <xsl:value-of select="@ind1" />
16225                 </xsl:attribute>
16226                 <xsl:attribute name="ind2">
16227                     <xsl:value-of select="@ind2" />
16228                 </xsl:attribute>
16229                 <xsl:apply-templates />
16230             </marc:datafield>
16231         </xsl:if>
16232     </xsl:template>
16233     
16234 </xsl:stylesheet>$$);
16235
16236 -- Splitting the ingest trigger up into little bits
16237
16238 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
16239     flag INTEGER PRIMARY KEY
16240 ) ON COMMIT DROP;
16241 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
16242
16243 -- cause failure if either of the tables we want to drop have rows
16244 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
16245 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
16246
16247 DROP TABLE IF EXISTS asset.copy_transparency_map;
16248 DROP TABLE IF EXISTS asset.copy_transparency;
16249
16250 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
16251
16252 -- We won't necessarily use all of these, but they are here for completeness.
16253 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
16254 -- Values are the EDI code value + 1000
16255
16256 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
16257 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
16258 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
16259 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
16260 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
16261 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
16262 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
16263 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
16264 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
16265 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
16266 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
16267 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
16268 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
16269 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
16270 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
16271 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
16272 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
16273 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
16274 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
16275 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
16276 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
16277 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
16278 ('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).'),
16279 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
16280 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
16281 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
16282 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
16283 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
16284 ('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.'),
16285 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
16286 ('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.'),
16287 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
16288 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
16289 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
16290 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
16291 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
16292 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
16293 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
16294 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
16295 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
16296 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
16297 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
16298 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
16299 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
16300 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
16301 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
16302 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
16303 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
16304 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
16305 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
16306 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
16307 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
16308 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
16309 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
16310 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
16311 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
16312 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
16313 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
16314 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
16315 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
16316 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
16317 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
16318 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
16319 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
16320 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
16321 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
16322 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
16323 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
16324 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
16325 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
16326 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
16327 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
16328 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
16329 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
16330 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
16331 ('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).'),
16332 ('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).'),
16333 ('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).'),
16334 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
16335 ('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).'),
16336 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
16337 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
16338 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
16339 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
16340 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
16341 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
16342 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
16343 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
16344 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
16345 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
16346 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
16347 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
16348 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
16349 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
16350 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
16351 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
16352 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
16353 ('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.'),
16354 ('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.'),
16355 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
16356 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
16357 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
16358 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
16359 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
16360 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
16361 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
16362 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
16363 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
16364 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
16365 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
16366 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
16367 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
16368 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
16369 ('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.'),
16370 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
16371 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
16372
16373 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
16374     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
16375  
16376 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
16377  
16378 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16379         'Remove Parenthesized Substring',
16380         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
16381         'remove_paren_substring',
16382         0
16383 );
16384
16385 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16386         'Trim Surrounding Space',
16387         'Trim leading and trailing spaces from extracted text.',
16388         'btrim',
16389         0
16390 );
16391
16392 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16393     SELECT  m.id,
16394             i.id,
16395             -2
16396       FROM  config.metabib_field m,
16397             config.index_normalizer i
16398       WHERE i.func IN ('remove_paren_substring')
16399             AND m.id IN (26);
16400
16401 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16402     SELECT  m.id,
16403             i.id,
16404             -1
16405       FROM  config.metabib_field m,
16406             config.index_normalizer i
16407       WHERE i.func IN ('btrim')
16408             AND m.id IN (26);
16409
16410 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
16411 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
16412 DECLARE
16413     dyn_profile     vandelay.compile_profile%ROWTYPE;
16414     replace_rule    TEXT;
16415     tmp_marc        TEXT;
16416     trgt_marc        TEXT;
16417     tmpl_marc        TEXT;
16418     match_count     INT;
16419 BEGIN
16420
16421     IF target_marc IS NULL OR template_marc IS NULL THEN
16422         -- RAISE NOTICE 'no marc for target or template record';
16423         RETURN NULL;
16424     END IF;
16425
16426     dyn_profile := vandelay.compile_profile( template_marc );
16427
16428     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
16429         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
16430         RETURN NULL;
16431     END IF;
16432
16433     IF dyn_profile.replace_rule <> '' THEN
16434         trgt_marc = target_marc;
16435         tmpl_marc = template_marc;
16436         replace_rule = dyn_profile.replace_rule;
16437     ELSE
16438         tmp_marc = target_marc;
16439         trgt_marc = template_marc;
16440         tmpl_marc = tmp_marc;
16441         replace_rule = dyn_profile.preserve_rule;
16442     END IF;
16443
16444     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
16445
16446 END;
16447 $$ LANGUAGE PLPGSQL;
16448
16449 -- Function to generate an ephemeral overlay template from an authority record
16450 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
16451
16452     use MARC::Record;
16453     use MARC::File::XML (BinaryEncoding => 'UTF-8');
16454
16455     my $xml = shift;
16456     my $r = MARC::Record->new_from_xml( $xml );
16457
16458     return undef unless ($r);
16459
16460     my $id = shift() || $r->subfield( '901' => 'c' );
16461     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
16462     return undef unless ($id); # We need an ID!
16463
16464     my $tmpl = MARC::Record->new();
16465
16466     my @rule_fields;
16467     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
16468
16469         my $tag = $field->tag;
16470         my $i1 = $field->indicator(1);
16471         my $i2 = $field->indicator(2);
16472         my $sf = join '', map { $_->[0] } $field->subfields;
16473         my @data = map { @$_ } $field->subfields;
16474
16475         my @replace_them;
16476
16477         # Map the authority field to bib fields it can control.
16478         if ($tag >= 100 and $tag <= 111) {       # names
16479             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
16480         } elsif ($tag eq '130') {                # uniform title
16481             @replace_them = qw/130 240 440 730 830/;
16482         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
16483             @replace_them = ($tag + 500);
16484         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
16485             @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/;
16486         } else {
16487             next;
16488         }
16489
16490         # Dummy up the bib-side data
16491         $tmpl->append_fields(
16492             map {
16493                 MARC::Field->new( $_, $i1, $i2, @data )
16494             } @replace_them
16495         );
16496
16497         # Construct some 'replace' rules
16498         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
16499     }
16500
16501     # Insert the replace rules into the template
16502     $tmpl->append_fields(
16503         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16504     );
16505
16506     $xml = $tmpl->as_xml_record;
16507     $xml =~ s/^<\?.+?\?>$//mo;
16508     $xml =~ s/\n//sgo;
16509     $xml =~ s/>\s+</></sgo;
16510
16511     return $xml;
16512
16513 $func$ LANGUAGE PLPERLU;
16514
16515 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16516     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16517 $func$ LANGUAGE SQL;
16518
16519 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16520     SELECT authority.generate_overlay_template( $1, NULL );
16521 $func$ LANGUAGE SQL;
16522
16523 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16524 DELETE FROM config.metabib_field WHERE id = 26;
16525
16526 -- Making this a global_flag (UI accessible) instead of an internal_flag
16527 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16528     VALUES (
16529         'ingest.disable_authority_linking',
16530         oils_i18n_gettext(
16531             'ingest.disable_authority_linking',
16532             'Authority Automation: Disable bib-authority link tracking',
16533             'cgf', 
16534             'label'
16535         )
16536     );
16537 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16538 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16539
16540 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16541     VALUES (
16542         'ingest.disable_authority_auto_update',
16543         oils_i18n_gettext(
16544             'ingest.disable_authority_auto_update',
16545             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16546             'cgf', 
16547             'label'
16548         )
16549     );
16550
16551 -- Enable automated ingest of authority records; just insert the row into
16552 -- authority.record_entry and authority.full_rec will automatically be populated
16553
16554 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16555     UPDATE  biblio.record_entry
16556       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16557       WHERE id = $2;
16558     SELECT $1;
16559 $func$ LANGUAGE SQL;
16560
16561 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16562     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16563 $func$ LANGUAGE SQL;
16564
16565 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
16566
16567 use MARC::Record;
16568 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16569
16570 my $xml = shift;
16571 my $r = MARC::Record->new_from_xml( $xml );
16572
16573 return_next( { tag => 'LDR', value => $r->leader } );
16574
16575 for my $f ( $r->fields ) {
16576     if ($f->is_control_field) {
16577         return_next({ tag => $f->tag, value => $f->data });
16578     } else {
16579         for my $s ($f->subfields) {
16580             return_next({
16581                 tag      => $f->tag,
16582                 ind1     => $f->indicator(1),
16583                 ind2     => $f->indicator(2),
16584                 subfield => $s->[0],
16585                 value    => $s->[1]
16586             });
16587
16588         }
16589     }
16590 }
16591
16592 return undef;
16593
16594 $func$ LANGUAGE PLPERLU;
16595
16596 CREATE OR REPLACE FUNCTION authority.flatten_marc ( rid BIGINT ) RETURNS SETOF authority.full_rec AS $func$
16597 DECLARE
16598     auth    authority.record_entry%ROWTYPE;
16599     output    authority.full_rec%ROWTYPE;
16600     field    RECORD;
16601 BEGIN
16602     SELECT INTO auth * FROM authority.record_entry WHERE id = rid;
16603
16604     FOR field IN SELECT * FROM authority.flatten_marc( auth.marc ) LOOP
16605         output.record := rid;
16606         output.ind1 := field.ind1;
16607         output.ind2 := field.ind2;
16608         output.tag := field.tag;
16609         output.subfield := field.subfield;
16610         IF field.subfield IS NOT NULL THEN
16611             output.value := naco_normalize(field.value, field.subfield);
16612         ELSE
16613             output.value := field.value;
16614         END IF;
16615
16616         CONTINUE WHEN output.value IS NULL;
16617
16618         RETURN NEXT output;
16619     END LOOP;
16620 END;
16621 $func$ LANGUAGE PLPGSQL;
16622
16623 -- authority.rec_descriptor appears to be unused currently
16624 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16625 BEGIN
16626     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16627 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16628 --        SELECT  auth_id, ;
16629
16630     RETURN;
16631 END;
16632 $func$ LANGUAGE PLPGSQL;
16633
16634 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16635 BEGIN
16636     DELETE FROM authority.full_rec WHERE record = auth_id;
16637     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16638         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16639
16640     RETURN;
16641 END;
16642 $func$ LANGUAGE PLPGSQL;
16643
16644 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16645 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16646 BEGIN
16647
16648     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16649         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16650         DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records
16651           -- Should remove matching $0 from controlled fields at the same time?
16652         RETURN NEW; -- and we're done
16653     END IF;
16654
16655     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16656         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16657
16658         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16659             RETURN NEW;
16660         END IF;
16661     END IF;
16662
16663     -- Flatten and insert the afr data
16664     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16665     IF NOT FOUND THEN
16666         PERFORM authority.reingest_authority_full_rec(NEW.id);
16667 -- authority.rec_descriptor is not currently used
16668 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16669 --        IF NOT FOUND THEN
16670 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16671 --        END IF;
16672     END IF;
16673
16674     RETURN NEW;
16675 END;
16676 $func$ LANGUAGE PLPGSQL;
16677
16678 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 ();
16679
16680 -- Some records manage to get XML namespace declarations into each element,
16681 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16682 -- This broke the old maintain_901(), so we'll make the regex more robust
16683
16684 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16685 BEGIN
16686     -- Remove any existing 901 fields before we insert the authoritative one
16687     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16688     IF TG_TABLE_SCHEMA = 'biblio' THEN
16689         NEW.marc := REGEXP_REPLACE(
16690             NEW.marc,
16691             E'(</(?:[^:]*?:)?record>)',
16692             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16693                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16694                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16695                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16696                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16697                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16698                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16699              E'</datafield>\\1'
16700         );
16701     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16702         NEW.marc := REGEXP_REPLACE(
16703             NEW.marc,
16704             E'(</(?:[^:]*?:)?record>)',
16705             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16706                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16707                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16708              E'</datafield>\\1'
16709         );
16710     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16711         NEW.marc := REGEXP_REPLACE(
16712             NEW.marc,
16713             E'(</(?:[^:]*?:)?record>)',
16714             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16715                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16716                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16717                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16718                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16719              E'</datafield>\\1'
16720         );
16721     ELSE
16722         NEW.marc := REGEXP_REPLACE(
16723             NEW.marc,
16724             E'(</(?:[^:]*?:)?record>)',
16725             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16726                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16727                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16728              E'</datafield>\\1'
16729         );
16730     END IF;
16731
16732     RETURN NEW;
16733 END;
16734 $func$ LANGUAGE PLPGSQL;
16735
16736 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16737 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16738 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16739  
16740 -- In booking, elbow room defines:
16741 --  a) how far in the future you must make a reservation on a given item if
16742 --      that item will have to transit somewhere to fulfill the reservation.
16743 --  b) how soon a reservation must be starting for the reserved item to
16744 --      be op-captured by the checkin interface.
16745
16746 -- We don't want to clobber any default_elbow room at any level:
16747
16748 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16749 DECLARE
16750     existing    actor.org_unit_setting%ROWTYPE;
16751 BEGIN
16752     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16753     IF NOT FOUND THEN
16754         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16755             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16756             'circ.booking_reservation.default_elbow_room',
16757             '"1 day"'
16758         );
16759         RETURN 1;
16760     END IF;
16761     RETURN 0;
16762 END;
16763 $$ LANGUAGE plpgsql;
16764
16765 SELECT pg_temp.default_elbow();
16766
16767 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16768
16769 -- returns the distinct set of target copy IDs from a user's visible circulation history
16770 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16771     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16772 $$ LANGUAGE SQL;
16773
16774 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16775 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16776 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16777 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16778
16779 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16780
16781 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16782 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16783
16784 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16785     VALUES (
16786         'cat.maintain_control_numbers',
16787         oils_i18n_gettext(
16788             'cat.maintain_control_numbers',
16789             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16790             'cgf', 
16791             'label'
16792         )
16793     );
16794
16795 INSERT INTO config.global_flag (name, label, enabled)
16796     VALUES (
16797         'circ.holds.empty_issuance_ok',
16798         oils_i18n_gettext(
16799             'circ.holds.empty_issuance_ok',
16800             'Holds: Allow holds on empty issuances',
16801             'cgf',
16802             'label'
16803         ),
16804         TRUE
16805     );
16806
16807 INSERT INTO config.global_flag (name, label, enabled)
16808     VALUES (
16809         'circ.holds.usr_not_requestor',
16810         oils_i18n_gettext(
16811             'circ.holds.usr_not_requestor',
16812             'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)',
16813             'cgf',
16814             'label'
16815         ),
16816         TRUE
16817     );
16818
16819 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16820 use strict;
16821 use MARC::Record;
16822 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16823 use Encode;
16824 use Unicode::Normalize;
16825
16826 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16827 my $schema = $_TD->{table_schema};
16828 my $rec_id = $_TD->{new}{id};
16829
16830 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16831 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16832 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16833     return;
16834 }
16835
16836 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16837 my $ou_cni = 'EVRGRN';
16838
16839 my $owner;
16840 if ($schema eq 'serial') {
16841     $owner = $_TD->{new}{owning_lib};
16842 } else {
16843     # are.owner and bre.owner can be null, so fall back to the consortial setting
16844     $owner = $_TD->{new}{owner} || 1;
16845 }
16846
16847 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16848 if ($ous_rv->{processed}) {
16849     $ou_cni = $ous_rv->{rows}[0]->{value};
16850     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16851 } else {
16852     # Fall back to the shortname of the OU if there was no OU setting
16853     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16854     if ($ous_rv->{processed}) {
16855         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16856     }
16857 }
16858
16859 my ($create, $munge) = (0, 0);
16860 my ($orig_001, $orig_003) = ('', '');
16861
16862 # Incoming MARC records may have multiple 001s or 003s, despite the spec
16863 my @control_ids = $record->field('003');
16864 my @scns = $record->field('035');
16865
16866 foreach my $id_field ('001', '003') {
16867     my $spec_value;
16868     my @controls = $record->field($id_field);
16869
16870     if ($id_field eq '001') {
16871         $spec_value = $rec_id;
16872     } else {
16873         $spec_value = $ou_cni;
16874     }
16875
16876     # Create the 001/003 if none exist
16877     if (scalar(@controls) == 0) {
16878         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
16879         $create = 1;
16880     } elsif (scalar(@controls) > 1) {
16881         # Do we already have the right 001/003 value in the existing set?
16882         unless (grep $_->data() eq $spec_value, @controls) {
16883             $munge = 1;
16884         }
16885
16886         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
16887         foreach my $control (@controls) {
16888             unless ($control->data() eq $spec_value) {
16889                 $record->delete_field($control);
16890             }
16891         }
16892     } else {
16893         # Only one field; check to see if we need to munge it
16894         unless (grep $_->data() eq $spec_value, @controls) {
16895             $munge = 1;
16896         }
16897     }
16898 }
16899
16900 # Now, if we need to munge the 001, we will first push the existing 001/003 into the 035
16901 if ($munge) {
16902     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
16903
16904     # Do not create duplicate 035 fields
16905     unless (grep $_->subfield('a') eq $scn, @scns) {
16906         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
16907     }
16908 }
16909
16910 # Set the 001/003 and update the MARC
16911 if ($create or $munge) {
16912     $record->field('001')->data($rec_id);
16913     $record->field('003')->data($ou_cni);
16914
16915     my $xml = $record->as_xml_record();
16916     $xml =~ s/\n//sgo;
16917     $xml =~ s/^<\?xml.+\?\s*>//go;
16918     $xml =~ s/>\s+</></go;
16919     $xml =~ s/\p{Cc}//go;
16920
16921     # Embed a version of OpenILS::Application::AppUtils->entityize()
16922     # to avoid having to set PERL5LIB for PostgreSQL as well
16923
16924     # If we are going to convert non-ASCII characters to XML entities,
16925     # we had better be dealing with a UTF8 string to begin with
16926     $xml = decode_utf8($xml);
16927
16928     $xml = NFC($xml);
16929
16930     # Convert raw ampersands to entities
16931     $xml =~ s/&(?!\S+;)/&amp;/gso;
16932
16933     # Convert Unicode characters to entities
16934     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
16935
16936     $xml =~ s/[\x00-\x1f]//go;
16937     $_TD->{new}{marc} = $xml;
16938
16939     return "MODIFY";
16940 }
16941
16942 return;
16943 $func$ LANGUAGE PLPERLU;
16944
16945 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16946 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16947 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16948
16949 INSERT INTO metabib.facet_entry (source, field, value)
16950     SELECT source, field, value FROM (
16951         SELECT * FROM metabib.author_field_entry
16952             UNION ALL
16953         SELECT * FROM metabib.keyword_field_entry
16954             UNION ALL
16955         SELECT * FROM metabib.identifier_field_entry
16956             UNION ALL
16957         SELECT * FROM metabib.title_field_entry
16958             UNION ALL
16959         SELECT * FROM metabib.subject_field_entry
16960             UNION ALL
16961         SELECT * FROM metabib.series_field_entry
16962         )x
16963     WHERE x.index_vector = '';
16964         
16965 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
16966 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
16967 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
16968 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
16969 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
16970 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
16971
16972 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
16973 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
16974 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
16975
16976 -- copy OPAC visibility materialized view
16977 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
16978
16979     TRUNCATE TABLE asset.opac_visible_copies;
16980
16981     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16982     SELECT  cp.id, cp.circ_lib, cn.record
16983     FROM  asset.copy cp
16984         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16985         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16986         JOIN asset.copy_location cl ON (cp.location = cl.id)
16987         JOIN config.copy_status cs ON (cp.status = cs.id)
16988         JOIN biblio.record_entry b ON (cn.record = b.id)
16989     WHERE NOT cp.deleted
16990         AND NOT cn.deleted
16991         AND NOT b.deleted
16992         AND cs.opac_visible
16993         AND cl.opac_visible
16994         AND cp.opac_visible
16995         AND a.opac_visible;
16996
16997 $$ LANGUAGE SQL;
16998 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
16999 Rebuild the copy OPAC visibility cache.  Useful during migrations.
17000 $$;
17001
17002 -- and actually populate the table
17003 SELECT asset.refresh_opac_visible_copies_mat_view();
17004
17005 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
17006 DECLARE
17007     add_query       TEXT;
17008     remove_query    TEXT;
17009     do_add          BOOLEAN := false;
17010     do_remove       BOOLEAN := false;
17011 BEGIN
17012     add_query := $$
17013             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
17014                 SELECT  cp.id, cp.circ_lib, cn.record
17015                   FROM  asset.copy cp
17016                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
17017                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
17018                         JOIN asset.copy_location cl ON (cp.location = cl.id)
17019                         JOIN config.copy_status cs ON (cp.status = cs.id)
17020                         JOIN biblio.record_entry b ON (cn.record = b.id)
17021                   WHERE NOT cp.deleted
17022                         AND NOT cn.deleted
17023                         AND NOT b.deleted
17024                         AND cs.opac_visible
17025                         AND cl.opac_visible
17026                         AND cp.opac_visible
17027                         AND a.opac_visible
17028     $$;
17029  
17030     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
17031
17032     IF TG_OP = 'INSERT' THEN
17033
17034         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17035             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17036             EXECUTE add_query;
17037         END IF;
17038
17039         RETURN NEW;
17040
17041     END IF;
17042
17043     -- handle items first, since with circulation activity
17044     -- their statuses change frequently
17045     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17046
17047         IF OLD.location    <> NEW.location OR
17048            OLD.call_number <> NEW.call_number OR
17049            OLD.status      <> NEW.status OR
17050            OLD.circ_lib    <> NEW.circ_lib THEN
17051             -- any of these could change visibility, but
17052             -- we'll save some queries and not try to calculate
17053             -- the change directly
17054             do_remove := true;
17055             do_add := true;
17056         ELSE
17057
17058             IF OLD.deleted <> NEW.deleted THEN
17059                 IF NEW.deleted THEN
17060                     do_remove := true;
17061                 ELSE
17062                     do_add := true;
17063                 END IF;
17064             END IF;
17065
17066             IF OLD.opac_visible <> NEW.opac_visible THEN
17067                 IF OLD.opac_visible THEN
17068                     do_remove := true;
17069                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
17070                                         -- is also marked opac_visible
17071                     do_add := true;
17072                 END IF;
17073             END IF;
17074
17075         END IF;
17076
17077         IF do_remove THEN
17078             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
17079         END IF;
17080         IF do_add THEN
17081             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17082             EXECUTE add_query;
17083         END IF;
17084
17085         RETURN NEW;
17086
17087     END IF;
17088
17089     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
17090  
17091         IF OLD.deleted AND NEW.deleted THEN -- do nothing
17092
17093             RETURN NEW;
17094  
17095         ELSIF NEW.deleted THEN -- remove rows
17096  
17097             IF TG_TABLE_NAME = 'call_number' THEN
17098                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
17099             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17100                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
17101             END IF;
17102  
17103             RETURN NEW;
17104  
17105         ELSIF OLD.deleted THEN -- add rows
17106  
17107             IF TG_TABLE_NAME IN ('copy','unit') THEN
17108                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17109             ELSIF TG_TABLE_NAME = 'call_number' THEN
17110                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17111             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17112                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
17113             END IF;
17114  
17115             EXECUTE add_query;
17116             RETURN NEW;
17117  
17118         END IF;
17119  
17120     END IF;
17121
17122     IF TG_TABLE_NAME = 'call_number' THEN
17123
17124         IF OLD.record <> NEW.record THEN
17125             -- call number is linked to different bib
17126             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
17127             EXECUTE remove_query;
17128             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17129             EXECUTE add_query;
17130         END IF;
17131
17132         RETURN NEW;
17133
17134     END IF;
17135
17136     IF TG_TABLE_NAME IN ('record_entry') THEN
17137         RETURN NEW; -- don't have 'opac_visible'
17138     END IF;
17139
17140     -- actor.org_unit, asset.copy_location, asset.copy_status
17141     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
17142
17143         RETURN NEW;
17144
17145     ELSIF NEW.opac_visible THEN -- add rows
17146
17147         IF TG_TABLE_NAME = 'org_unit' THEN
17148             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
17149         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17150             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
17151         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17152             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
17153         END IF;
17154  
17155         EXECUTE add_query;
17156  
17157     ELSE -- delete rows
17158
17159         IF TG_TABLE_NAME = 'org_unit' THEN
17160             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
17161         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17162             remove_query := remove_query || 'location = ' || NEW.id || ');';
17163         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17164             remove_query := remove_query || 'status = ' || NEW.id || ');';
17165         END IF;
17166  
17167         EXECUTE remove_query;
17168  
17169     END IF;
17170  
17171     RETURN NEW;
17172 END;
17173 $func$ LANGUAGE PLPGSQL;
17174 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
17175 Trigger function to update the copy OPAC visiblity cache.
17176 $$;
17177 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();
17178 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17179 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();
17180 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();
17181 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17182 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();
17183 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();
17184
17185 -- must create this rule explicitly; it is not inherited from asset.copy
17186 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;
17187
17188 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);
17189
17190 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
17191 DECLARE
17192     moved_objects INT := 0;
17193     bib_id        INT := 0;
17194     bib_rec       biblio.record_entry%ROWTYPE;
17195     auth_link     authority.bib_linking%ROWTYPE;
17196 BEGIN
17197
17198     -- 1. Make source_record MARC a copy of the target_record to get auto-sync in linked bib records
17199     UPDATE authority.record_entry
17200       SET marc = (
17201         SELECT marc
17202           FROM authority.record_entry
17203           WHERE id = target_record
17204       )
17205       WHERE id = source_record;
17206
17207     -- 2. Update all bib records with the ID from target_record in their $0
17208     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre 
17209       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
17210       WHERE abl.authority = target_record LOOP
17211
17212         UPDATE biblio.record_entry
17213           SET marc = REGEXP_REPLACE(marc, 
17214             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
17215             E'\\1' || target_record || '<', 'g')
17216           WHERE id = bib_rec.id;
17217
17218           moved_objects := moved_objects + 1;
17219     END LOOP;
17220
17221     -- 3. "Delete" source_record
17222     DELETE FROM authority.record_entry
17223       WHERE id = source_record;
17224
17225     RETURN moved_objects;
17226 END;
17227 $func$ LANGUAGE plpgsql;
17228
17229 -- serial.record_entry already had an owner column spelled "owning_lib"
17230 -- Adjust the table and affected functions accordingly
17231
17232 ALTER TABLE serial.record_entry DROP COLUMN owner;
17233
17234 CREATE TABLE actor.usr_saved_search (
17235     id              SERIAL          PRIMARY KEY,
17236         owner           INT             NOT NULL REFERENCES actor.usr (id)
17237                                         ON DELETE CASCADE
17238                                         DEFERRABLE INITIALLY DEFERRED,
17239         name            TEXT            NOT NULL,
17240         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
17241         query_text      TEXT            NOT NULL,
17242         query_type      TEXT            NOT NULL
17243                                         CONSTRAINT valid_query_text CHECK (
17244                                         query_type IN ( 'URL' )) DEFAULT 'URL',
17245                                         -- we may add other types someday
17246         target          TEXT            NOT NULL
17247                                         CONSTRAINT valid_target CHECK (
17248                                         target IN ( 'record', 'metarecord', 'callnumber' )),
17249         CONSTRAINT name_once_per_user UNIQUE (owner, name)
17250 );
17251
17252 -- Apply Dan Wells' changes to the serial schema, from the
17253 -- seials-integration branch
17254
17255 CREATE TABLE serial.subscription_note (
17256         id           SERIAL PRIMARY KEY,
17257         subscription INT    NOT NULL
17258                             REFERENCES serial.subscription (id)
17259                             ON DELETE CASCADE
17260                             DEFERRABLE INITIALLY DEFERRED,
17261         creator      INT    NOT NULL
17262                             REFERENCES actor.usr (id)
17263                             DEFERRABLE INITIALLY DEFERRED,
17264         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17265         pub          BOOL   NOT NULL DEFAULT FALSE,
17266         title        TEXT   NOT NULL,
17267         value        TEXT   NOT NULL
17268 );
17269 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
17270
17271 CREATE TABLE serial.distribution_note (
17272         id           SERIAL PRIMARY KEY,
17273         distribution INT    NOT NULL
17274                             REFERENCES serial.distribution (id)
17275                             ON DELETE CASCADE
17276                             DEFERRABLE INITIALLY DEFERRED,
17277         creator      INT    NOT NULL
17278                             REFERENCES actor.usr (id)
17279                             DEFERRABLE INITIALLY DEFERRED,
17280         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17281         pub          BOOL   NOT NULL DEFAULT FALSE,
17282         title        TEXT   NOT NULL,
17283         value        TEXT   NOT NULL
17284 );
17285 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
17286
17287 ------- Begin surgery on serial.unit
17288
17289 ALTER TABLE serial.unit
17290         DROP COLUMN label;
17291
17292 ALTER TABLE serial.unit
17293         RENAME COLUMN label_sort_key TO sort_key;
17294
17295 ALTER TABLE serial.unit
17296         RENAME COLUMN contents TO detailed_contents;
17297
17298 ALTER TABLE serial.unit
17299         ADD COLUMN summary_contents TEXT;
17300
17301 UPDATE serial.unit
17302 SET summary_contents = detailed_contents;
17303
17304 ALTER TABLE serial.unit
17305         ALTER column summary_contents SET NOT NULL;
17306
17307 ------- End surgery on serial.unit
17308
17309 -- 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' );
17310
17311 -- Now rebuild the constraints dropped via cascade.
17312 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
17313 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
17314 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
17315
17316 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
17317
17318 DELETE FROM config.metabib_field_index_norm_map
17319     WHERE norm IN (
17320         SELECT id 
17321             FROM config.index_normalizer
17322             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
17323     )
17324     AND field = 18
17325 ;
17326
17327 -- We won't necessarily use all of these, but they are here for completeness.
17328 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
17329 -- Values are the EDI code value + 1200
17330
17331 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
17332 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
17333 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
17334 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
17335 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
17336 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
17337 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
17338 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
17339 (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.'),
17340 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
17341 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
17342 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
17343 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
17344 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
17345 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
17346 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
17347 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
17348 (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.'),
17349 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
17350 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
17351 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
17352 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
17353 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
17354 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
17355 (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.'),
17356 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
17357 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
17358 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
17359 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
17360 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
17361 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
17362 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
17363 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
17364 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
17365 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
17366 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
17367 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
17368 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
17369 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
17370 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
17371 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
17372 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
17373 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
17374 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
17375 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
17376 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
17377 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
17378 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
17379 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
17380 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
17381 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
17382 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
17383 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
17384 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
17385 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
17386 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
17387 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
17388 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
17389 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
17390 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
17391 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
17392 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
17393 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
17394 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
17395 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
17396 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
17397 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
17398 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
17399 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
17400 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
17401 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
17402 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
17403 (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.'),
17404 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
17405 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
17406 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
17407 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
17408 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
17409 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
17410 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
17411 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
17412 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
17413 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
17414 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
17415 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
17416 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
17417 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
17418 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
17419 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
17420 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
17421 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
17422 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
17423 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
17424 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
17425 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
17426 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
17427 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
17428 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
17429 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
17430 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
17431 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
17432 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
17433 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
17434 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
17435 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
17436 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
17437 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
17438 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
17439 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
17440 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
17441 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
17442 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
17443 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
17444 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
17445 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
17446 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
17447 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
17448 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
17449 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
17450 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
17451 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
17452 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
17453 (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.'),
17454 (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.'),
17455 (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.'),
17456 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
17457 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
17458 (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.'),
17459 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
17460 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
17461 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
17462 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
17463 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
17464 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
17465 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
17466 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
17467 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
17468 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
17469 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
17470 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
17471 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
17472 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
17473 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
17474 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
17475 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
17476 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
17477 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
17478 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
17479 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
17480 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
17481 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
17482 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
17483 (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.'),
17484 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
17485 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
17486 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
17487 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
17488 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
17489 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
17490 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
17491 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
17492 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
17493 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
17494 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
17495 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
17496 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
17497 (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.'),
17498 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
17499 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
17500 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
17501 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
17502 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
17503 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
17504 (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.'),
17505 (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.'),
17506 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
17507 (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.'),
17508 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
17509 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
17510 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
17511 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
17512 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
17513 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
17514 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
17515 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
17516 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
17517 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
17518 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
17519 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
17520 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
17521 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
17522 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
17523 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
17524 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
17525 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
17526 (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.'),
17527 (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.'),
17528 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
17529 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
17530 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
17531 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
17532 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
17533 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
17534 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
17535 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
17536 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
17537 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
17538 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
17539 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
17540 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
17541 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
17542 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
17543 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
17544 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
17545 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
17546 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
17547 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
17548 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
17549 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
17550 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
17551 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
17552 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
17553 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
17554 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
17555 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
17556 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
17557 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
17558 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
17559 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
17560 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
17561 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
17562 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
17563 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
17564 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
17565 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
17566 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
17567 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
17568 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
17569 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
17570 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
17571 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17572 (1, 't', 1442, 'Number of months', 'The number of months.'),
17573 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17574 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17575 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17576 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17577 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17578 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17579 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17580 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17581 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17582 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17583 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17584 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17585 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17586 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17587 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17588 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17589 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17590 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17591 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17592 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17593 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17594 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17595 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17596 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17597 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17598 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17599 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17600 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17601 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17602 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17603 (1, 't', 1473, 'Agents', 'The number of agents.'),
17604 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17605 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17606 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17607 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17608 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17609 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17610 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17611 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17612 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17613 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17614 (1, 't', 1484, 'Departments', 'The number of departments.'),
17615 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17616 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17617 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17618 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17619 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17620 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17621 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17622 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17623 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17624 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17625 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17626 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17627 (1, 't', 1497, 'Executives', 'The number of executives.'),
17628 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17629 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17630 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17631 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17632 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17633 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17634 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17635 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17636 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17637 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17638 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17639 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17640 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17641 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17642 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17643 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17644 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17645 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17646 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17647 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17648 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17649 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17650 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17651 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17652 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17653 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17654 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17655 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17656 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17657 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17658 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17659 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17660 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17661 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17662 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17663 (1, 't', 1533, 'Seats',        'The number of seats.'),
17664 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17665 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17666 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17667 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17668 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17669 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17670 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17671 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17672 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17673 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17674 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17675 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17676 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17677 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17678 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17679 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17680 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17681 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17682 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17683 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17684 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17685 (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.'),
17686 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17687 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17688 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17689 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17690 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17691 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17692 (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.'),
17693 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17694 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17695 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17696 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17697 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17698 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17699 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17700 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17701 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17702 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17703 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17704 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17705 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17706 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17707 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17708 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17709 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17710 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17711 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17712 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17713 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17714 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17715 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17716 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17717 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17718 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17719 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17720 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17721 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17722 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17723 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17724 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17725 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17726 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17727 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17728 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17729 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17730 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17731 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17732 (1, 't', 1602, 'Patients',         'Number of patients.'),
17733 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17734 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17735 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17736 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17737 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17738 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17739 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17740 (1, 't', 1610, 'Operators',        'Number of operators.'),
17741 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17742 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17743 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17744 (1, 't', 1614, 'Machines',         'Number of machines.'),
17745 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17746 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17747 (1, 't', 1617, 'Directors',        'Number of directors.'),
17748 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17749 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17750 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17751 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17752 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17753 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17754 (1, 't', 1624, 'Beds', 'Number of beds.'),
17755 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17756 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17757 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17758 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17759 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17760 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17761 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17762 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17763 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17764 (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.'),
17765 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17766 (1, 't', 1636, 'Professor', 'The number of professors.'),
17767 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17768 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17769 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17770 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17771 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17772 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17773 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17774 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17775 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17776 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17777 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17778 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17779 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17780 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17781 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17782 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17783 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17784 (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.'),
17785 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17786 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17787 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17788 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17789 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17790 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17791 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17792 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17793 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17794 (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.'),
17795 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17796 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17797 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17798 (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.'),
17799 (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.'),
17800 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17801 (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.'),
17802 (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.'),
17803 (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.'),
17804 (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.'),
17805 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17806 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17807 (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.'),
17808 (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.'),
17809 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17810 (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.'),
17811 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17812 (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.'),
17813 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17814 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17815 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17816 (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).'),
17817 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17818 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17819 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17820 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17821 ;
17822 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17823
17824 CREATE TABLE acq.serial_claim (
17825     id     SERIAL           PRIMARY KEY,
17826     type   INT              NOT NULL REFERENCES acq.claim_type
17827                                      DEFERRABLE INITIALLY DEFERRED,
17828     item    BIGINT          NOT NULL REFERENCES serial.item
17829                                      DEFERRABLE INITIALLY DEFERRED
17830 );
17831
17832 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17833
17834 CREATE TABLE acq.serial_claim_event (
17835     id             BIGSERIAL        PRIMARY KEY,
17836     type           INT              NOT NULL REFERENCES acq.claim_event_type
17837                                              DEFERRABLE INITIALLY DEFERRED,
17838     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17839                                              DEFERRABLE INITIALLY DEFERRED,
17840     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17841     creator        INT              NOT NULL REFERENCES actor.usr
17842                                              DEFERRABLE INITIALLY DEFERRED,
17843     note           TEXT
17844 );
17845
17846 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
17847
17848 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
17849
17850 -- now what about the auditor.*_lifecycle views??
17851
17852 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17853     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
17854 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17855     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
17856 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
17857 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
17858
17859 CREATE TABLE asset.call_number_class (
17860     id             bigserial     PRIMARY KEY,
17861     name           TEXT          NOT NULL,
17862     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
17863     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17864 );
17865
17866 COMMENT ON TABLE asset.call_number_class IS $$
17867 Defines the call number normalization database functions in the "normalizer"
17868 column and the tag/subfield combinations to use to lookup the call number in
17869 the "field" column for a given classification scheme. Tag/subfield combinations
17870 are delimited by commas.
17871 $$;
17872
17873 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
17874     ('Generic', 'asset.label_normalizer_generic'),
17875     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
17876     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
17877 ;
17878
17879 -- Generic fields
17880 UPDATE asset.call_number_class
17881     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17882     WHERE id = 1
17883 ;
17884
17885 -- Dewey fields
17886 UPDATE asset.call_number_class
17887     SET field = '080ab,082ab'
17888     WHERE id = 2
17889 ;
17890
17891 -- LC fields
17892 UPDATE asset.call_number_class
17893     SET field = '050ab,055ab'
17894     WHERE id = 3
17895 ;
17896  
17897 ALTER TABLE asset.call_number
17898         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
17899                 REFERENCES asset.call_number_class(id)
17900                 DEFERRABLE INITIALLY DEFERRED;
17901
17902 ALTER TABLE asset.call_number
17903         ADD COLUMN label_sortkey TEXT;
17904
17905 CREATE INDEX asset_call_number_label_sortkey
17906         ON asset.call_number(oils_text_as_bytea(label_sortkey));
17907
17908 ALTER TABLE auditor.asset_call_number_history
17909         ADD COLUMN label_class BIGINT;
17910
17911 ALTER TABLE auditor.asset_call_number_history
17912         ADD COLUMN label_sortkey TEXT;
17913
17914 -- Pick up the new columns in dependent views
17915
17916 DROP VIEW auditor.asset_call_number_lifecycle;
17917
17918 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17919
17920 DROP VIEW auditor.asset_call_number_lifecycle;
17921
17922 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17923
17924 DROP VIEW IF EXISTS stats.fleshed_call_number;
17925
17926 CREATE VIEW stats.fleshed_call_number AS
17927         SELECT  cn.*,
17928             CAST(cn.create_date AS DATE) AS create_date_day,
17929         CAST(cn.edit_date AS DATE) AS edit_date_day,
17930         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
17931         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
17932             rd.item_lang,
17933                 rd.item_type,
17934                 rd.item_form
17935         FROM    asset.call_number cn
17936                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
17937
17938 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
17939 DECLARE
17940     sortkey        TEXT := '';
17941 BEGIN
17942     sortkey := NEW.label_sortkey;
17943
17944     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
17945        quote_literal( NEW.label ) || ')'
17946        FROM asset.call_number_class acnc
17947        WHERE acnc.id = NEW.label_class
17948        INTO sortkey;
17949
17950     NEW.label_sortkey = sortkey;
17951
17952     RETURN NEW;
17953 END;
17954 $func$ LANGUAGE PLPGSQL;
17955
17956 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
17957     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
17958     # thus could probably be considered a derived work, although nothing was
17959     # directly copied - but to err on the safe side of providing attribution:
17960     # Copyright (C) 2007 LibLime
17961     # Licensed under the GPL v2 or later
17962
17963     use strict;
17964     use warnings;
17965
17966     # Converts the callnumber to uppercase
17967     # Strips spaces from start and end of the call number
17968     # Converts anything other than letters, digits, and periods into underscores
17969     # Collapses multiple underscores into a single underscore
17970     my $callnum = uc(shift);
17971     $callnum =~ s/^\s//g;
17972     $callnum =~ s/\s$//g;
17973     $callnum =~ s/[^A-Z0-9_.]/_/g;
17974     $callnum =~ s/_{2,}/_/g;
17975
17976     return $callnum;
17977 $func$ LANGUAGE PLPERLU;
17978
17979 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
17980     # Derived from the Koha C4::ClassSortRoutine::Dewey module
17981     # Copyright (C) 2007 LibLime
17982     # Licensed under the GPL v2 or later
17983
17984     use strict;
17985     use warnings;
17986
17987     my $init = uc(shift);
17988     $init =~ s/^\s+//;
17989     $init =~ s/\s+$//;
17990     $init =~ s!/!!g;
17991     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
17992     my @tokens = split /\.|\s+/, $init;
17993     my $digit_group_count = 0;
17994     for (my $i = 0; $i <= $#tokens; $i++) {
17995         if ($tokens[$i] =~ /^\d+$/) {
17996             $digit_group_count++;
17997             if (2 == $digit_group_count) {
17998                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
17999                 $tokens[$i] =~ tr/ /0/;
18000             }
18001         }
18002     }
18003     my $key = join("_", @tokens);
18004     $key =~ s/[^\p{IsAlnum}_]//g;
18005
18006     return $key;
18007
18008 $func$ LANGUAGE PLPERLU;
18009
18010 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
18011     use strict;
18012     use warnings;
18013
18014     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
18015     # The author hopes to upload it to CPAN some day, which would make our lives easier
18016     use Library::CallNumber::LC;
18017
18018     my $callnum = Library::CallNumber::LC->new(shift);
18019     return $callnum->normalize();
18020
18021 $func$ LANGUAGE PLPERLU;
18022
18023 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$
18024 DECLARE
18025     ans RECORD;
18026     trans INT;
18027 BEGIN
18028     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;
18029
18030     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
18031         RETURN QUERY
18032         SELECT  ans.depth,
18033                 ans.id,
18034                 COUNT( av.id ),
18035                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18036                 COUNT( av.id ),
18037                 trans
18038           FROM
18039                 actor.org_unit_descendants(ans.id) d
18040                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18041                 JOIN asset.copy cp ON (cp.id = av.id)
18042           GROUP BY 1,2,6;
18043
18044         IF NOT FOUND THEN
18045             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18046         END IF;
18047
18048     END LOOP;
18049
18050     RETURN;
18051 END;
18052 $f$ LANGUAGE PLPGSQL;
18053
18054 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$
18055 DECLARE
18056     ans RECORD;
18057     trans INT;
18058 BEGIN
18059     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;
18060
18061     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18062         RETURN QUERY
18063         SELECT  -1,
18064                 ans.id,
18065                 COUNT( av.id ),
18066                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18067                 COUNT( av.id ),
18068                 trans
18069           FROM
18070                 actor.org_unit_descendants(ans.id) d
18071                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18072                 JOIN asset.copy cp ON (cp.id = av.id)
18073           GROUP BY 1,2,6;
18074
18075         IF NOT FOUND THEN
18076             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18077         END IF;
18078
18079     END LOOP;
18080
18081     RETURN;
18082 END;
18083 $f$ LANGUAGE PLPGSQL;
18084
18085 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$
18086 DECLARE
18087     ans RECORD;
18088     trans INT;
18089 BEGIN
18090     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;
18091
18092     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
18093         RETURN QUERY
18094         SELECT  ans.depth,
18095                 ans.id,
18096                 COUNT( cp.id ),
18097                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18098                 COUNT( cp.id ),
18099                 trans
18100           FROM
18101                 actor.org_unit_descendants(ans.id) d
18102                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18103                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18104           GROUP BY 1,2,6;
18105
18106         IF NOT FOUND THEN
18107             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18108         END IF;
18109
18110     END LOOP;
18111
18112     RETURN;
18113 END;
18114 $f$ LANGUAGE PLPGSQL;
18115
18116 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$
18117 DECLARE
18118     ans RECORD;
18119     trans INT;
18120 BEGIN
18121     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;
18122
18123     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18124         RETURN QUERY
18125         SELECT  -1,
18126                 ans.id,
18127                 COUNT( cp.id ),
18128                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18129                 COUNT( cp.id ),
18130                 trans
18131           FROM
18132                 actor.org_unit_descendants(ans.id) d
18133                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18134                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18135           GROUP BY 1,2,6;
18136
18137         IF NOT FOUND THEN
18138             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18139         END IF;
18140
18141     END LOOP;
18142
18143     RETURN;
18144 END;
18145 $f$ LANGUAGE PLPGSQL;
18146
18147 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$
18148 BEGIN
18149     IF staff IS TRUE THEN
18150         IF place > 0 THEN
18151             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
18152         ELSE
18153             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
18154         END IF;
18155     ELSE
18156         IF place > 0 THEN
18157             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
18158         ELSE
18159             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
18160         END IF;
18161     END IF;
18162
18163     RETURN;
18164 END;
18165 $f$ LANGUAGE PLPGSQL;
18166
18167 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$
18168 DECLARE
18169     ans RECORD;
18170     trans INT;
18171 BEGIN
18172     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;
18173
18174     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
18175         RETURN QUERY
18176         SELECT  ans.depth,
18177                 ans.id,
18178                 COUNT( av.id ),
18179                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18180                 COUNT( av.id ),
18181                 trans
18182           FROM
18183                 actor.org_unit_descendants(ans.id) d
18184                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18185                 JOIN asset.copy cp ON (cp.id = av.id)
18186                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18187           GROUP BY 1,2,6;
18188
18189         IF NOT FOUND THEN
18190             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18191         END IF;
18192
18193     END LOOP;
18194
18195     RETURN;
18196 END;
18197 $f$ LANGUAGE PLPGSQL;
18198
18199 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$
18200 DECLARE
18201     ans RECORD;
18202     trans INT;
18203 BEGIN
18204     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;
18205
18206     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18207         RETURN QUERY
18208         SELECT  -1,
18209                 ans.id,
18210                 COUNT( av.id ),
18211                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18212                 COUNT( av.id ),
18213                 trans
18214           FROM
18215                 actor.org_unit_descendants(ans.id) d
18216                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18217                 JOIN asset.copy cp ON (cp.id = av.id)
18218                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18219           GROUP BY 1,2,6;
18220
18221         IF NOT FOUND THEN
18222             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18223         END IF;
18224
18225     END LOOP;
18226
18227     RETURN;
18228 END;
18229 $f$ LANGUAGE PLPGSQL;
18230
18231 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$
18232 DECLARE
18233     ans RECORD;
18234     trans INT;
18235 BEGIN
18236     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;
18237
18238     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
18239         RETURN QUERY
18240         SELECT  ans.depth,
18241                 ans.id,
18242                 COUNT( cp.id ),
18243                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18244                 COUNT( cp.id ),
18245                 trans
18246           FROM
18247                 actor.org_unit_descendants(ans.id) d
18248                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18249                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18250                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18251           GROUP BY 1,2,6;
18252
18253         IF NOT FOUND THEN
18254             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18255         END IF;
18256
18257     END LOOP;
18258
18259     RETURN;
18260 END;
18261 $f$ LANGUAGE PLPGSQL;
18262
18263 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$
18264 DECLARE
18265     ans RECORD;
18266     trans INT;
18267 BEGIN
18268     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;
18269
18270     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18271         RETURN QUERY
18272         SELECT  -1,
18273                 ans.id,
18274                 COUNT( cp.id ),
18275                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18276                 COUNT( cp.id ),
18277                 trans
18278           FROM
18279                 actor.org_unit_descendants(ans.id) d
18280                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18281                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18282                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18283           GROUP BY 1,2,6;
18284
18285         IF NOT FOUND THEN
18286             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18287         END IF;
18288
18289     END LOOP;
18290
18291     RETURN;
18292 END;
18293 $f$ LANGUAGE PLPGSQL;
18294
18295 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$
18296 BEGIN
18297     IF staff IS TRUE THEN
18298         IF place > 0 THEN
18299             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
18300         ELSE
18301             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
18302         END IF;
18303     ELSE
18304         IF place > 0 THEN
18305             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
18306         ELSE
18307             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
18308         END IF;
18309     END IF;
18310
18311     RETURN;
18312 END;
18313 $f$ LANGUAGE PLPGSQL;
18314
18315 -- No transaction is required
18316
18317 -- Triggers on the vandelay.queued_*_record tables delete entries from
18318 -- the associated vandelay.queued_*_record_attr tables based on the record's
18319 -- ID; create an index on that column to avoid sequential scans for each
18320 -- queued record that is deleted
18321 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
18322 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
18323
18324 -- Avoid sequential scans for queue retrieval operations by providing an
18325 -- index on the queue column
18326 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
18327 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
18328
18329 -- Start picking up call number label prefixes and suffixes
18330 -- from asset.copy_location
18331 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
18332 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
18333
18334 DROP VIEW auditor.asset_copy_lifecycle;
18335
18336 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
18337
18338 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
18339
18340 -- Let's not break existing reports
18341 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
18342 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
18343
18344 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
18345 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
18346 SELECT  r.id,
18347     r.fingerprint,
18348     r.quality,
18349     r.tcn_source,
18350     r.tcn_value,
18351     FIRST(title.value) AS title,
18352     FIRST(author.value) AS author,
18353     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
18354     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
18355     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18356     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
18357   FROM  biblio.record_entry r
18358     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18359     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
18360     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18361     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18362     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18363     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18364   GROUP BY 1,2,3,4,5;
18365
18366 -- Correct the ISSN array definition for reporter.simple_record
18367
18368 CREATE OR REPLACE VIEW reporter.simple_record AS
18369 SELECT  r.id,
18370         s.metarecord,
18371         r.fingerprint,
18372         r.quality,
18373         r.tcn_source,
18374         r.tcn_value,
18375         title.value AS title,
18376         uniform_title.value AS uniform_title,
18377         author.value AS author,
18378         publisher.value AS publisher,
18379         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
18380         series_title.value AS series_title,
18381         series_statement.value AS series_statement,
18382         summary.value AS summary,
18383         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18384         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
18385         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
18386         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
18387         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
18388         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
18389         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
18390         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
18391   FROM  biblio.record_entry r
18392         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
18393         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
18394         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18395         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
18396         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18397         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18398         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18399         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18400         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')
18401         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
18402         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
18403   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
18404
18405 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
18406     DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
18407 $$ LANGUAGE SQL;
18408
18409 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
18410 BEGIN
18411     IF TG_OP = 'DELETE' THEN
18412         PERFORM reporter.simple_rec_delete(NEW.id);
18413     ELSE
18414         PERFORM reporter.simple_rec_update(NEW.id);
18415     END IF;
18416
18417     RETURN NEW;
18418 END;
18419 $func$ LANGUAGE PLPGSQL;
18420
18421 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
18422
18423 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
18424
18425 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
18426
18427 UPDATE config.org_unit_setting_type
18428     SET view_perm = (SELECT id FROM permission.perm_list
18429         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
18430     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
18431
18432 UPDATE config.org_unit_setting_type
18433     SET update_perm = (SELECT id FROM permission.perm_list
18434         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
18435     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
18436
18437 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
18438     VALUES (
18439         'opac.fully_compressed_serial_holdings',
18440         'OPAC: Use fully compressed serial holdings',
18441         'Show fully compressed serial holdings for all libraries at and below
18442         the current context unit',
18443         'bool'
18444     );
18445
18446 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
18447     use strict;
18448     use warnings;
18449
18450     use utf8;
18451     use MARC::Record;
18452     use MARC::File::XML (BinaryEncoding => 'UTF8');
18453     use UUID::Tiny ':std';
18454
18455     my $xml = shift() or return undef;
18456
18457     my $r;
18458
18459     # Prevent errors in XML parsing from blowing out ungracefully
18460     eval {
18461         $r = MARC::Record->new_from_xml( $xml );
18462         1;
18463     } or do {
18464        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18465     };
18466
18467     if (!$r) {
18468        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18469     }
18470
18471     # From http://www.loc.gov/standards/sourcelist/subject.html
18472     my $thes_code_map = {
18473         a => 'lcsh',
18474         b => 'lcshac',
18475         c => 'mesh',
18476         d => 'nal',
18477         k => 'cash',
18478         n => 'notapplicable',
18479         r => 'aat',
18480         s => 'sears',
18481         v => 'rvm',
18482     };
18483
18484     # Default to "No attempt to code" if the leader is horribly broken
18485     my $fixed_field = $r->field('008');
18486     my $thes_char = '|';
18487     if ($fixed_field) {
18488         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
18489     }
18490
18491     my $thes_code = 'UNDEFINED';
18492
18493     if ($thes_char eq 'z') {
18494         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
18495         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
18496     } elsif ($thes_code_map->{$thes_char}) {
18497         $thes_code = $thes_code_map->{$thes_char};
18498     }
18499
18500     my $auth_txt = '';
18501     my $head = $r->field('1..');
18502     if ($head) {
18503         # Concatenate all of these subfields together, prefixed by their code
18504         # to prevent collisions along the lines of "Fiction, North Carolina"
18505         foreach my $sf ($head->subfields()) {
18506             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
18507         }
18508     }
18509
18510     # Perhaps better to parameterize the spi and pass as a parameter
18511     $auth_txt =~ s/'//go;
18512
18513     if ($auth_txt) {
18514         my $result = spi_exec_query("SELECT public.naco_normalize('$auth_txt') AS norm_text");
18515         my $norm_txt = $result->{rows}[0]->{norm_text};
18516         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
18517     }
18518
18519     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
18520 $func$ LANGUAGE 'plperlu' IMMUTABLE;
18521
18522 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
18523 /**
18524 * Extract the authority heading, thesaurus, and NACO-normalized values
18525 * from an authority record. The primary purpose is to build a unique
18526 * index to defend against duplicated authority records from the same
18527 * thesaurus.
18528 */
18529 $$;
18530
18531 DROP INDEX authority.authority_record_unique_tcn;
18532 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
18533 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
18534
18535 ALTER TABLE acq.provider_contact
18536         ALTER COLUMN name SET NOT NULL;
18537
18538 ALTER TABLE actor.stat_cat
18539         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
18540
18541 -- Recreate some foreign keys that were somehow dropped, probably
18542 -- by some kind of cascade from an inherited table:
18543
18544 ALTER TABLE action.reservation_transit_copy
18545         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
18546                 REFERENCES booking.resource(id)
18547                 ON DELETE CASCADE
18548                 DEFERRABLE INITIALLY DEFERRED,
18549         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
18550                 REFERENCES booking.reservation(id)
18551                 ON DELETE SET NULL
18552                 DEFERRABLE INITIALLY DEFERRED;
18553
18554 CREATE INDEX user_bucket_item_target_user_idx
18555         ON container.user_bucket_item ( target_user );
18556
18557 CREATE INDEX m_c_t_collector_idx
18558         ON money.collections_tracker ( collector );
18559
18560 CREATE INDEX aud_actor_usr_address_hist_id_idx
18561         ON auditor.actor_usr_address_history ( id );
18562
18563 CREATE INDEX aud_actor_usr_hist_id_idx
18564         ON auditor.actor_usr_history ( id );
18565
18566 CREATE INDEX aud_asset_cn_hist_creator_idx
18567         ON auditor.asset_call_number_history ( creator );
18568
18569 CREATE INDEX aud_asset_cn_hist_editor_idx
18570         ON auditor.asset_call_number_history ( editor );
18571
18572 CREATE INDEX aud_asset_cp_hist_creator_idx
18573         ON auditor.asset_copy_history ( creator );
18574
18575 CREATE INDEX aud_asset_cp_hist_editor_idx
18576         ON auditor.asset_copy_history ( editor );
18577
18578 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18579         ON auditor.biblio_record_entry_history ( creator );
18580
18581 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18582         ON auditor.biblio_record_entry_history ( editor );
18583
18584 CREATE TABLE action.hold_request_note (
18585
18586     id     BIGSERIAL PRIMARY KEY,
18587     hold   BIGINT    NOT NULL REFERENCES action.hold_request (id)
18588                               ON DELETE CASCADE
18589                               DEFERRABLE INITIALLY DEFERRED,
18590     title  TEXT      NOT NULL,
18591     body   TEXT      NOT NULL,
18592     slip   BOOL      NOT NULL DEFAULT FALSE,
18593     pub    BOOL      NOT NULL DEFAULT FALSE,
18594     staff  BOOL      NOT NULL DEFAULT FALSE  -- created by staff
18595
18596 );
18597 CREATE INDEX ahrn_hold_idx ON action.hold_request_note (hold);
18598
18599 -- Tweak a constraint to add a CASCADE
18600
18601 ALTER TABLE action.hold_notification DROP CONSTRAINT hold_notification_hold_fkey;
18602
18603 ALTER TABLE action.hold_notification
18604         ADD CONSTRAINT hold_notification_hold_fkey
18605                 FOREIGN KEY (hold) REFERENCES action.hold_request (id)
18606                 ON DELETE CASCADE
18607                 DEFERRABLE INITIALLY DEFERRED;
18608
18609 CREATE TRIGGER asset_label_sortkey_trigger
18610     BEFORE UPDATE OR INSERT ON asset.call_number
18611     FOR EACH ROW EXECUTE PROCEDURE asset.label_normalizer();
18612
18613 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
18614 RETURNS VOID AS $$
18615 --
18616 -- Delete expired circulation bucket items for all users that have
18617 -- a setting for patron.max_reading_list_interval.
18618 --
18619 DECLARE
18620     today        TIMESTAMP WITH TIME ZONE;
18621     threshold    TIMESTAMP WITH TIME ZONE;
18622         usr_setting  RECORD;
18623 BEGIN
18624         SELECT date_trunc( 'day', now() ) INTO today;
18625         --
18626         FOR usr_setting in
18627                 SELECT
18628                         usr,
18629                         value
18630                 FROM
18631                         actor.usr_setting
18632                 WHERE
18633                         name = 'patron.max_reading_list_interval'
18634         LOOP
18635                 --
18636                 -- Make sure the setting is a valid interval
18637                 --
18638                 BEGIN
18639                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
18640                 EXCEPTION
18641                         WHEN OTHERS THEN
18642                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
18643                                         usr_setting.usr, usr_setting.value;
18644                                 CONTINUE;
18645                 END;
18646                 --
18647                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
18648                 --
18649         DELETE FROM container.copy_bucket_item
18650         WHERE
18651                 bucket IN
18652                 (
18653                     SELECT
18654                         id
18655                     FROM
18656                         container.copy_bucket
18657                     WHERE
18658                         owner = usr_setting.usr
18659                         AND btype = 'circ_history'
18660                 )
18661                 AND create_time < threshold;
18662         END LOOP;
18663         --
18664 END;
18665 $$ LANGUAGE plpgsql;
18666
18667 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
18668 /*
18669  * Delete expired circulation bucket items for all users that have
18670  * a setting for patron.max_reading_list_interval.
18671 */
18672 $$;
18673
18674 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
18675          ac_usr IN INTEGER
18676 ) RETURNS VOID AS $$
18677 --
18678 -- Delete old circulation bucket items for a specified user.
18679 -- "Old" means older than the interval specified by a
18680 -- user-level setting, if it is so specified.
18681 --
18682 DECLARE
18683     threshold TIMESTAMP WITH TIME ZONE;
18684 BEGIN
18685         -- Sanity check
18686         IF ac_usr IS NULL THEN
18687                 RETURN;
18688         END IF;
18689         -- Determine the threshold date that defines "old".  Subtract the
18690         -- interval from the system date, then truncate to midnight.
18691         SELECT
18692                 date_trunc( 
18693                         'day',
18694                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
18695                 )
18696         INTO
18697                 threshold
18698         FROM
18699                 actor.usr_setting
18700         WHERE
18701                 usr = ac_usr
18702                 AND name = 'patron.max_reading_list_interval';
18703         --
18704         IF threshold is null THEN
18705                 -- No interval defined; don't delete anything
18706                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
18707                 return;
18708         END IF;
18709         --
18710         -- RAISE NOTICE 'Date threshold: %', threshold;
18711         --
18712         -- Threshold found; do the delete
18713         delete from container.copy_bucket_item
18714         where
18715                 bucket in
18716                 (
18717                         select
18718                                 id
18719                         from
18720                                 container.copy_bucket
18721                         where
18722                                 owner = ac_usr
18723                                 and btype = 'circ_history'
18724                 )
18725                 and create_time < threshold;
18726         --
18727         RETURN;
18728 END;
18729 $$ LANGUAGE plpgsql;
18730
18731 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
18732 /*
18733  * Delete old circulation bucket items for a specified user.
18734  * "Old" means older than the interval specified by a
18735  * user-level setting, if it is so specified.
18736 */
18737 $$;
18738
18739 CREATE OR REPLACE VIEW reporter.hold_request_record AS
18740 SELECT  id,
18741     target,
18742     hold_type,
18743     CASE
18744         WHEN hold_type = 'T'
18745             THEN target
18746         WHEN hold_type = 'I'
18747             THEN (SELECT ssub.record_entry FROM serial.subscription ssub JOIN serial.issuance si ON (si.subscription = ssub.id) WHERE si.id = ahr.target)
18748         WHEN hold_type = 'V'
18749             THEN (SELECT cn.record FROM asset.call_number cn WHERE cn.id = ahr.target)
18750         WHEN hold_type IN ('C','R','F')
18751             THEN (SELECT cn.record FROM asset.call_number cn JOIN asset.copy cp ON (cn.id = cp.call_number) WHERE cp.id = ahr.target)
18752         WHEN hold_type = 'M'
18753             THEN (SELECT mr.master_record FROM metabib.metarecord mr WHERE mr.id = ahr.target)
18754     END AS bib_record
18755   FROM  action.hold_request ahr;
18756
18757 UPDATE  metabib.rec_descriptor
18758   SET   date1=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date1, ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
18759         date2=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date2, ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
18760
18761 -- Change some ints to bigints:
18762
18763 ALTER TABLE container.biblio_record_entry_bucket_item
18764         ALTER COLUMN target_biblio_record_entry SET DATA TYPE bigint;
18765
18766 ALTER TABLE vandelay.queued_bib_record
18767         ALTER COLUMN imported_as SET DATA TYPE bigint;
18768
18769 ALTER TABLE action.hold_copy_map
18770         ALTER COLUMN id SET DATA TYPE bigint;
18771
18772 -- Make due times get pushed to 23:59:59 on insert OR update
18773 DROP TRIGGER IF EXISTS push_due_date_tgr ON action.circulation;
18774 CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.push_circ_due_time();
18775
18776 COMMIT;
18777
18778 -- Some operations go outside of the transaction, because they may
18779 -- legitimately fail.
18780
18781 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
18782 \qecho doesn't exist; ignore those errors if they occur.
18783
18784 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
18785
18786 ALTER TABLE auditor.action_hold_request_history
18787 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
18788
18789 ALTER TABLE auditor.action_hold_request_history
18790 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
18791
18792 \qecho Outside of the transaction: adding indexes that may or may not exist.
18793 \qecho If any of these CREATE INDEX statements fails because the index already
18794 \qecho exists, ignore the failure.
18795
18796 CREATE INDEX acq_picklist_owner_idx   ON acq.picklist ( owner );
18797 CREATE INDEX acq_picklist_creator_idx ON acq.picklist ( creator );
18798 CREATE INDEX acq_picklist_editor_idx  ON acq.picklist ( editor );
18799 CREATE INDEX acq_po_note_creator_idx  ON acq.po_note ( creator );
18800 CREATE INDEX acq_po_note_editor_idx   ON acq.po_note ( editor );
18801 CREATE INDEX fund_alloc_allocator_idx ON acq.fund_allocation ( allocator );
18802 CREATE INDEX li_creator_idx   ON acq.lineitem ( creator );
18803 CREATE INDEX li_editor_idx    ON acq.lineitem ( editor );
18804 CREATE INDEX li_selector_idx  ON acq.lineitem ( selector );
18805 CREATE INDEX li_note_creator_idx  ON acq.lineitem_note ( creator );
18806 CREATE INDEX li_note_editor_idx   ON acq.lineitem_note ( editor );
18807 CREATE INDEX li_usr_attr_def_usr_idx  ON acq.lineitem_usr_attr_definition ( usr );
18808 CREATE INDEX po_editor_idx   ON acq.purchase_order ( editor );
18809 CREATE INDEX po_creator_idx  ON acq.purchase_order ( creator );
18810 CREATE INDEX acq_po_org_name_order_date_idx ON acq.purchase_order( ordering_agency, name, order_date );
18811 CREATE INDEX action_in_house_use_staff_idx  ON action.in_house_use ( staff );
18812 CREATE INDEX action_non_cat_circ_patron_idx ON action.non_cataloged_circulation ( patron );
18813 CREATE INDEX action_non_cat_circ_staff_idx  ON action.non_cataloged_circulation ( staff );
18814 CREATE INDEX action_survey_response_usr_idx ON action.survey_response ( usr );
18815 CREATE INDEX ahn_notify_staff_idx           ON action.hold_notification ( notify_staff );
18816 CREATE INDEX circ_all_usr_idx               ON action.circulation ( usr );
18817 CREATE INDEX circ_circ_staff_idx            ON action.circulation ( circ_staff );
18818 CREATE INDEX circ_checkin_staff_idx         ON action.circulation ( checkin_staff );
18819 CREATE INDEX hold_request_fulfillment_staff_idx ON action.hold_request ( fulfillment_staff );
18820 CREATE INDEX hold_request_requestor_idx     ON action.hold_request ( requestor );
18821 CREATE INDEX non_cat_in_house_use_staff_idx ON action.non_cat_in_house_use ( staff );
18822 CREATE INDEX actor_usr_note_creator_idx     ON actor.usr_note ( creator );
18823 CREATE INDEX actor_usr_standing_penalty_staff_idx ON actor.usr_standing_penalty ( staff );
18824 CREATE INDEX usr_org_unit_opt_in_staff_idx  ON actor.usr_org_unit_opt_in ( staff );
18825 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
18826 CREATE INDEX asset_copy_note_creator_idx    ON asset.copy_note ( creator );
18827 CREATE INDEX cp_creator_idx                 ON asset.copy ( creator );
18828 CREATE INDEX cp_editor_idx                  ON asset.copy ( editor );
18829
18830 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
18831
18832 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
18833
18834 \qecho If the following CREATE INDEX fails, It will be necessary to do some
18835 \qecho data cleanup as described in the comments.
18836
18837 CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
18838     ON authority.record_entry (authority.normalize_heading(marc))
18839         WHERE deleted IS FALSE or deleted = FALSE;
18840
18841 -- If the unique index fails, uncomment the following to create
18842 -- a regular index that will help find the duplicates in a hurry:
18843 --CREATE INDEX by_heading_and_thesaurus
18844 --    ON authority.record_entry (authority.normalize_heading(marc))
18845 --    WHERE deleted IS FALSE or deleted = FALSE
18846 --;
18847
18848 -- Then find the duplicates like so to get an idea of how much
18849 -- pain you're looking at to clean things up:
18850 --SELECT id, authority.normalize_heading(marc)
18851 --    FROM authority.record_entry
18852 --    WHERE authority.normalize_heading(marc) IN (
18853 --        SELECT authority.normalize_heading(marc)
18854 --        FROM authority.record_entry
18855 --        GROUP BY authority.normalize_heading(marc)
18856 --        HAVING COUNT(*) > 1
18857 --    )
18858 --;
18859
18860 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
18861 -- statement succeeds, drop the temporary index to avoid unnecessary
18862 -- duplication:
18863 -- DROP INDEX authority.by_heading_and_thesaurus;
18864
18865 \qecho Upgrade script completed.