]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/version-upgrade/1.6.1-2.0-upgrade-db.sql
467b7bbb0aa91e7dbdbfbc00aff4c14e92d6a6a7
[working/Evergreen.git] / Open-ILS / src / sql / Pg / version-upgrade / 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 -- ARG! VIM! '
15
16 ALTER TABLE permission.grp_perm_map        DROP CONSTRAINT grp_perm_map_perm_fkey;
17 ALTER TABLE permission.usr_perm_map        DROP CONSTRAINT usr_perm_map_perm_fkey;
18 ALTER TABLE permission.usr_object_perm_map DROP CONSTRAINT usr_object_perm_map_perm_fkey;
19 ALTER TABLE booking.resource_type          DROP CONSTRAINT brt_name_or_record_once_per_owner;
20 ALTER TABLE booking.resource_type          DROP CONSTRAINT brt_name_once_per_owner;
21
22 \qecho Before starting the transaction: create seed data for the asset.uri table
23 \qecho If the INSERT fails because the -1 value already exists, ignore the failure.
24 INSERT INTO asset.uri (id, href, active) VALUES (-1, 'http://example.com/fake', FALSE);
25
26 \qecho Beginning the transaction now
27
28 BEGIN;
29
30 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
31
32 -- Highest-numbered individual upgrade script incorporated herein:
33
34 INSERT INTO config.upgrade_log (version) VALUES ('0475');
35
36 -- Push the auri sequence in case it's out of date
37 -- Add 2 as the sequence value must be 1 or higher, and seed is -1
38 SELECT SETVAL('asset.uri_id_seq'::TEXT, (SELECT MAX(id) + 2 FROM asset.uri));
39
40 -- Remove some uses of the connectby() function from the tablefunc contrib module
41 CREATE OR REPLACE FUNCTION actor.org_unit_descendants( INT, INT ) RETURNS SETOF actor.org_unit AS $$
42     WITH RECURSIVE descendant_depth AS (
43         SELECT  ou.id,
44                 ou.parent_ou,
45                 out.depth
46           FROM  actor.org_unit ou
47                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
48                 JOIN anscestor_depth ad ON (ad.id = ou.id)
49           WHERE ad.depth = $2
50             UNION ALL
51         SELECT  ou.id,
52                 ou.parent_ou,
53                 out.depth
54           FROM  actor.org_unit ou
55                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
56                 JOIN descendant_depth ot ON (ot.id = ou.parent_ou)
57     ), anscestor_depth AS (
58         SELECT  ou.id,
59                 ou.parent_ou,
60                 out.depth
61           FROM  actor.org_unit ou
62                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
63           WHERE ou.id = $1
64             UNION ALL
65         SELECT  ou.id,
66                 ou.parent_ou,
67                 out.depth
68           FROM  actor.org_unit ou
69                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
70                 JOIN anscestor_depth ot ON (ot.parent_ou = ou.id)
71     ) SELECT ou.* FROM actor.org_unit ou JOIN descendant_depth USING (id);
72 $$ LANGUAGE SQL;
73
74 CREATE OR REPLACE FUNCTION actor.org_unit_descendants( INT ) RETURNS SETOF actor.org_unit AS $$
75     WITH RECURSIVE descendant_depth AS (
76         SELECT  ou.id,
77                 ou.parent_ou,
78                 out.depth
79           FROM  actor.org_unit ou
80                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
81           WHERE ou.id = $1
82             UNION ALL
83         SELECT  ou.id,
84                 ou.parent_ou,
85                 out.depth
86           FROM  actor.org_unit ou
87                 JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
88                 JOIN descendant_depth ot ON (ot.id = ou.parent_ou)
89     ) SELECT ou.* FROM actor.org_unit ou JOIN descendant_depth USING (id);
90 $$ LANGUAGE SQL;
91
92 CREATE OR REPLACE FUNCTION actor.org_unit_ancestors( INT ) RETURNS SETOF actor.org_unit AS $$
93     WITH RECURSIVE anscestor_depth AS (
94         SELECT  ou.id,
95                 ou.parent_ou
96           FROM  actor.org_unit ou
97           WHERE ou.id = $1
98             UNION ALL
99         SELECT  ou.id,
100                 ou.parent_ou
101           FROM  actor.org_unit ou
102                 JOIN anscestor_depth ot ON (ot.parent_ou = ou.id)
103     ) SELECT ou.* FROM actor.org_unit ou JOIN anscestor_depth USING (id);
104 $$ LANGUAGE SQL;
105
106 -- Support merge template buckets
107 INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('template_merge','Template Merge Container');
108
109 -- Recreate one of the constraints that we just dropped,
110 -- under a different name:
111
112 ALTER TABLE booking.resource_type
113         ALTER COLUMN record TYPE BIGINT;
114
115 ALTER TABLE booking.resource_type
116         ADD CONSTRAINT brt_name_and_record_once_per_owner UNIQUE(owner, name, record);
117
118 -- Now upgrade permission.perm_list.  This is fairly complicated.
119
120 -- Add ON UPDATE CASCADE to some foreign keys so that, when we renumber the
121 -- permissions, the dependents will follow and stay in sync:
122
123 ALTER TABLE permission.grp_perm_map ADD CONSTRAINT grp_perm_map_perm_fkey FOREIGN KEY (perm)
124     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
125
126 ALTER TABLE permission.usr_perm_map ADD CONSTRAINT usr_perm_map_perm_fkey FOREIGN KEY (perm)
127     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
128
129 ALTER TABLE permission.usr_object_perm_map ADD CONSTRAINT usr_object_perm_map_perm_fkey FOREIGN KEY (perm)
130     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
131
132 UPDATE permission.perm_list
133     SET code = 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow'
134     WHERE code = 'UPDATE_ORG_UNIT_SETTING.global.credit.allow';
135
136 -- The following UPDATES were originally in an individual upgrade script, but should
137 -- no longer be necessary now that the foreign key has an ON UPDATE CASCADE clause.
138 -- We retain the UPDATES here, commented out, as historical relics.
139
140 -- UPDATE permission.grp_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
141 -- UPDATE permission.usr_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
142
143 -- Spelling correction
144 UPDATE permission.perm_list SET code = 'ADMIN_RECURRING_FINE_RULE' WHERE code = 'ADMIN_RECURING_FINE_RULE';
145
146 -- Now we engage in a Great Renumbering of the permissions in permission.perm_list,
147 -- in order to clean up accumulated cruft.
148
149 -- The first step is to establish some triggers so that, when we change the id of a permission,
150 -- the associated translations are updated accordingly.
151
152 CREATE OR REPLACE FUNCTION oils_i18n_update_apply(old_ident TEXT, new_ident TEXT, hint TEXT) RETURNS VOID AS $_$
153 BEGIN
154
155     EXECUTE $$
156         UPDATE  config.i18n_core
157           SET   identity_value = $$ || quote_literal( new_ident ) || $$ 
158           WHERE fq_field LIKE '$$ || hint || $$.%' 
159                 AND identity_value = $$ || quote_literal( old_ident ) || $$;$$;
160
161     RETURN;
162
163 END;
164 $_$ LANGUAGE PLPGSQL;
165
166 CREATE OR REPLACE FUNCTION oils_i18n_id_tracking(/* hint */) RETURNS TRIGGER AS $_$
167 BEGIN
168     PERFORM oils_i18n_update_apply( OLD.id::TEXT, NEW.id::TEXT, TG_ARGV[0]::TEXT );
169     RETURN NEW;
170 END;
171 $_$ LANGUAGE PLPGSQL;
172
173 CREATE OR REPLACE FUNCTION oils_i18n_code_tracking(/* hint */) RETURNS TRIGGER AS $_$
174 BEGIN
175     PERFORM oils_i18n_update_apply( OLD.code::TEXT, NEW.code::TEXT, TG_ARGV[0]::TEXT );
176     RETURN NEW;
177 END;
178 $_$ LANGUAGE PLPGSQL;
179
180
181 CREATE TRIGGER maintain_perm_i18n_tgr
182     AFTER UPDATE ON permission.perm_list
183     FOR EACH ROW EXECUTE PROCEDURE oils_i18n_id_tracking('ppl');
184
185 -- Next, create a new table as a convenience for sloshing data back and forth,
186 -- and for recording which permission went where.  It looks just like
187 -- permission.perm_list, but with two extra columns: one for the old id, and one to
188 -- distinguish between predefined permissions and non-predefined permissions.
189
190 -- This table is, in effect, a temporary table, because we can drop it once the
191 -- upgrade is complete.  It is not technically temporary as far as PostgreSQL is
192 -- concerned, because we don't want it to disappear at the end of the session.
193 -- We keep it around so that we have a map showing the old id and the new id for
194 -- each permission.  However there is no IDL entry for it, nor is it defined
195 -- in the base sql files.
196
197 CREATE TABLE permission.temp_perm (
198         id          INT        PRIMARY KEY,
199         code        TEXT       UNIQUE,
200         description TEXT,
201         old_id      INT,
202         predefined  BOOL       NOT NULL DEFAULT TRUE
203 );
204
205 -- Populate the temp table with a definitive set of predefined permissions,
206 -- hard-coding the ids.
207
208 -- The first set of permissions is derived from the database, as loaded in a
209 -- loaded 1.6.1 database, plus a few changes previously applied in this upgrade
210 -- script.  The second set is derived from the IDL -- permissions that are referenced
211 -- in <permacrud> elements but not defined in the database.
212
213 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( -1, 'EVERYTHING',
214      '' );
215 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 1, 'OPAC_LOGIN',
216      'Allow a user to log in to the OPAC' );
217 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 2, 'STAFF_LOGIN',
218      'Allow a user to log in to the staff client' );
219 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 3, 'MR_HOLDS',
220      'Allow a user to create a metarecord holds' );
221 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 4, 'TITLE_HOLDS',
222      'Allow a user to place a hold at the title level' );
223 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 5, 'VOLUME_HOLDS',
224      'Allow a user to place a volume level hold' );
225 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 6, 'COPY_HOLDS',
226      'Allow a user to place a hold on a specific copy' );
227 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 7, 'REQUEST_HOLDS',
228      '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)' );
229 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 8, 'REQUEST_HOLDS_OVERRIDE',
230      '* no longer applicable' );
231 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 9, 'VIEW_HOLD',
232      'Allow a user to view another user''s holds' );
233 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 10, 'DELETE_HOLDS',
234      '* no longer applicable' );
235 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 11, 'UPDATE_HOLD',
236      'Allow a user to update another user''s hold' );
237 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 12, 'RENEW_CIRC',
238      'Allow a user to renew items' );
239 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 13, 'VIEW_USER_FINES_SUMMARY',
240      'Allow a user to view bill details' );
241 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 14, 'VIEW_USER_TRANSACTIONS',
242      'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION' );
243 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 15, 'UPDATE_MARC',
244      'Allow a user to edit a MARC record' );
245 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 16, 'CREATE_MARC',
246      'Allow a user to create new MARC records' );
247 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 17, 'IMPORT_MARC',
248      'Allow a user to import a MARC record via the Z39.50 interface' );
249 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 18, 'CREATE_VOLUME',
250      'Allow a user to create a volume' );
251 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 19, 'UPDATE_VOLUME',
252      '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.' );
253 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 20, 'DELETE_VOLUME',
254      'Allow a user to delete a volume' );
255 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 21, 'CREATE_COPY',
256      'Allow a user to create a new copy object' );
257 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 22, 'UPDATE_COPY',
258      'Allow a user to edit a copy' );
259 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 23, 'DELETE_COPY',
260      'Allow a user to delete a copy' );
261 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 24, 'RENEW_HOLD_OVERRIDE',
262      'Allow a user to continue to renew an item even if it is required for a hold' );
263 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 25, 'CREATE_USER',
264      'Allow a user to create another user' );
265 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 26, 'UPDATE_USER',
266      'Allow a user to edit a user''s record' );
267 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 27, 'DELETE_USER',
268      'Allow a user to mark a user as deleted' );
269 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 28, 'VIEW_USER',
270      'Allow a user to view another user''s Patron Record' );
271 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 29, 'COPY_CHECKIN',
272      'Allow a user to check in a copy' );
273 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 30, 'CREATE_TRANSIT',
274      'Allow a user to place an item in transit' );
275 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 31, 'VIEW_PERMISSION',
276      'Allow a user to view user permissions within the user permissions editor' );
277 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL',
278      '* no longer applicable' );
279 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 33, 'CREATE_PAYMENT',
280      'Allow a user to record payments in the Billing Interface' );
281 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 34, 'SET_CIRC_LOST',
282      'Allow a user to mark an item as ''lost''' );
283 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 35, 'SET_CIRC_MISSING',
284      'Allow a user to mark an item as ''missing''' );
285 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 36, 'SET_CIRC_CLAIMS_RETURNED',
286      'Allow a user to mark an item as ''claims returned''' );
287 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 37, 'CREATE_TRANSACTION',
288      'Allow a user to create a new billable transaction' );
289 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 38, 'VIEW_TRANSACTION',
290      'Allow a user may view another user''s transactions' );
291 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 39, 'CREATE_BILL',
292      'Allow a user to create a new bill on a transaction' );
293 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 40, 'VIEW_CONTAINER',
294      'Allow a user to view another user''s containers (buckets)' );
295 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 41, 'CREATE_CONTAINER',
296      'Allow a user to create a new container for another user' );
297 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 42, 'UPDATE_ORG_UNIT',
298      'Allow a user to change the settings for an organization unit' );
299 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 43, 'VIEW_CIRCULATIONS',
300      'Allow a user to see what another user has checked out' );
301 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 44, 'DELETE_CONTAINER',
302      'Allow a user to delete another user''s container' );
303 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 45, 'CREATE_CONTAINER_ITEM',
304      'Allow a user to create a container item for another user' );
305 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 46, 'CREATE_USER_GROUP_LINK',
306      'Allow a user to add other users to permission groups' );
307 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 47, 'REMOVE_USER_GROUP_LINK',
308      'Allow a user to remove other users from permission groups' );
309 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 48, 'VIEW_PERM_GROUPS',
310      'Allow a user to view other users'' permission groups' );
311 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 49, 'VIEW_PERMIT_CHECKOUT',
312      'Allow a user to determine whether another user can check out an item' );
313 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 50, 'UPDATE_BATCH_COPY',
314      'Allow a user to edit copies in batch' );
315 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 51, 'CREATE_PATRON_STAT_CAT',
316      'User may create a new patron statistical category' );
317 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 52, 'CREATE_COPY_STAT_CAT',
318      'User may create a copy statistical category' );
319 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY',
320      'User may create an entry in a patron statistical category' );
321 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 54, 'CREATE_COPY_STAT_CAT_ENTRY',
322      'User may create an entry in a copy statistical category' );
323 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 55, 'UPDATE_PATRON_STAT_CAT',
324      'User may update a patron statistical category' );
325 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 56, 'UPDATE_COPY_STAT_CAT',
326      'User may update a copy statistical category' );
327 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY',
328      'User may update an entry in a patron statistical category' );
329 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY',
330      'User may update an entry in a copy statistical category' );
331 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
332      'User may link another user to an entry in a statistical category' );
333 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP',
334      'User may link a copy to an entry in a statistical category' );
335 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 61, 'DELETE_PATRON_STAT_CAT',
336      'User may delete a patron statistical category' );
337 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 62, 'DELETE_COPY_STAT_CAT',
338      'User may delete a copy statistical category' );
339 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY',
340      'User may delete an entry from a patron statistical category' );
341 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 64, 'DELETE_COPY_STAT_CAT_ENTRY',
342      'User may delete an entry from a copy statistical category' );
343 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
344      'User may delete a patron statistical category entry map' );
345 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP',
346      'User may delete a copy statistical category entry map' );
347 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 67, 'CREATE_NON_CAT_TYPE',
348      'Allow a user to create a new non-cataloged item type' );
349 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 68, 'UPDATE_NON_CAT_TYPE',
350      'Allow a user to update a non-cataloged item type' );
351 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 69, 'CREATE_IN_HOUSE_USE',
352      'Allow a user to create a new in-house-use ' );
353 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 70, 'COPY_CHECKOUT',
354      'Allow a user to check out a copy' );
355 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 71, 'CREATE_COPY_LOCATION',
356      'Allow a user to create a new copy location' );
357 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 72, 'UPDATE_COPY_LOCATION',
358      'Allow a user to update a copy location' );
359 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 73, 'DELETE_COPY_LOCATION',
360      'Allow a user to delete a copy location' );
361 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 74, 'CREATE_COPY_TRANSIT',
362      'Allow a user to create a transit_copy object for transiting a copy' );
363 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 75, 'COPY_TRANSIT_RECEIVE',
364      'Allow a user to close out a transit on a copy' );
365 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 76, 'VIEW_HOLD_PERMIT',
366      'Allow a user to see if another user has permission to place a hold on a given copy' );
367 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 77, 'VIEW_COPY_CHECKOUT_HISTORY',
368      'Allow a user to view which users have checked out a given copy' );
369 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 78, 'REMOTE_Z3950_QUERY',
370      'Allow a user to perform Z39.50 queries against remote servers' );
371 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 79, 'REGISTER_WORKSTATION',
372      'Allow a user to register a new workstation' );
373 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 80, 'VIEW_COPY_NOTES',
374      'Allow a user to view all notes attached to a copy' );
375 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 81, 'VIEW_VOLUME_NOTES',
376      'Allow a user to view all notes attached to a volume' );
377 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 82, 'VIEW_TITLE_NOTES',
378      'Allow a user to view all notes attached to a title' );
379 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 83, 'CREATE_COPY_NOTE',
380      'Allow a user to create a new copy note' );
381 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 84, 'CREATE_VOLUME_NOTE',
382      'Allow a user to create a new volume note' );
383 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 85, 'CREATE_TITLE_NOTE',
384      'Allow a user to create a new title note' );
385 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 86, 'DELETE_COPY_NOTE',
386      'Allow a user to delete another user''s copy notes' );
387 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 87, 'DELETE_VOLUME_NOTE',
388      'Allow a user to delete another user''s volume note' );
389 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 88, 'DELETE_TITLE_NOTE',
390      'Allow a user to delete another user''s title note' );
391 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 89, 'UPDATE_CONTAINER',
392      'Allow a user to update another user''s container' );
393 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 90, 'CREATE_MY_CONTAINER',
394      'Allow a user to create a container for themselves' );
395 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 91, 'VIEW_HOLD_NOTIFICATION',
396      'Allow a user to view notifications attached to a hold' );
397 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 92, 'CREATE_HOLD_NOTIFICATION',
398      'Allow a user to create new hold notifications' );
399 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 93, 'UPDATE_ORG_SETTING',
400      'Allow a user to update an organization unit setting' );
401 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 94, 'OFFLINE_UPLOAD',
402      'Allow a user to upload an offline script' );
403 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 95, 'OFFLINE_VIEW',
404      'Allow a user to view uploaded offline script information' );
405 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 96, 'OFFLINE_EXECUTE',
406      'Allow a user to execute an offline script batch' );
407 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 97, 'CIRC_OVERRIDE_DUE_DATE',
408      'Allow a user to change the due date on an item to any date' );
409 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 98, 'CIRC_PERMIT_OVERRIDE',
410      'Allow a user to bypass the circulation permit call for check out' );
411 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 99, 'COPY_IS_REFERENCE.override',
412      'Allow a user to override the copy_is_reference event' );
413 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 100, 'VOID_BILLING',
414      'Allow a user to void a bill' );
415 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 101, 'CIRC_CLAIMS_RETURNED.override',
416      'Allow a user to check in or check out an item that has a status of ''claims returned''' );
417 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 102, 'COPY_BAD_STATUS.override',
418      'Allow a user to check out an item in a non-circulatable status' );
419 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 103, 'COPY_ALERT_MESSAGE.override',
420      'Allow a user to check in/out an item that has an alert message' );
421 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 104, 'COPY_STATUS_LOST.override',
422      'Allow a user to remove the lost status from a copy' );
423 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 105, 'COPY_STATUS_MISSING.override',
424      'Allow a user to change the missing status on a copy' );
425 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 106, 'ABORT_TRANSIT',
426      'Allow a user to abort a copy transit if the user is at the transit destination or source' );
427 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 107, 'ABORT_REMOTE_TRANSIT',
428      'Allow a user to abort a copy transit if the user is not at the transit source or dest' );
429 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 108, 'VIEW_ZIP_DATA',
430      'Allow a user to query the ZIP code data method' );
431 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 109, 'CANCEL_HOLDS',
432      'Allow a user to cancel holds' );
433 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 110, 'CREATE_DUPLICATE_HOLDS',
434      'Allow a user to create duplicate holds (two or more holds on the same title)' );
435 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 111, 'actor.org_unit.closed_date.delete',
436      'Allow a user to remove a closed date interval for a given location' );
437 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 112, 'actor.org_unit.closed_date.update',
438      'Allow a user to update a closed date interval for a given location' );
439 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 113, 'actor.org_unit.closed_date.create',
440      'Allow a user to create a new closed date for a location' );
441 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 114, 'DELETE_NON_CAT_TYPE',
442      'Allow a user to delete a non cataloged type' );
443 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 115, 'money.collections_tracker.create',
444      'Allow a user to put someone into collections' );
445 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 116, 'money.collections_tracker.delete',
446      'Allow a user to remove someone from collections' );
447 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 117, 'BAR_PATRON',
448      'Allow a user to bar a patron' );
449 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 118, 'UNBAR_PATRON',
450      'Allow a user to un-bar a patron' );
451 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 119, 'DELETE_WORKSTATION',
452      'Allow a user to remove an existing workstation so a new one can replace it' );
453 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 120, 'group_application.user',
454      'Allow a user to add/remove users to/from the "User" group' );
455 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 121, 'group_application.user.patron',
456      'Allow a user to add/remove users to/from the "Patron" group' );
457 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 122, 'group_application.user.staff',
458      'Allow a user to add/remove users to/from the "Staff" group' );
459 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 123, 'group_application.user.staff.circ',
460      'Allow a user to add/remove users to/from the "Circulator" group' );
461 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 124, 'group_application.user.staff.cat',
462      'Allow a user to add/remove users to/from the "Cataloger" group' );
463 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 125, 'group_application.user.staff.admin.global_admin',
464      'Allow a user to add/remove users to/from the "GlobalAdmin" group' );
465 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 126, 'group_application.user.staff.admin.local_admin',
466      'Allow a user to add/remove users to/from the "LocalAdmin" group' );
467 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 127, 'group_application.user.staff.admin.lib_manager',
468      'Allow a user to add/remove users to/from the "LibraryManager" group' );
469 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 128, 'group_application.user.staff.cat.cat1',
470      'Allow a user to add/remove users to/from the "Cat1" group' );
471 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 129, 'group_application.user.staff.supercat',
472      'Allow a user to add/remove users to/from the "Supercat" group' );
473 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 130, 'group_application.user.sip_client',
474      'Allow a user to add/remove users to/from the "SIP-Client" group' );
475 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 131, 'group_application.user.vendor',
476      'Allow a user to add/remove users to/from the "Vendor" group' );
477 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 132, 'ITEM_AGE_PROTECTED.override',
478      'Allow a user to place a hold on an age-protected item' );
479 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 133, 'MAX_RENEWALS_REACHED.override',
480      'Allow a user to renew an item past the maximum renewal count' );
481 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
482      'Allow staff to override checkout count failure' );
483 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override',
484      'Allow staff to override overdue count failure' );
485 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 136, 'PATRON_EXCEEDS_FINES.override',
486      'Allow staff to override fine amount checkout failure' );
487 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override',
488      'Allow staff to override circulation copy range failure' );
489 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 138, 'ITEM_ON_HOLDS_SHELF.override',
490      'Allow staff to override item on holds shelf failure' );
491 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 139, 'COPY_NOT_AVAILABLE.override',
492      'Allow staff to force checkout of Missing/Lost type items' );
493 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 140, 'HOLD_EXISTS.override',
494      'Allow a user to place multiple holds on a single title' );
495 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 141, 'RUN_REPORTS',
496      'Allow a user to run reports' );
497 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 142, 'SHARE_REPORT_FOLDER',
498      'Allow a user to share report his own folders' );
499 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 143, 'VIEW_REPORT_OUTPUT',
500      'Allow a user to view report output' );
501 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 144, 'COPY_CIRC_NOT_ALLOWED.override',
502      'Allow a user to checkout an item that is marked as non-circ' );
503 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 145, 'DELETE_CONTAINER_ITEM',
504      'Allow a user to delete an item out of another user''s container' );
505 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 146, 'ASSIGN_WORK_ORG_UNIT',
506      'Allow a staff member to define where another staff member has their permissions' );
507 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 147, 'CREATE_FUNDING_SOURCE',
508      'Allow a user to create a new funding source' );
509 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 148, 'DELETE_FUNDING_SOURCE',
510      'Allow a user to delete a funding source' );
511 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 149, 'VIEW_FUNDING_SOURCE',
512      'Allow a user to view a funding source' );
513 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 150, 'UPDATE_FUNDING_SOURCE',
514      'Allow a user to update a funding source' );
515 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 151, 'CREATE_FUND',
516      'Allow a user to create a new fund' );
517 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 152, 'DELETE_FUND',
518      'Allow a user to delete a fund' );
519 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 153, 'VIEW_FUND',
520      'Allow a user to view a fund' );
521 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 154, 'UPDATE_FUND',
522      'Allow a user to update a fund' );
523 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 155, 'CREATE_FUND_ALLOCATION',
524      'Allow a user to create a new fund allocation' );
525 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 156, 'DELETE_FUND_ALLOCATION',
526      'Allow a user to delete a fund allocation' );
527 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 157, 'VIEW_FUND_ALLOCATION',
528      'Allow a user to view a fund allocation' );
529 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 158, 'UPDATE_FUND_ALLOCATION',
530      'Allow a user to update a fund allocation' );
531 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 159, 'GENERAL_ACQ',
532      'Lowest level permission required to access the ACQ interface' );
533 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 160, 'CREATE_PROVIDER',
534      'Allow a user to create a new provider' );
535 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 161, 'DELETE_PROVIDER',
536      'Allow a user to delate a provider' );
537 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 162, 'VIEW_PROVIDER',
538      'Allow a user to view a provider' );
539 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 163, 'UPDATE_PROVIDER',
540      'Allow a user to update a provider' );
541 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 164, 'ADMIN_FUNDING_SOURCE',
542      'Allow a user to create/view/update/delete a funding source' );
543 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 165, 'ADMIN_FUND',
544      '(Deprecated) Allow a user to create/view/update/delete a fund' );
545 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 166, 'MANAGE_FUNDING_SOURCE',
546      'Allow a user to view/credit/debit a funding source' );
547 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 167, 'MANAGE_FUND',
548      'Allow a user to view/credit/debit a fund' );
549 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 168, 'CREATE_PICKLIST',
550      'Allows a user to create a picklist' );
551 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 169, 'ADMIN_PROVIDER',
552      'Allow a user to create/view/update/delete a provider' );
553 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 170, 'MANAGE_PROVIDER',
554      'Allow a user to view and purchase from a provider' );
555 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 171, 'VIEW_PICKLIST',
556      'Allow a user to view another users picklist' );
557 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 172, 'DELETE_RECORD',
558      'Allow a staff member to directly remove a bibliographic record' );
559 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 173, 'ADMIN_CURRENCY_TYPE',
560      'Allow a user to create/view/update/delete a currency_type' );
561 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 174, 'MARK_BAD_DEBT',
562      'Allow a user to mark a transaction as bad (unrecoverable) debt' );
563 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 175, 'VIEW_BILLING_TYPE',
564      'Allow a user to view billing types' );
565 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 176, 'MARK_ITEM_AVAILABLE',
566      'Allow a user to mark an item status as ''available''' );
567 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 177, 'MARK_ITEM_CHECKED_OUT',
568      'Allow a user to mark an item status as ''checked out''' );
569 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 178, 'MARK_ITEM_BINDERY',
570      'Allow a user to mark an item status as ''bindery''' );
571 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 179, 'MARK_ITEM_LOST',
572      'Allow a user to mark an item status as ''lost''' );
573 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 180, 'MARK_ITEM_MISSING',
574      'Allow a user to mark an item status as ''missing''' );
575 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 181, 'MARK_ITEM_IN_PROCESS',
576      'Allow a user to mark an item status as ''in process''' );
577 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 182, 'MARK_ITEM_IN_TRANSIT',
578      'Allow a user to mark an item status as ''in transit''' );
579 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 183, 'MARK_ITEM_RESHELVING',
580      'Allow a user to mark an item status as ''reshelving''' );
581 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 184, 'MARK_ITEM_ON_HOLDS_SHELF',
582      'Allow a user to mark an item status as ''on holds shelf''' );
583 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 185, 'MARK_ITEM_ON_ORDER',
584      'Allow a user to mark an item status as ''on order''' );
585 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 186, 'MARK_ITEM_ILL',
586      'Allow a user to mark an item status as ''inter-library loan''' );
587 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 187, 'group_application.user.staff.acq',
588      'Allows a user to add/remove/edit users in the "ACQ" group' );
589 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 188, 'CREATE_PURCHASE_ORDER',
590      'Allows a user to create a purchase order' );
591 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 189, 'VIEW_PURCHASE_ORDER',
592      'Allows a user to view a purchase order' );
593 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
594      'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set' );
595 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 191, 'RECEIVE_PURCHASE_ORDER',
596      'Allows a user to mark a purchase order, lineitem, or individual copy as received' );
597 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 192, 'VIEW_ORG_SETTINGS',
598      'Allows a user to view all org settings at the specified level' );
599 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 193, 'CREATE_MFHD_RECORD',
600      'Allows a user to create a new MFHD record' );
601 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 194, 'UPDATE_MFHD_RECORD',
602      'Allows a user to update an MFHD record' );
603 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 195, 'DELETE_MFHD_RECORD',
604      'Allows a user to delete an MFHD record' );
605 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 196, 'ADMIN_ACQ_FUND',
606      'Allow a user to create/view/update/delete a fund' );
607 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 197, 'group_application.user.staff.acq_admin',
608      'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group' );
609 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 198, 'SET_CIRC_CLAIMS_RETURNED.override',
610      'Allows staff to override the max claims returned value for a patron' );
611 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
612      'Allows staff to manually change a patron''s claims returned count' );
613 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 200, 'UPDATE_BILL_NOTE',
614      'Allows staff to edit the note for a bill on a transaction' );
615 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 201, 'UPDATE_PAYMENT_NOTE',
616      'Allows staff to edit the note for a payment on a transaction' );
617 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
618      'Allows staff to manually change a patron''s claims never checkout out count' );
619 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 203, 'ADMIN_COPY_LOCATION_ORDER',
620      'Allow a user to create/view/update/delete a copy location order' );
621 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 204, 'ASSIGN_GROUP_PERM',
622      '' );
623 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 205, 'CREATE_AUDIENCE',
624      '' );
625 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 206, 'CREATE_BIB_LEVEL',
626      '' );
627 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 207, 'CREATE_CIRC_DURATION',
628      '' );
629 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 208, 'CREATE_CIRC_MOD',
630      '' );
631 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 209, 'CREATE_COPY_STATUS',
632      '' );
633 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 210, 'CREATE_HOURS_OF_OPERATION',
634      '' );
635 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 211, 'CREATE_ITEM_FORM',
636      '' );
637 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 212, 'CREATE_ITEM_TYPE',
638      '' );
639 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 213, 'CREATE_LANGUAGE',
640      '' );
641 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 214, 'CREATE_LASSO',
642      '' );
643 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 215, 'CREATE_LASSO_MAP',
644      '' );
645 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 216, 'CREATE_LIT_FORM',
646      '' );
647 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 217, 'CREATE_METABIB_FIELD',
648      '' );
649 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 218, 'CREATE_NET_ACCESS_LEVEL',
650      '' );
651 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 219, 'CREATE_ORG_ADDRESS',
652      '' );
653 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 220, 'CREATE_ORG_TYPE',
654      '' );
655 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 221, 'CREATE_ORG_UNIT',
656      '' );
657 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 222, 'CREATE_ORG_UNIT_CLOSING',
658      '' );
659 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 223, 'CREATE_PERM',
660      '' );
661 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 224, 'CREATE_RELEVANCE_ADJUSTMENT',
662      '' );
663 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 225, 'CREATE_SURVEY',
664      '' );
665 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 226, 'CREATE_VR_FORMAT',
666      '' );
667 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 227, 'CREATE_XML_TRANSFORM',
668      '' );
669 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 228, 'DELETE_AUDIENCE',
670      '' );
671 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 229, 'DELETE_BIB_LEVEL',
672      '' );
673 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 230, 'DELETE_CIRC_DURATION',
674      '' );
675 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 231, 'DELETE_CIRC_MOD',
676      '' );
677 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 232, 'DELETE_COPY_STATUS',
678      '' );
679 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 233, 'DELETE_HOURS_OF_OPERATION',
680      '' );
681 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 234, 'DELETE_ITEM_FORM',
682      '' );
683 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 235, 'DELETE_ITEM_TYPE',
684      '' );
685 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 236, 'DELETE_LANGUAGE',
686      '' );
687 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 237, 'DELETE_LASSO',
688      '' );
689 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 238, 'DELETE_LASSO_MAP',
690      '' );
691 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 239, 'DELETE_LIT_FORM',
692      '' );
693 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 240, 'DELETE_METABIB_FIELD',
694      '' );
695 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 241, 'DELETE_NET_ACCESS_LEVEL',
696      '' );
697 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 242, 'DELETE_ORG_ADDRESS',
698      '' );
699 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 243, 'DELETE_ORG_TYPE',
700      '' );
701 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 244, 'DELETE_ORG_UNIT',
702      '' );
703 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 245, 'DELETE_ORG_UNIT_CLOSING',
704      '' );
705 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 246, 'DELETE_PERM',
706      '' );
707 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 247, 'DELETE_RELEVANCE_ADJUSTMENT',
708      '' );
709 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 248, 'DELETE_SURVEY',
710      '' );
711 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 249, 'DELETE_TRANSIT',
712      '' );
713 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 250, 'DELETE_VR_FORMAT',
714      '' );
715 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 251, 'DELETE_XML_TRANSFORM',
716      '' );
717 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 252, 'REMOVE_GROUP_PERM',
718      '' );
719 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 253, 'TRANSIT_COPY',
720      '' );
721 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 254, 'UPDATE_AUDIENCE',
722      '' );
723 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 255, 'UPDATE_BIB_LEVEL',
724      '' );
725 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 256, 'UPDATE_CIRC_DURATION',
726      '' );
727 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 257, 'UPDATE_CIRC_MOD',
728      '' );
729 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 258, 'UPDATE_COPY_NOTE',
730      '' );
731 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 259, 'UPDATE_COPY_STATUS',
732      '' );
733 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 260, 'UPDATE_GROUP_PERM',
734      '' );
735 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 261, 'UPDATE_HOURS_OF_OPERATION',
736      '' );
737 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 262, 'UPDATE_ITEM_FORM',
738      '' );
739 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 263, 'UPDATE_ITEM_TYPE',
740      '' );
741 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 264, 'UPDATE_LANGUAGE',
742      '' );
743 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 265, 'UPDATE_LASSO',
744      '' );
745 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 266, 'UPDATE_LASSO_MAP',
746      '' );
747 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 267, 'UPDATE_LIT_FORM',
748      '' );
749 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 268, 'UPDATE_METABIB_FIELD',
750      '' );
751 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 269, 'UPDATE_NET_ACCESS_LEVEL',
752      '' );
753 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 270, 'UPDATE_ORG_ADDRESS',
754      '' );
755 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 271, 'UPDATE_ORG_TYPE',
756      '' );
757 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 272, 'UPDATE_ORG_UNIT_CLOSING',
758      '' );
759 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 273, 'UPDATE_PERM',
760      '' );
761 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT',
762      '' );
763 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 275, 'UPDATE_SURVEY',
764      '' );
765 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 276, 'UPDATE_TRANSIT',
766      '' );
767 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 277, 'UPDATE_VOLUME_NOTE',
768      '' );
769 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 278, 'UPDATE_VR_FORMAT',
770      '' );
771 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 279, 'UPDATE_XML_TRANSFORM',
772      '' );
773 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 280, 'MERGE_BIB_RECORDS',
774      '' );
775 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
776      '' );
777 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 282, 'CREATE_ACQ_FUNDING_SOURCE',
778      '' );
779 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
780      '' );
781 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE',
782      '' );
783 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 285, 'CREATE_AUTHORITY_RECORD_NOTE',
784      '' );
785 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF',
786      '' );
787 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 287, 'CREATE_BIB_IMPORT_QUEUE',
788      '' );
789 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 288, 'CREATE_LOCALE',
790      '' );
791 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 289, 'CREATE_MARC_CODE',
792      '' );
793 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 290, 'CREATE_TRANSLATION',
794      '' );
795 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 291, 'DELETE_ACQ_FUNDING_SOURCE',
796      '' );
797 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
798      '' );
799 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE',
800      '' );
801 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 294, 'DELETE_AUTHORITY_RECORD_NOTE',
802      '' );
803 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF',
804      '' );
805 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 296, 'DELETE_BIB_IMPORT_QUEUE',
806      '' );
807 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 297, 'DELETE_LOCALE',
808      '' );
809 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 298, 'DELETE_MARC_CODE',
810      '' );
811 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 299, 'DELETE_TRANSLATION',
812      '' );
813 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 300, 'UPDATE_ACQ_FUNDING_SOURCE',
814      '' );
815 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
816      '' );
817 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE',
818      '' );
819 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE',
820      '' );
821 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
822      '' );
823 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 305, 'UPDATE_BIB_IMPORT_QUEUE',
824      '' );
825 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 306, 'UPDATE_LOCALE',
826      '' );
827 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 307, 'UPDATE_MARC_CODE',
828      '' );
829 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 308, 'UPDATE_TRANSLATION',
830      '' );
831 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 309, 'VIEW_ACQ_FUNDING_SOURCE',
832      '' );
833 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 310, 'VIEW_AUTHORITY_RECORD_NOTES',
834      '' );
835 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 311, 'CREATE_IMPORT_ITEM',
836      '' );
837 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF',
838      '' );
839 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 313, 'CREATE_IMPORT_TRASH_FIELD',
840      '' );
841 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 314, 'DELETE_IMPORT_ITEM',
842      '' );
843 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF',
844      '' );
845 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 316, 'DELETE_IMPORT_TRASH_FIELD',
846      '' );
847 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 317, 'UPDATE_IMPORT_ITEM',
848      '' );
849 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF',
850      '' );
851 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 319, 'UPDATE_IMPORT_TRASH_FIELD',
852      '' );
853 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL',
854      '' );
855 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee',
856      '' );
857 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price',
858      '' );
859 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout',
860      '' );
861 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout',
862      '' );
863 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails',
864      '' );
865 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval',
866      '' );
867 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval',
868      '' );
869 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow',
870      '' );
871 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost',
872      '' );
873 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft',
874      '' );
875 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard',
876      '' );
877 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft',
878      '' );
879 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex',
880      '' );
881 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex',
882      '' );
883 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max',
884      '' );
885 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval',
886      '' );
887 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout',
888      '' );
889 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event',
890      '' );
891 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 339, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password',
892      '' );
893 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold',
894      '' );
895 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty',
896      '' );
897 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty',
898      '' );
899 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone',
900      '' );
901 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 344, 'HOLD_ITEM_CHECKED_OUT.override',
902      'Allows a user to place a hold on an item that they already have checked out' );
903 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 345, 'ADMIN_ACQ_CANCEL_CAUSE',
904      'Allow a user to create/update/delete reasons for order cancellations' );
905 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT',
906      'Allow a user to transfer different amounts of money out of one fund and into another' );
907 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY',
908      'Allow a user to override the circ.holds.hold_has_copy_at.block setting' );
909 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT',
910      'Allow a user to change the pickup and transit destination for a captured hold item already in transit' );
911 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 349, 'COPY_NEEDED_FOR_HOLD.override',
912      'Allow a user to force renewal of an item that could fulfill a hold request' );
913 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 350, 'MERGE_AUTH_RECORDS',
914      'Allow a user to merge authority records together' );
915 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 351, 'ALLOW_ALT_TCN',
916      'Allows staff to import a record using an alternate TCN to avoid conflicts' );
917 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 352, 'ADMIN_TRIGGER_EVENT_DEF',
918      'Allow a user to administer trigger event definitions' );
919 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 353, 'ADMIN_TRIGGER_CLEANUP',
920      'Allow a user to create, delete, and update trigger cleanup entries' );
921 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 354, 'CREATE_TRIGGER_CLEANUP',
922      'Allow a user to create trigger cleanup entries' );
923 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 355, 'DELETE_TRIGGER_CLEANUP',
924      'Allow a user to delete trigger cleanup entries' );
925 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 356, 'UPDATE_TRIGGER_CLEANUP',
926      'Allow a user to update trigger cleanup entries' );
927 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 357, 'CREATE_TRIGGER_EVENT_DEF',
928      'Allow a user to create trigger event definitions' );
929 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 358, 'DELETE_TRIGGER_EVENT_DEF',
930      'Allow a user to delete trigger event definitions' );
931 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 359, 'UPDATE_TRIGGER_EVENT_DEF',
932      'Allow a user to update trigger event definitions' );
933 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 360, 'VIEW_TRIGGER_EVENT_DEF',
934      'Allow a user to view trigger event definitions' );
935 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 361, 'ADMIN_TRIGGER_HOOK',
936      'Allow a user to create, update, and delete trigger hooks' );
937 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 362, 'CREATE_TRIGGER_HOOK',
938      'Allow a user to create trigger hooks' );
939 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 363, 'DELETE_TRIGGER_HOOK',
940      'Allow a user to delete trigger hooks' );
941 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 364, 'UPDATE_TRIGGER_HOOK',
942      'Allow a user to update trigger hooks' );
943 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 365, 'ADMIN_TRIGGER_REACTOR',
944      'Allow a user to create, update, and delete trigger reactors' );
945 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 366, 'CREATE_TRIGGER_REACTOR',
946      'Allow a user to create trigger reactors' );
947 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 367, 'DELETE_TRIGGER_REACTOR',
948      'Allow a user to delete trigger reactors' );
949 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 368, 'UPDATE_TRIGGER_REACTOR',
950      'Allow a user to update trigger reactors' );
951 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT',
952      'Allow a user to delete trigger template output' );
953 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT',
954      'Allow a user to delete trigger template output' );
955 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 371, 'ADMIN_TRIGGER_VALIDATOR',
956      'Allow a user to create, update, and delete trigger validators' );
957 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 372, 'CREATE_TRIGGER_VALIDATOR',
958      'Allow a user to create trigger validators' );
959 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 373, 'DELETE_TRIGGER_VALIDATOR',
960      'Allow a user to delete trigger validators' );
961 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 374, 'UPDATE_TRIGGER_VALIDATOR',
962      'Allow a user to update trigger validators' );
963 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 376, 'ADMIN_BOOKING_RESOURCE',
964      'Enables the user to create/update/delete booking resources' );
965 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE',
966      'Enables the user to create/update/delete booking resource types' );
967 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR',
968      'Enables the user to create/update/delete booking resource attributes' );
969 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
970      'Enables the user to create/update/delete booking resource attribute maps' );
971 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
972      'Enables the user to create/update/delete booking resource attribute values' );
973 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 381, 'ADMIN_BOOKING_RESERVATION',
974      'Enables the user to create/update/delete booking reservations' );
975 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
976      'Enables the user to create/update/delete booking reservation attribute value maps' );
977 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 383, 'RETRIEVE_RESERVATION_PULL_LIST',
978      'Allows a user to retrieve a booking reservation pull list' );
979 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 384, 'CAPTURE_RESERVATION',
980      'Allows a user to capture booking reservations' );
981 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 385, 'UPDATE_RECORD',
982      '' );
983 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds',
984      '' );
985 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 387, 'MERGE_USERS',
986      'Allows user records to be merged' );
987 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 388, 'ISSUANCE_HOLDS',
988      'Allow a user to place holds on serials issuances' );
989 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 389, 'VIEW_CREDIT_CARD_PROCESSING',
990      'View org unit settings related to credit card processing' );
991 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 390, 'ADMIN_CREDIT_CARD_PROCESSING',
992      'Update org unit settings related to credit card processing' );
993 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 391, 'ADMIN_SERIAL_CAPTION_PATTERN',
994         'Create/update/delete serial caption and pattern objects' );
995 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 392, 'ADMIN_SERIAL_SUBSCRIPTION',
996         'Create/update/delete serial subscription objects' );
997 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 393, 'ADMIN_SERIAL_DISTRIBUTION',
998         'Create/update/delete serial distribution objects' );
999 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 394, 'ADMIN_SERIAL_STREAM',
1000         'Create/update/delete serial stream objects' );
1001 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 395, 'RECEIVE_SERIAL',
1002         'Receive serial items' );
1003
1004 -- Now for the permissions from the IDL.  We don't have descriptions for them.
1005
1006 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 396, 'ADMIN_ACQ_CLAIM' );
1007 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 397, 'ADMIN_ACQ_CLAIM_EVENT_TYPE' );
1008 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 398, 'ADMIN_ACQ_CLAIM_TYPE' );
1009 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 399, 'ADMIN_ACQ_DISTRIB_FORMULA' );
1010 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 400, 'ADMIN_ACQ_FISCAL_YEAR' );
1011 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 401, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT' );
1012 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 402, 'ADMIN_ACQ_FUND_TAG' );
1013 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 403, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT' );
1014 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 404, 'ADMIN_AGE_PROTECT_RULE' );
1015 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 405, 'ADMIN_ASSET_COPY_TEMPLATE' );
1016 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 406, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP' );
1017 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 407, 'ADMIN_CIRC_MATRIX_MATCHPOINT' );
1018 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 408, 'ADMIN_CIRC_MOD' );
1019 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 409, 'ADMIN_CLAIM_POLICY' );
1020 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 410, 'ADMIN_CONFIG_REMOTE_ACCOUNT' );
1021 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 411, 'ADMIN_FIELD_DOC' );
1022 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 412, 'ADMIN_GLOBAL_FLAG' );
1023 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 413, 'ADMIN_GROUP_PENALTY_THRESHOLD' );
1024 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 414, 'ADMIN_HOLD_CANCEL_CAUSE' );
1025 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 415, 'ADMIN_HOLD_MATRIX_MATCHPOINT' );
1026 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 416, 'ADMIN_IDENT_TYPE' );
1027 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 417, 'ADMIN_IMPORT_ITEM_ATTR_DEF' );
1028 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 418, 'ADMIN_INDEX_NORMALIZER' );
1029 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 419, 'ADMIN_INVOICE' );
1030 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 420, 'ADMIN_INVOICE_METHOD' );
1031 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 421, 'ADMIN_INVOICE_PAYMENT_METHOD' );
1032 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 422, 'ADMIN_LINEITEM_MARC_ATTR_DEF' );
1033 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 423, 'ADMIN_MARC_CODE' );
1034 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 424, 'ADMIN_MAX_FINE_RULE' );
1035 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 425, 'ADMIN_MERGE_PROFILE' );
1036 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 426, 'ADMIN_ORG_UNIT_SETTING_TYPE' );
1037 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 427, 'ADMIN_RECURRING_FINE_RULE' );
1038 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 428, 'ADMIN_STANDING_PENALTY' );
1039 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 429, 'ADMIN_SURVEY' );
1040 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 430, 'ADMIN_USER_REQUEST_TYPE' );
1041 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 431, 'ADMIN_USER_SETTING_GROUP' );
1042 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 432, 'ADMIN_USER_SETTING_TYPE' );
1043 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 433, 'ADMIN_Z3950_SOURCE' );
1044 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 434, 'CREATE_BIB_BTYPE' );
1045 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 435, 'CREATE_BIBLIO_FINGERPRINT' );
1046 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 436, 'CREATE_BIB_SOURCE' );
1047 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 437, 'CREATE_BILLING_TYPE' );
1048 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 438, 'CREATE_CN_BTYPE' );
1049 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 439, 'CREATE_COPY_BTYPE' );
1050 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 440, 'CREATE_INVOICE' );
1051 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 441, 'CREATE_INVOICE_ITEM_TYPE' );
1052 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 442, 'CREATE_INVOICE_METHOD' );
1053 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 443, 'CREATE_MERGE_PROFILE' );
1054 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 444, 'CREATE_METABIB_CLASS' );
1055 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 445, 'CREATE_METABIB_SEARCH_ALIAS' );
1056 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 446, 'CREATE_USER_BTYPE' );
1057 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 447, 'DELETE_BIB_BTYPE' );
1058 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 448, 'DELETE_BIBLIO_FINGERPRINT' );
1059 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 449, 'DELETE_BIB_SOURCE' );
1060 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 450, 'DELETE_BILLING_TYPE' );
1061 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 451, 'DELETE_CN_BTYPE' );
1062 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 452, 'DELETE_COPY_BTYPE' );
1063 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 453, 'DELETE_INVOICE_ITEM_TYPE' );
1064 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 454, 'DELETE_INVOICE_METHOD' );
1065 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 455, 'DELETE_MERGE_PROFILE' );
1066 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 456, 'DELETE_METABIB_CLASS' );
1067 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 457, 'DELETE_METABIB_SEARCH_ALIAS' );
1068 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 458, 'DELETE_USER_BTYPE' );
1069 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 459, 'MANAGE_CLAIM' );
1070 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 460, 'UPDATE_BIB_BTYPE' );
1071 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 461, 'UPDATE_BIBLIO_FINGERPRINT' );
1072 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 462, 'UPDATE_BIB_SOURCE' );
1073 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 463, 'UPDATE_BILLING_TYPE' );
1074 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 464, 'UPDATE_CN_BTYPE' );
1075 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 465, 'UPDATE_COPY_BTYPE' );
1076 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 466, 'UPDATE_INVOICE_ITEM_TYPE' );
1077 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 467, 'UPDATE_INVOICE_METHOD' );
1078 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 468, 'UPDATE_MERGE_PROFILE' );
1079 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 469, 'UPDATE_METABIB_CLASS' );
1080 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 470, 'UPDATE_METABIB_SEARCH_ALIAS' );
1081 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 471, 'UPDATE_USER_BTYPE' );
1082 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 472, 'user_request.create' );
1083 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 473, 'user_request.delete' );
1084 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 474, 'user_request.update' );
1085 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 475, 'user_request.view' );
1086 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 476, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT' );
1087 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 477, 'VIEW_CIRC_MATRIX_MATCHPOINT' );
1088 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 478, 'VIEW_CLAIM' );
1089 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 479, 'VIEW_GROUP_PENALTY_THRESHOLD' );
1090 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 480, 'VIEW_HOLD_MATRIX_MATCHPOINT' );
1091 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 481, 'VIEW_INVOICE' );
1092 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 482, 'VIEW_MERGE_PROFILE' );
1093 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 483, 'VIEW_SERIAL_SUBSCRIPTION' );
1094 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 484, 'VIEW_STANDING_PENALTY' );
1095
1096 -- For every permission in the temp_perm table that has a matching
1097 -- permission in the real table: record the original id.
1098
1099 UPDATE permission.temp_perm AS tp
1100 SET old_id =
1101         (
1102                 SELECT id
1103                 FROM permission.perm_list AS ppl
1104                 WHERE ppl.code = tp.code
1105         )
1106 WHERE code IN ( SELECT code FROM permission.perm_list );
1107
1108 -- Start juggling ids.
1109
1110 -- If any permissions have negative ids (with the special exception of -1),
1111 -- we need to move them into the positive range in order to avoid duplicate
1112 -- key problems (since we are going to use the negative range as a temporary
1113 -- staging area).
1114
1115 -- First, move any predefined permissions that have negative ids (again with
1116 -- the special exception of -1).  Temporarily give them positive ids based on
1117 -- the sequence.
1118
1119 UPDATE permission.perm_list
1120 SET id = NEXTVAL('permission.perm_list_id_seq'::regclass)
1121 WHERE id < -1
1122   AND code IN (SELECT code FROM permission.temp_perm);
1123
1124 -- Identify any non-predefined permissions whose ids are either negative
1125 -- or within the range (0-1000) reserved for predefined permissions.
1126 -- Assign them ids above 1000, based on the sequence.  Record the new
1127 -- ids in the temp_perm table.
1128
1129 INSERT INTO permission.temp_perm ( id, code, description, old_id, predefined )
1130 (
1131         SELECT NEXTVAL('permission.perm_list_id_seq'::regclass),
1132                 code, description, id, false
1133         FROM permission.perm_list
1134         WHERE  ( id < -1 OR id BETWEEN 0 AND 1000 )
1135         AND code NOT IN (SELECT code FROM permission.temp_perm)
1136 );
1137
1138 -- Now update the ids of those non-predefined permissions, using the
1139 -- values assigned in the previous step.
1140
1141 UPDATE permission.perm_list AS ppl
1142 SET id = (
1143                 SELECT id
1144                 FROM permission.temp_perm AS tp
1145                 WHERE tp.code = ppl.code
1146         )
1147 WHERE id IN ( SELECT old_id FROM permission.temp_perm WHERE NOT predefined );
1148
1149 -- Now the negative ids have been eliminated, except for -1.  Move all the
1150 -- predefined permissions temporarily into the negative range.
1151
1152 UPDATE permission.perm_list
1153 SET id = -1 - id
1154 WHERE id <> -1
1155 AND code IN ( SELECT code from permission.temp_perm WHERE predefined );
1156
1157 -- Apply the final ids to the existing predefined permissions.
1158
1159 UPDATE permission.perm_list AS ppl
1160 SET id =
1161         (
1162                 SELECT id
1163                 FROM permission.temp_perm AS tp
1164                 WHERE tp.code = ppl.code
1165         )
1166 WHERE
1167         id <> -1
1168         AND ppl.code IN
1169         (
1170                 SELECT code from permission.temp_perm
1171                 WHERE predefined
1172                 AND old_id IS NOT NULL
1173         );
1174
1175 -- If there are any predefined permissions that don't exist yet in
1176 -- permission.perm_list, insert them now.
1177
1178 INSERT INTO permission.perm_list ( id, code, description )
1179 (
1180         SELECT id, code, description
1181         FROM permission.temp_perm
1182         WHERE old_id IS NULL
1183 );
1184
1185 -- Reset the sequence to the lowest feasible value.  This may or may not
1186 -- accomplish anything, but it will do no harm.
1187
1188 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, GREATEST( 
1189         (SELECT MAX(id) FROM permission.perm_list), 1000 ));
1190
1191 -- If any permission lacks a description, use the code as a description.
1192 -- It's better than nothing.
1193
1194 UPDATE permission.perm_list
1195 SET description = code
1196 WHERE description IS NULL
1197    OR description = '';
1198
1199 -- Thus endeth the Great Renumbering.
1200
1201 -- Having massaged the permissions, massage the way they are assigned, by inserting
1202 -- rows into permission.grp_perm_map.  Some of these permissions may have already
1203 -- been assigned, so we insert the rows only if they aren't already there.
1204
1205 -- for backwards compat, give everyone the permission
1206 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1207     SELECT 1, id, 0, false FROM permission.perm_list AS perm
1208         WHERE code = 'HOLD_ITEM_CHECKED_OUT.override'
1209                 AND NOT EXISTS (
1210                         SELECT 1
1211                         FROM permission.grp_perm_map AS map
1212                         WHERE
1213                                 grp = 1
1214                                 AND map.perm = perm.id
1215                 );
1216
1217 -- Add trigger administration permissions to the Local System Administrator group.
1218 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1219     SELECT 10, id, 1, false FROM permission.perm_list AS perm
1220     WHERE (
1221                 perm.code LIKE 'ADMIN_TRIGGER%'
1222         OR perm.code LIKE 'CREATE_TRIGGER%'
1223         OR perm.code LIKE 'DELETE_TRIGGER%'
1224         OR perm.code LIKE 'UPDATE_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 -- View trigger permissions are required at a consortial level for initial setup
1234 -- (as before, only if the row doesn't already exist)
1235 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1236     SELECT 10, id, 0, false FROM permission.perm_list AS perm
1237         WHERE code LIKE 'VIEW_TRIGGER%'
1238                 AND NOT EXISTS (
1239                         SELECT 1
1240                         FROM permission.grp_perm_map AS map
1241                         WHERE
1242                                 grp = 10
1243                                 AND map.perm = perm.id
1244                 );
1245
1246 -- Permission for merging auth records may already be defined,
1247 -- so add it only if it isn't there.
1248 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1249     SELECT 4, id, 1, false FROM permission.perm_list AS perm
1250         WHERE code = 'MERGE_AUTH_RECORDS'
1251                 AND NOT EXISTS (
1252                         SELECT 1
1253                         FROM permission.grp_perm_map AS map
1254                         WHERE
1255                                 grp = 4
1256                                 AND map.perm = perm.id
1257                 );
1258
1259 -- Create a reference table as parent to both
1260 -- config.org_unit_setting_type and config_usr_setting_type
1261
1262 CREATE TABLE config.settings_group (
1263     name    TEXT PRIMARY KEY,
1264     label   TEXT UNIQUE NOT NULL -- I18N
1265 );
1266
1267 -- org_unit setting types
1268 CREATE TABLE config.org_unit_setting_type (
1269     name            TEXT    PRIMARY KEY,
1270     label           TEXT    UNIQUE NOT NULL,
1271     grp             TEXT    REFERENCES config.settings_group (name),
1272     description     TEXT,
1273     datatype        TEXT    NOT NULL DEFAULT 'string',
1274     fm_class        TEXT,
1275     view_perm       INT,
1276     update_perm     INT,
1277     --
1278     -- define valid datatypes
1279     --
1280     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1281     ( 'bool', 'integer', 'float', 'currency', 'interval',
1282       'date', 'string', 'object', 'array', 'link' ) ),
1283     --
1284     -- fm_class is meaningful only for 'link' datatype
1285     --
1286     CONSTRAINT coust_no_empty_link CHECK
1287     ( ( datatype =  'link' AND fm_class IS NOT NULL ) OR
1288       ( datatype <> 'link' AND fm_class IS NULL ) ),
1289         CONSTRAINT view_perm_fkey FOREIGN KEY (view_perm) REFERENCES permission.perm_list (id)
1290                 ON UPDATE CASCADE
1291                 ON DELETE RESTRICT
1292                 DEFERRABLE INITIALLY DEFERRED,
1293         CONSTRAINT update_perm_fkey FOREIGN KEY (update_perm) REFERENCES permission.perm_list (id)
1294                 ON UPDATE CASCADE
1295                 DEFERRABLE INITIALLY DEFERRED
1296 );
1297
1298 CREATE TABLE config.usr_setting_type (
1299
1300     name TEXT PRIMARY KEY,
1301     opac_visible BOOL NOT NULL DEFAULT FALSE,
1302     label TEXT UNIQUE NOT NULL,
1303     description TEXT,
1304     grp             TEXT    REFERENCES config.settings_group (name),
1305     datatype TEXT NOT NULL DEFAULT 'string',
1306     fm_class TEXT,
1307
1308     --
1309     -- define valid datatypes
1310     --
1311     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1312     ( 'bool', 'integer', 'float', 'currency', 'interval',
1313         'date', 'string', 'object', 'array', 'link' ) ),
1314
1315     --
1316     -- fm_class is meaningful only for 'link' datatype
1317     --
1318     CONSTRAINT coust_no_empty_link CHECK
1319     ( ( datatype = 'link' AND fm_class IS NOT NULL ) OR
1320         ( datatype <> 'link' AND fm_class IS NULL ) )
1321
1322 );
1323
1324 --------------------------------------
1325 -- Seed data for org_unit_setting_type
1326 --------------------------------------
1327
1328 INSERT into config.org_unit_setting_type
1329 ( name, label, description, datatype ) VALUES
1330
1331 ( 'auth.opac_timeout',
1332   'OPAC Inactivity Timeout (in seconds)',
1333   null,
1334   'integer' ),
1335
1336 ( 'auth.staff_timeout',
1337   'Staff Login Inactivity Timeout (in seconds)',
1338   null,
1339   'integer' ),
1340
1341 ( 'circ.lost_materials_processing_fee',
1342   'Lost Materials Processing Fee',
1343   null,
1344   'currency' ),
1345
1346 ( 'cat.default_item_price',
1347   'Default Item Price',
1348   null,
1349   'currency' ),
1350
1351 ( 'org.bounced_emails',
1352   'Sending email address for patron notices',
1353   null,
1354   'string' ),
1355
1356 ( 'circ.hold_expire_alert_interval',
1357   'Holds: Expire Alert Interval',
1358   'Amount of time before a hold expires at which point the patron should be alerted',
1359   'interval' ),
1360
1361 ( 'circ.hold_expire_interval',
1362   'Holds: Expire Interval',
1363   'Amount of time after a hold is placed before the hold expires.  Example "100 days"',
1364   'interval' ),
1365
1366 ( 'credit.payments.allow',
1367   'Allow Credit Card Payments',
1368   'If enabled, patrons will be able to pay fines accrued at this location via credit card',
1369   'bool' ),
1370
1371 ( 'global.default_locale',
1372   'Global Default Locale',
1373   null,
1374   'string' ),
1375
1376 ( 'circ.void_overdue_on_lost',
1377   'Void overdue fines when items are marked lost',
1378   null,
1379   'bool' ),
1380
1381 ( 'circ.hold_stalling.soft',
1382   'Holds: Soft stalling interval',
1383   'How long to wait before allowing remote items to be opportunistically captured for a hold.  Example "5 days"',
1384   'interval' ),
1385
1386 ( 'circ.hold_stalling_hard',
1387   'Holds: Hard stalling interval',
1388   '',
1389   'interval' ),
1390
1391 ( 'circ.hold_boundary.hard',
1392   'Holds: Hard boundary',
1393   null,
1394   'integer' ),
1395
1396 ( 'circ.hold_boundary.soft',
1397   'Holds: Soft boundary',
1398   null,
1399   'integer' ),
1400
1401 ( 'opac.barcode_regex',
1402   'Patron barcode format',
1403   'Regular expression defining the patron barcode format',
1404   'string' ),
1405
1406 ( 'global.password_regex',
1407   'Password format',
1408   'Regular expression defining the password format',
1409   'string' ),
1410
1411 ( 'circ.item_checkout_history.max',
1412   'Maximum previous checkouts displayed',
1413   'This is the maximum number of previous circulations the staff client will display when investigating item details',
1414   'integer' ),
1415
1416 ( 'circ.reshelving_complete.interval',
1417   'Change reshelving status interval',
1418   'Amount of time to wait before changing an item from "reshelving" status to "available".  Examples: "1 day", "6 hours"',
1419   'interval' ),
1420
1421 ( 'circ.holds.default_estimated_wait_interval',
1422   'Holds: Default Estimated Wait',
1423   '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.',
1424   'interval' ),
1425
1426 ( 'circ.holds.min_estimated_wait_interval',
1427   'Holds: Minimum Estimated Wait',
1428   '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.',
1429   'interval' ),
1430
1431 ( 'circ.selfcheck.patron_login_timeout',
1432   'Selfcheck: Patron Login Timeout (in seconds)',
1433   'Number of seconds of inactivity before the patron is logged out of the selfcheck interface',
1434   'integer' ),
1435
1436 ( 'circ.selfcheck.alert.popup',
1437   'Selfcheck: Pop-up alert for errors',
1438   'If true, checkout/renewal errors will cause a pop-up window in addition to the on-screen message',
1439   'bool' ),
1440
1441 ( 'circ.selfcheck.require_patron_password',
1442   'Selfcheck: Require patron password',
1443   'If true, patrons will be required to enter their password in addition to their username/barcode to log into the selfcheck interface',
1444   'bool' ),
1445
1446 ( 'global.juvenile_age_threshold',
1447   'Juvenile Age Threshold',
1448   'The age at which a user is no long considered a juvenile.  For example, "18 years".',
1449   'interval' ),
1450
1451 ( 'cat.bib.keep_on_empty',
1452   'Retain empty bib records',
1453   'Retain a bib record even when all attached copies are deleted',
1454   'bool' ),
1455
1456 ( 'cat.bib.alert_on_empty',
1457   'Alert on empty bib records',
1458   'Alert staff when the last copy for a record is being deleted',
1459   'bool' ),
1460
1461 ( 'patron.password.use_phone',
1462   'Patron: password from phone #',
1463   'Use the last 4 digits of the patrons phone number as the default password when creating new users',
1464   'bool' ),
1465
1466 ( 'circ.charge_on_damaged',
1467   'Charge item price when marked damaged',
1468   'Charge item price when marked damaged',
1469   'bool' ),
1470
1471 ( 'circ.charge_lost_on_zero',
1472   'Charge lost on zero',
1473   '',
1474   'bool' ),
1475
1476 ( 'circ.damaged_item_processing_fee',
1477   'Charge processing fee for damaged items',
1478   'Charge processing fee for damaged items',
1479   'currency' ),
1480
1481 ( 'circ.void_lost_on_checkin',
1482   'Circ: Void lost item billing when returned',
1483   'Void lost item billing when returned',
1484   'bool' ),
1485
1486 ( 'circ.max_accept_return_of_lost',
1487   'Circ: Void lost max interval',
1488   'Items that have been lost this long will not result in voided billings when returned.  E.g. ''6 months''',
1489   'interval' ),
1490
1491 ( 'circ.void_lost_proc_fee_on_checkin',
1492   'Circ: Void processing fee on lost item return',
1493   'Void processing fee when lost item returned',
1494   'bool' ),
1495
1496 ( 'circ.restore_overdue_on_lost_return',
1497   'Circ: Restore overdues on lost item return',
1498   'Restore overdue fines on lost item return',
1499   'bool' ),
1500
1501 ( 'circ.lost_immediately_available',
1502   'Circ: Lost items usable on checkin',
1503   'Lost items are usable on checkin instead of going ''home'' first',
1504   'bool' ),
1505
1506 ( 'circ.holds_fifo',
1507   'Holds: FIFO',
1508   'Force holds to a more strict First-In, First-Out capture',
1509   'bool' ),
1510
1511 ( 'opac.allow_pending_address',
1512   'OPAC: Allow pending addresses',
1513   'If enabled, patrons can create and edit existing addresses.  Addresses are kept in a pending state until staff approves the changes',
1514   'bool' ),
1515
1516 ( 'ui.circ.show_billing_tab_on_bills',
1517   'Show billing tab first when bills are present',
1518   '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',
1519   'bool' ),
1520
1521 ( 'ui.general.idle_timeout',
1522     'GUI: Idle timeout',
1523     '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).',
1524     'integer' ),
1525
1526 ( 'ui.circ.in_house_use.entry_cap',
1527   'GUI: Record In-House Use: Maximum # of uses allowed per entry.',
1528   'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.',
1529   'integer' ),
1530
1531 ( 'ui.circ.in_house_use.entry_warn',
1532   'GUI: Record In-House Use: # of uses threshold for Are You Sure? dialog.',
1533   'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.',
1534   'integer' ),
1535
1536 ( 'acq.default_circ_modifier',
1537   'Default circulation modifier',
1538   null,
1539   'string' ),
1540
1541 ( 'acq.tmp_barcode_prefix',
1542   'Temporary barcode prefix',
1543   null,
1544   'string' ),
1545
1546 ( 'acq.tmp_callnumber_prefix',
1547   'Temporary call number prefix',
1548   null,
1549   'string' ),
1550
1551 ( 'ui.circ.patron_summary.horizontal',
1552   'Patron circulation summary is horizontal',
1553   null,
1554   'bool' ),
1555
1556 ( 'ui.staff.require_initials',
1557   oils_i18n_gettext('ui.staff.require_initials', 'GUI: Require staff initials for entry/edit of item/patron/penalty notes/messages.', 'coust', 'label'),
1558   oils_i18n_gettext('ui.staff.require_initials', 'Appends staff initials and edit date into note content.', 'coust', 'description'),
1559   'bool' ),
1560
1561 ( 'ui.general.button_bar',
1562   'Button bar',
1563   null,
1564   'bool' ),
1565
1566 ( 'circ.hold_shelf_status_delay',
1567   'Hold Shelf Status Delay',
1568   '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.',
1569   'interval' ),
1570
1571 ( 'circ.patron_invalid_address_apply_penalty',
1572   'Invalid patron address penalty',
1573   'When set, if a patron address is set to invalid, a penalty is applied.',
1574   'bool' ),
1575
1576 ( 'circ.checkout_fills_related_hold',
1577   'Checkout Fills Related Hold',
1578   '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',
1579   'bool'),
1580
1581 ( 'circ.selfcheck.auto_override_checkout_events',
1582   'Selfcheck override events list',
1583   'List of checkout/renewal events that the selfcheck interface should automatically override instead instead of alerting and stopping the transaction',
1584   'array' ),
1585
1586 ( 'circ.staff_client.do_not_auto_attempt_print',
1587   'Disable Automatic Print Attempt Type List',
1588   '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).',
1589   'array' ),
1590
1591 ( 'ui.patron.default_inet_access_level',
1592   'Default level of patrons'' internet access',
1593   null,
1594   'integer' ),
1595
1596 ( 'circ.max_patron_claim_return_count',
1597     'Max Patron Claims Returned Count',
1598     'When this count is exceeded, a staff override is required to mark the item as claims returned',
1599     'integer' ),
1600
1601 ( 'circ.obscure_dob',
1602     'Obscure the Date of Birth field',
1603     '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.',
1604     'bool' ),
1605
1606 ( 'circ.auto_hide_patron_summary',
1607     'GUI: Toggle off the patron summary sidebar after first view.',
1608     'When true, the patron summary sidebar will collapse after a new patron sub-interface is selected.',
1609     'bool' ),
1610
1611 ( 'credit.processor.default',
1612     'Credit card processing: Name default credit processor',
1613     'This can be "AuthorizeNet", "PayPal" (for the Website Payment Pro API), or "PayflowPro".',
1614     'string' ),
1615
1616 ( 'credit.processor.authorizenet.enabled',
1617     'Credit card processing: AuthorizeNet enabled',
1618     '',
1619     'bool' ),
1620
1621 ( 'credit.processor.authorizenet.login',
1622     'Credit card processing: AuthorizeNet login',
1623     '',
1624     'string' ),
1625
1626 ( 'credit.processor.authorizenet.password',
1627     'Credit card processing: AuthorizeNet password',
1628     '',
1629     'string' ),
1630
1631 ( 'credit.processor.authorizenet.server',
1632     'Credit card processing: AuthorizeNet server',
1633     'Required if using a developer/test account with AuthorizeNet',
1634     'string' ),
1635
1636 ( 'credit.processor.authorizenet.testmode',
1637     'Credit card processing: AuthorizeNet test mode',
1638     '',
1639     'bool' ),
1640
1641 ( 'credit.processor.paypal.enabled',
1642     'Credit card processing: PayPal enabled',
1643     '',
1644     'bool' ),
1645 ( 'credit.processor.paypal.login',
1646     'Credit card processing: PayPal login',
1647     '',
1648     'string' ),
1649 ( 'credit.processor.paypal.password',
1650     'Credit card processing: PayPal password',
1651     '',
1652     'string' ),
1653 ( 'credit.processor.paypal.signature',
1654     'Credit card processing: PayPal signature',
1655     '',
1656     'string' ),
1657 ( 'credit.processor.paypal.testmode',
1658     'Credit card processing: PayPal test mode',
1659     '',
1660     'bool' ),
1661
1662 ( 'ui.admin.work_log.max_entries',
1663     oils_i18n_gettext('ui.admin.work_log.max_entries', 'GUI: Work Log: Maximum Actions Logged', 'coust', 'label'),
1664     oils_i18n_gettext('ui.admin.work_log.max_entries', 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', 'coust', 'description'),
1665   'interval' ),
1666
1667 ( 'ui.admin.patron_log.max_entries',
1668     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'GUI: Work Log: Maximum Patrons Logged', 'coust', 'label'),
1669     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', 'coust', 'description'),
1670   'interval' ),
1671
1672 ( 'lib.courier_code',
1673     oils_i18n_gettext('lib.courier_code', 'Courier Code', 'coust', 'label'),
1674     oils_i18n_gettext('lib.courier_code', 'Courier Code for the library.  Available in transit slip templates as the %courier_code% macro.', 'coust', 'description'),
1675     'string'),
1676
1677 ( 'circ.block_renews_for_holds',
1678     oils_i18n_gettext('circ.block_renews_for_holds', 'Holds: Block Renewal of Items Needed for Holds', 'coust', 'label'),
1679     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'),
1680     'bool' ),
1681
1682 ( 'circ.password_reset_request_per_user_limit',
1683     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'Circulation: Maximum concurrently active self-serve password reset requests per user', 'coust', 'label'),
1684     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'),
1685     'string'),
1686
1687 ( 'circ.password_reset_request_time_to_live',
1688     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Circulation: Self-serve password reset request time-to-live', 'coust', 'label'),
1689     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'),
1690     'string'),
1691
1692 ( 'circ.password_reset_request_throttle',
1693     oils_i18n_gettext('circ.password_reset_request_throttle', 'Circulation: Maximum concurrently active self-serve password reset requests', 'coust', 'label'),
1694     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'),
1695     'string')
1696 ;
1697
1698 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1699         'ui.circ.suppress_checkin_popups',
1700         oils_i18n_gettext(
1701             'ui.circ.suppress_checkin_popups', 
1702             'Circ: Suppress popup-dialogs during check-in.', 
1703             'coust', 
1704             'label'),
1705         oils_i18n_gettext(
1706             'ui.circ.suppress_checkin_popups', 
1707             'Circ: Suppress popup-dialogs during check-in.', 
1708             'coust', 
1709             'description'),
1710         'bool'
1711 );
1712
1713 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1714         'format.date',
1715         oils_i18n_gettext(
1716             'format.date',
1717             'GUI: Format Dates with this pattern.', 
1718             'coust', 
1719             'label'),
1720         oils_i18n_gettext(
1721             'format.date',
1722             'GUI: Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', 
1723             'coust', 
1724             'description'),
1725         'string'
1726 ), (
1727         'format.time',
1728         oils_i18n_gettext(
1729             'format.time',
1730             'GUI: Format Times with this pattern.', 
1731             'coust', 
1732             'label'),
1733         oils_i18n_gettext(
1734             'format.time',
1735             '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")', 
1736             'coust', 
1737             'description'),
1738         'string'
1739 );
1740
1741 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1742         'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1743         oils_i18n_gettext(
1744             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1745             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1746             'coust', 
1747             'label'),
1748         oils_i18n_gettext(
1749             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1750             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1751             'coust', 
1752             'description'),
1753         'bool'
1754 );
1755
1756 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1757         'url.remote_column_settings',
1758         oils_i18n_gettext(
1759             'url.remote_column_settings',
1760             'GUI: URL for remote directory containing list column settings.', 
1761             'coust', 
1762             'label'),
1763         oils_i18n_gettext(
1764             'url.remote_column_settings',
1765             '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.', 
1766             'coust', 
1767             'description'),
1768         'string'
1769 );
1770
1771 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1772         'gui.disable_local_save_columns',
1773         oils_i18n_gettext(
1774             'gui.disable_local_save_columns',
1775             'GUI: Disable the ability to save list column configurations locally.', 
1776             'coust', 
1777             'label'),
1778         oils_i18n_gettext(
1779             'gui.disable_local_save_columns',
1780             '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.', 
1781             'coust', 
1782             'description'),
1783         'bool'
1784 );
1785
1786 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1787         'circ.password_reset_request_requires_matching_email',
1788         oils_i18n_gettext(
1789             'circ.password_reset_request_requires_matching_email',
1790             'Circulation: Require matching email address for password reset requests', 
1791             'coust', 
1792             'label'),
1793         oils_i18n_gettext(
1794             'circ.password_reset_request_requires_matching_email',
1795             'Circulation: Require matching email address for password reset requests', 
1796             'coust', 
1797             'description'),
1798         'bool'
1799 );
1800
1801 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1802         'circ.holds.expired_patron_block',
1803         oils_i18n_gettext(
1804             'circ.holds.expired_patron_block',
1805             'Circulation: Block hold request if hold recipient privileges have expired', 
1806             'coust', 
1807             'label'),
1808         oils_i18n_gettext(
1809             'circ.holds.expired_patron_block',
1810             'Circulation: Block hold request if hold recipient privileges have expired', 
1811             'coust', 
1812             'description'),
1813         'bool'
1814 );
1815
1816 INSERT INTO config.org_unit_setting_type
1817     (name, label, description, datatype) VALUES (
1818         'circ.booking_reservation.default_elbow_room',
1819         oils_i18n_gettext(
1820             'circ.booking_reservation.default_elbow_room',
1821             'Booking: Elbow room',
1822             'coust',
1823             'label'
1824         ),
1825         oils_i18n_gettext(
1826             'circ.booking_reservation.default_elbow_room',
1827             '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.',
1828             'coust',
1829             'label'
1830         ),
1831         'interval'
1832     );
1833
1834 -- Org_unit_setting_type(s) that need an fm_class:
1835 INSERT into config.org_unit_setting_type
1836 ( name, label, description, datatype, fm_class ) VALUES
1837 ( 'acq.default_copy_location',
1838   'Default copy location',
1839   null,
1840   'link',
1841   'acpl' );
1842
1843 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1844     'circ.holds.org_unit_target_weight',
1845     'Holds: Org Unit Target Weight',
1846     '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.',
1847     'integer'
1848 );
1849
1850 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1851     'circ.holds.target_holds_by_org_unit_weight',
1852     'Holds: Use weight-based hold targeting',
1853     'Use library weight based hold targeting',
1854     'bool'
1855 );
1856
1857 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1858     'circ.holds.max_org_unit_target_loops',
1859     'Holds: Maximum library target attempts',
1860     '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',
1861     'integer'
1862 );
1863
1864
1865 -- Org setting for overriding the circ lib of a precat copy
1866 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1867     'circ.pre_cat_copy_circ_lib',
1868     'Pre-cat Item Circ Lib',
1869     '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',
1870     'string'
1871 );
1872
1873 -- Circ auto-renew interval setting
1874 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1875     'circ.checkout_auto_renew_age',
1876     'Checkout auto renew age',
1877     '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',
1878     'interval'
1879 );
1880
1881 -- Setting for behind the desk hold pickups
1882 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1883     'circ.holds.behind_desk_pickup_supported',
1884     'Holds: Behind Desk Pickup Supported',
1885     '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',
1886     'bool'
1887 );
1888
1889 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1890         'acq.holds.allow_holds_from_purchase_request',
1891         oils_i18n_gettext(
1892             'acq.holds.allow_holds_from_purchase_request', 
1893             'Allows patrons to create automatic holds from purchase requests.', 
1894             'coust', 
1895             'label'),
1896         oils_i18n_gettext(
1897             'acq.holds.allow_holds_from_purchase_request', 
1898             'Allows patrons to create automatic holds from purchase requests.', 
1899             'coust', 
1900             'description'),
1901         'bool'
1902 );
1903
1904 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1905     'circ.holds.target_skip_me',
1906     'Skip For Hold Targeting',
1907     'When true, don''t target any copies at this org unit for holds',
1908     'bool'
1909 );
1910
1911 -- claims returned mark item missing 
1912 INSERT INTO
1913     config.org_unit_setting_type ( name, label, description, datatype )
1914     VALUES (
1915         'circ.claim_return.mark_missing',
1916         'Claim Return: Mark copy as missing', 
1917         'When a circ is marked as claims-returned, also mark the copy as missing',
1918         'bool'
1919     );
1920
1921 -- claims never checked out mark item missing 
1922 INSERT INTO
1923     config.org_unit_setting_type ( name, label, description, datatype )
1924     VALUES (
1925         'circ.claim_never_checked_out.mark_missing',
1926         'Claim Never Checked Out: Mark copy as missing', 
1927         'When a circ is marked as claims-never-checked-out, mark the copy as missing',
1928         'bool'
1929     );
1930
1931 -- mark damaged void overdue setting
1932 INSERT INTO
1933     config.org_unit_setting_type ( name, label, description, datatype )
1934     VALUES (
1935         'circ.damaged.void_ovedue',
1936         'Mark item damaged voids overdues',
1937         'When an item is marked damaged, overdue fines on the most recent circulation are voided.',
1938         'bool'
1939     );
1940
1941 -- hold cancel display limits
1942 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1943     VALUES (
1944         'circ.holds.canceled.display_count',
1945         'Holds: Canceled holds display count',
1946         'How many canceled holds to show in patron holds interfaces',
1947         'integer'
1948     );
1949
1950 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1951     VALUES (
1952         'circ.holds.canceled.display_age',
1953         'Holds: Canceled holds display age',
1954         'Show all canceled holds that were canceled within this amount of time',
1955         'interval'
1956     );
1957
1958 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1959     VALUES (
1960         'circ.holds.uncancel.reset_request_time',
1961         'Holds: Reset request time on un-cancel',
1962         'When a hold is uncanceled, reset the request time to push it to the end of the queue',
1963         'bool'
1964     );
1965
1966 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
1967     VALUES (
1968         'circ.holds.default_shelf_expire_interval',
1969         'Default hold shelf expire interval',
1970         '',
1971         'interval'
1972 );
1973
1974 INSERT INTO config.org_unit_setting_type (name, label, description, datatype, fm_class)
1975     VALUES (
1976         'circ.claim_return.copy_status', 
1977         'Claim Return Copy Status', 
1978         'Claims returned copies are put into this status.  Default is to leave the copy in the Checked Out status',
1979         'link', 
1980         'ccs' 
1981     );
1982
1983 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
1984     VALUES ( 
1985         'circ.max_fine.cap_at_price',
1986         oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
1987         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'),
1988         'bool' 
1989     );
1990
1991 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) 
1992     VALUES ( 
1993         'circ.holds.clear_shelf.copy_status',
1994         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Holds: Clear shelf copy status', 'coust', 'label'),
1995         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'),
1996         'link',
1997         'ccs'
1998     );
1999
2000 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2001     VALUES ( 
2002         'circ.selfcheck.workstation_required',
2003         oils_i18n_gettext('circ.selfcheck.workstation_required', 'Selfcheck: Workstation Required', 'coust', 'label'),
2004         oils_i18n_gettext('circ.selfcheck.workstation_required', 'All selfcheck stations must use a workstation', 'coust', 'description'),
2005         'bool'
2006     ), (
2007         'circ.selfcheck.patron_password_required',
2008         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Selfcheck: Require Patron Password', 'coust', 'label'),
2009         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Patron must log in with barcode and password at selfcheck station', 'coust', 'description'),
2010         'bool'
2011     );
2012
2013 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2014     VALUES ( 
2015         'circ.selfcheck.alert.sound',
2016         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Selfcheck: Audio Alerts', 'coust', 'label'),
2017         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Use audio alerts for selfcheck events', 'coust', 'description'),
2018         'bool'
2019     );
2020
2021 INSERT INTO
2022     config.org_unit_setting_type (name, label, description, datatype)
2023     VALUES (
2024         'notice.telephony.callfile_lines',
2025         'Telephony: Arbitrary line(s) to include in each notice callfile',
2026         $$
2027         This overrides lines from opensrf.xml.
2028         Line(s) must be valid for your target server and platform
2029         (e.g. Asterisk 1.4).
2030         $$,
2031         'string'
2032     );
2033
2034 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2035     VALUES ( 
2036         'circ.offline.username_allowed',
2037         oils_i18n_gettext('circ.offline.username_allowed', 'Offline: Patron Usernames Allowed', 'coust', 'label'),
2038         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'),
2039         'bool'
2040     );
2041
2042 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2043 VALUES (
2044     'acq.fund.balance_limit.warn',
2045     oils_i18n_gettext('acq.fund.balance_limit.warn', 'Fund Spending Limit for Warning', 'coust', 'label'),
2046     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'),
2047     'integer'
2048 );
2049
2050 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2051 VALUES (
2052     'acq.fund.balance_limit.block',
2053     oils_i18n_gettext('acq.fund.balance_limit.block', 'Fund Spending Limit for Block', 'coust', 'label'),
2054     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'),
2055     'integer'
2056 );
2057
2058 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2059     VALUES (
2060         'circ.holds.hold_has_copy_at.alert',
2061         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'Holds: Has Local Copy Alert', 'coust', 'label'),
2062         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'),
2063         'bool'
2064     ),(
2065         'circ.holds.hold_has_copy_at.block',
2066         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'Holds: Has Local Copy Block', 'coust', 'label'),
2067         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'),
2068         'bool'
2069     );
2070
2071 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2072 VALUES (
2073     'auth.persistent_login_interval',
2074     oils_i18n_gettext('auth.persistent_login_interval', 'Persistent Login Duration', 'coust', 'label'),
2075     oils_i18n_gettext('auth.persistent_login_interval', 'How long a persistent login lasts.  E.g. ''2 weeks''', 'coust', 'description'),
2076     'interval'
2077 );
2078
2079 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2080         'cat.marc_control_number_identifier',
2081         oils_i18n_gettext(
2082             'cat.marc_control_number_identifier', 
2083             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
2084             'coust', 
2085             'label'),
2086         oils_i18n_gettext(
2087             'cat.marc_control_number_identifier', 
2088             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
2089             'coust', 
2090             'description'),
2091         'string'
2092 );
2093
2094 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) 
2095     VALUES (
2096         'circ.selfcheck.block_checkout_on_copy_status',
2097         oils_i18n_gettext(
2098             'circ.selfcheck.block_checkout_on_copy_status',
2099             'Selfcheck: Block copy checkout status',
2100             'coust',
2101             'label'
2102         ),
2103         oils_i18n_gettext(
2104             'circ.selfcheck.block_checkout_on_copy_status',
2105             'List of copy status IDs that will block checkout even if the generic COPY_NOT_AVAILABLE event is overridden',
2106             'coust',
2107             'description'
2108         ),
2109         'array'
2110     );
2111
2112 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2113 VALUES (
2114     'serial.prev_issuance_copy_location',
2115     oils_i18n_gettext(
2116         'serial.prev_issuance_copy_location',
2117         'Serials: Previous Issuance Copy Location',
2118         'coust',
2119         'label'
2120     ),
2121     oils_i18n_gettext(
2122         'serial.prev_issuance_copy_location',
2123         'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
2124         'coust',
2125         'descripton'
2126         ),
2127     'link',
2128     'acpl'
2129 );
2130
2131 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2132 VALUES (
2133     'cat.default_classification_scheme',
2134     oils_i18n_gettext(
2135         'cat.default_classification_scheme',
2136         'Cataloging: Default Classification Scheme',
2137         'coust',
2138         'label'
2139     ),
2140     oils_i18n_gettext(
2141         'cat.default_classification_scheme',
2142         'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
2143         'coust',
2144         'descripton'
2145         ),
2146     'link',
2147     'acnc'
2148 );
2149
2150 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2151         'opac.org_unit_hiding.depth',
2152         oils_i18n_gettext(
2153             'opac.org_unit_hiding.depth',
2154             'OPAC: Org Unit Hiding Depth', 
2155             'coust', 
2156             'label'),
2157         oils_i18n_gettext(
2158             'opac.org_unit_hiding.depth',
2159             '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.', 
2160             'coust', 
2161             'description'),
2162         'integer'
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
3174 -- The password reset event_definition in v1.6.1 will be moved to #20.  This
3175 -- renumbering requires some juggling:
3176 --
3177 -- 1. Update any child rows to point to #20.  These updates will temporarily
3178 -- violate foreign key constraints, but that's okay as long as we have a
3179 -- #20 before committing.
3180 --
3181 -- 2. Update the id of the password reset event_definition to 20
3182 --
3183 -- This code might fail in some cases, but should work with all stock 1.6.1
3184 -- instances, whether fresh or via upgrade
3185
3186 UPDATE action_trigger.environment
3187 SET event_def = 20
3188 WHERE event_def = (SELECT id FROM action_trigger.event_definition WHERE hook = 'password.reset_request' ORDER BY id ASC LIMIT 1);
3189
3190 UPDATE action_trigger.event
3191 SET event_def = 20
3192 WHERE event_def = (SELECT id FROM action_trigger.event_definition WHERE hook = 'password.reset_request' ORDER BY id ASC LIMIT 1);
3193
3194 UPDATE action_trigger.event_params
3195 SET event_def = 20
3196 WHERE event_def = (SELECT id FROM action_trigger.event_definition WHERE hook = 'password.reset_request' ORDER BY id ASC LIMIT 1);
3197
3198 UPDATE action_trigger.event_definition
3199 SET id = 20
3200 WHERE id = (SELECT id FROM action_trigger.event_definition WHERE hook = 'password.reset_request' ORDER BY id ASC LIMIT 1);
3201
3202
3203 -- Let's also take the opportunity to rebuild the trigger
3204 -- if it got mangled somehow
3205 INSERT INTO action_trigger.hook (key,core_type,description)
3206  SELECT  'password.reset_request','aupr','Patron has requested a self-serve password reset'
3207    WHERE (SELECT COUNT(*) FROM action_trigger.hook WHERE key = 'password.reset_request') = 0;
3208
3209 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, template)
3210     SELECT 20, 'f', 1, 'Password reset request notification', 'password.reset_request', 'NOOP_True', 'SendEmail', '00:00:01',
3211 $$
3212 [%- USE date -%]
3213 [%- user = target.usr -%]
3214 To: [%- params.recipient_email || user.email %]
3215 From: [%- params.sender_email || user.home_ou.email || default_sender %]
3216 Subject: [% user.home_ou.name %]: library account password reset request
3217
3218 You have received this message because you, or somebody else, requested a reset
3219 of your library system password. If you did not request a reset of your library
3220 system password, just ignore this message and your current password will
3221 continue to work.
3222
3223 If you did request a reset of your library system password, please perform
3224 the following steps to continue the process of resetting your password:
3225
3226 1. Open the following link in a web browser: https://[% params.hostname %]/opac/password/[% params.locale || 'en-US' %]/[% target.uuid %]
3227 The browser displays a password reset form.
3228
3229 2. Enter your new password in the password reset form in the browser. You must
3230 enter the password twice to ensure that you do not make a mistake. If the
3231 passwords match, you will then be able to log in to your library system account
3232 with the new password.
3233
3234 $$
3235    WHERE (SELECT COUNT(*) FROM action_trigger.event_definition WHERE id = 20) = 0;
3236
3237 INSERT INTO action_trigger.environment ( event_def, path)
3238     SELECT 20, 'usr'
3239                 WHERE (SELECT COUNT(*) FROM action_trigger.environment WHERE event_def = 20 AND path = 'usr') = 0;
3240
3241 INSERT INTO action_trigger.environment ( event_def, path)
3242     SELECT 20, 'usr.home_ou'
3243                 WHERE (SELECT COUNT(*) FROM action_trigger.environment WHERE event_def = 20 AND path = 'usr.home_ou') = 0;
3244
3245 INSERT INTO action_trigger.event_definition (
3246         id,
3247         active,
3248         owner,
3249         name,
3250         hook,
3251         validator,
3252         reactor,
3253         template
3254     ) VALUES (
3255         15,
3256         FALSE,
3257         1,
3258         'Email Notice: Patron Acquisition Request marked On-Order.',
3259         'aur.ordered',
3260         'Acq::UserRequestOrdered',
3261         'SendEmail',
3262 $$
3263 [%- USE date -%]
3264 [%- SET li = target.lineitem; -%]
3265 [%- SET user = target.usr -%]
3266 [%- SET title = helpers.get_li_attr("title", "", li.attributes) -%]
3267 [%- SET author = helpers.get_li_attr("author", "", li.attributes) -%]
3268 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) -%]
3269 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) -%]
3270 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3271 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3272
3273 To: [%- params.recipient_email || user.email %]
3274 From: [%- params.sender_email || default_sender %]
3275 Subject: Acquisition Request Notification
3276
3277 Dear [% user.family_name %], [% user.first_given_name %]
3278 Our records indicate the following acquisition request has been placed on order.
3279
3280 Title: [% title %]
3281 [% IF author %]Author: [% author %][% END %]
3282 [% IF edition %]Edition: [% edition %][% END %]
3283 [% IF isbn %]ISBN: [% isbn %][% END %]
3284 [% IF publisher %]Publisher: [% publisher %][% END %]
3285 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3286 Lineitem ID: [% li.id %]
3287 $$
3288     ), (
3289         16,
3290         FALSE,
3291         1,
3292         'Email Notice: Patron Acquisition Request marked Received.',
3293         'aur.received',
3294         'Acq::UserRequestReceived',
3295         'SendEmail',
3296 $$
3297 [%- USE date -%]
3298 [%- SET li = target.lineitem; -%]
3299 [%- SET user = target.usr -%]
3300 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3301 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3302 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3303 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3304 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3305 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3306
3307 To: [%- params.recipient_email || user.email %]
3308 From: [%- params.sender_email || default_sender %]
3309 Subject: Acquisition Request Notification
3310
3311 Dear [% user.family_name %], [% user.first_given_name %]
3312 Our records indicate the materials for the following acquisition request have been received.
3313
3314 Title: [% title %]
3315 [% IF author %]Author: [% author %][% END %]
3316 [% IF edition %]Edition: [% edition %][% END %]
3317 [% IF isbn %]ISBN: [% isbn %][% END %]
3318 [% IF publisher %]Publisher: [% publisher %][% END %]
3319 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3320 Lineitem ID: [% li.id %]
3321 $$
3322     ), (
3323         17,
3324         FALSE,
3325         1,
3326         'Email Notice: Patron Acquisition Request marked Cancelled.',
3327         'aur.cancelled',
3328         'Acq::UserRequestCancelled',
3329         'SendEmail',
3330 $$
3331 [%- USE date -%]
3332 [%- SET li = target.lineitem; -%]
3333 [%- SET user = target.usr -%]
3334 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3335 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3336 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3337 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3338 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3339 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3340
3341 To: [%- params.recipient_email || user.email %]
3342 From: [%- params.sender_email || default_sender %]
3343 Subject: Acquisition Request Notification
3344
3345 Dear [% user.family_name %], [% user.first_given_name %]
3346 Our records indicate the following acquisition request has been cancelled.
3347
3348 Title: [% title %]
3349 [% IF author %]Author: [% author %][% END %]
3350 [% IF edition %]Edition: [% edition %][% END %]
3351 [% IF isbn %]ISBN: [% isbn %][% END %]
3352 [% IF publisher %]Publisher: [% publisher %][% END %]
3353 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3354 Lineitem ID: [% li.id %]
3355 $$
3356     );
3357
3358 INSERT INTO action_trigger.environment (
3359         event_def,
3360         path
3361     ) VALUES 
3362         ( 15, 'lineitem' ),
3363         ( 15, 'lineitem.attributes' ),
3364         ( 15, 'usr' ),
3365
3366         ( 16, 'lineitem' ),
3367         ( 16, 'lineitem.attributes' ),
3368         ( 16, 'usr' ),
3369
3370         ( 17, 'lineitem' ),
3371         ( 17, 'lineitem.attributes' ),
3372         ( 17, 'usr' )
3373     ;
3374
3375 INSERT INTO action_trigger.event_definition
3376 (id, active, owner, name, hook, validator, reactor, cleanup_success, cleanup_failure, delay, delay_field, group_field, template) VALUES
3377 (23, true, 1, 'PO JEDI', 'acqpo.activated', 'Acq::PurchaseOrderEDIRequired', 'GeneratePurchaseOrderJEDI', NULL, NULL, '00:05:00', NULL, NULL,
3378 $$
3379 [%- USE date -%]
3380 [%# start JEDI document 
3381   # Vendor specific kludges:
3382   # BT      - vendcode goes to NAD/BY *suffix*  w/ 91 qualifier
3383   # INGRAM  - vendcode goes to NAD/BY *segment* w/ 91 qualifier (separately)
3384   # BRODART - vendcode goes to FTX segment (lineitem level)
3385 -%]
3386 [%- 
3387 IF target.provider.edi_default.vendcode && target.provider.code == 'BRODART';
3388     xtra_ftx = target.provider.edi_default.vendcode;
3389 END;
3390 -%]
3391 [%- BLOCK big_block -%]
3392 {
3393    "recipient":"[% target.provider.san %]",
3394    "sender":"[% target.ordering_agency.mailing_address.san %]",
3395    "body": [{
3396      "ORDERS":[ "order", {
3397         "po_number":[% target.id %],
3398         "date":"[% date.format(date.now, '%Y%m%d') %]",
3399         "buyer":[
3400             [%   IF   target.provider.edi_default.vendcode && (target.provider.code == 'BT' || target.provider.name.match('(?i)^BAKER & TAYLOR'))  -%]
3401                 {"id-qualifier": 91, "id":"[% target.ordering_agency.mailing_address.san _ ' ' _ target.provider.edi_default.vendcode %]"}
3402             [%- ELSIF target.provider.edi_default.vendcode && target.provider.code == 'INGRAM' -%]
3403                 {"id":"[% target.ordering_agency.mailing_address.san %]"},
3404                 {"id-qualifier": 91, "id":"[% target.provider.edi_default.vendcode %]"}
3405             [%- ELSE -%]
3406                 {"id":"[% target.ordering_agency.mailing_address.san %]"}
3407             [%- END -%]
3408         ],
3409         "vendor":[
3410             [%- # target.provider.name (target.provider.id) -%]
3411             "[% target.provider.san %]",
3412             {"id-qualifier": 92, "id":"[% target.provider.id %]"}
3413         ],
3414         "currency":"[% target.provider.currency_type %]",
3415                 
3416         "items":[
3417         [%- FOR li IN target.lineitems %]
3418         {
3419             "line_index":"[% li.id %]",
3420             "identifiers":[   [%-# li.isbns = helpers.get_li_isbns(li.attributes) %]
3421             [% FOR isbn IN helpers.get_li_isbns(li.attributes) -%]
3422                 [% IF isbn.length == 13 -%]
3423                 {"id-qualifier":"EN","id":"[% isbn %]"},
3424                 [% ELSE -%]
3425                 {"id-qualifier":"IB","id":"[% isbn %]"},
3426                 [%- END %]
3427             [% END %]
3428                 {"id-qualifier":"IN","id":"[% li.id %]"}
3429             ],
3430             "price":[% li.estimated_unit_price || '0.00' %],
3431             "desc":[
3432                 {"BTI":"[% helpers.get_li_attr('title',     '', li.attributes) %]"},
3433                 {"BPU":"[% helpers.get_li_attr('publisher', '', li.attributes) %]"},
3434                 {"BPD":"[% helpers.get_li_attr('pubdate',   '', li.attributes) %]"},
3435                 {"BPH":"[% helpers.get_li_attr('pagination','', li.attributes) %]"}
3436             ],
3437             [%- ftx_vals = []; 
3438                 FOR note IN li.lineitem_notes; 
3439                     NEXT UNLESS note.vendor_public == 't'; 
3440                     ftx_vals.push(note.value); 
3441                 END; 
3442                 IF xtra_ftx;           ftx_vals.unshift(xtra_ftx); END; 
3443                 IF ftx_vals.size == 0; ftx_vals.unshift('');       END;  # BT needs FTX+LIN for every LI, even if it is an empty one
3444             -%]
3445
3446             "free-text":[ 
3447                 [% FOR note IN ftx_vals -%] "[% note %]"[% UNLESS loop.last %], [% END %][% END %] 
3448             ],            
3449             "quantity":[% li.lineitem_details.size %]
3450         }[% UNLESS loop.last %],[% END %]
3451         [%-# TODO: lineitem details (later) -%]
3452         [% END %]
3453         ],
3454         "line_items":[% target.lineitems.size %]
3455      }]  [%# close ORDERS array %]
3456    }]    [%# close  body  array %]
3457 }
3458 [% END %]
3459 [% tempo = PROCESS big_block; helpers.escape_json(tempo) %]
3460
3461 $$);
3462
3463 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3464   (23, 'lineitems.attributes'), 
3465   (23, 'lineitems.lineitem_details'), 
3466   (23, 'lineitems.lineitem_notes'), 
3467   (23, 'ordering_agency.mailing_address'), 
3468   (23, 'provider');
3469
3470 UPDATE action_trigger.event_definition SET template = 
3471 $$
3472 [%- USE date -%]
3473 [%-
3474     # find a lineitem attribute by name and optional type
3475     BLOCK get_li_attr;
3476         FOR attr IN li.attributes;
3477             IF attr.attr_name == attr_name;
3478                 IF !attr_type OR attr_type == attr.attr_type;
3479                     attr.attr_value;
3480                     LAST;
3481                 END;
3482             END;
3483         END;
3484     END
3485 -%]
3486
3487 <h2>Purchase Order [% target.id %]</h2>
3488 <br/>
3489 date <b>[% date.format(date.now, '%Y%m%d') %]</b>
3490 <br/>
3491
3492 <style>
3493     table td { padding:5px; border:1px solid #aaa;}
3494     table { width:95%; border-collapse:collapse; }
3495     #vendor-notes { padding:5px; border:1px solid #aaa; }
3496 </style>
3497 <table id='vendor-table'>
3498   <tr>
3499     <td valign='top'>Vendor</td>
3500     <td>
3501       <div>[% target.provider.name %]</div>
3502       <div>[% target.provider.addresses.0.street1 %]</div>
3503       <div>[% target.provider.addresses.0.street2 %]</div>
3504       <div>[% target.provider.addresses.0.city %]</div>
3505       <div>[% target.provider.addresses.0.state %]</div>
3506       <div>[% target.provider.addresses.0.country %]</div>
3507       <div>[% target.provider.addresses.0.post_code %]</div>
3508     </td>
3509     <td valign='top'>Ship to / Bill to</td>
3510     <td>
3511       <div>[% target.ordering_agency.name %]</div>
3512       <div>[% target.ordering_agency.billing_address.street1 %]</div>
3513       <div>[% target.ordering_agency.billing_address.street2 %]</div>
3514       <div>[% target.ordering_agency.billing_address.city %]</div>
3515       <div>[% target.ordering_agency.billing_address.state %]</div>
3516       <div>[% target.ordering_agency.billing_address.country %]</div>
3517       <div>[% target.ordering_agency.billing_address.post_code %]</div>
3518     </td>
3519   </tr>
3520 </table>
3521
3522 <br/><br/>
3523 <fieldset id='vendor-notes'>
3524     <legend>Notes to the Vendor</legend>
3525     <ul>
3526     [% FOR note IN target.notes %]
3527         [% IF note.vendor_public == 't' %]
3528             <li>[% note.value %]</li>
3529         [% END %]
3530     [% END %]
3531     </ul>
3532 </fieldset>
3533 <br/><br/>
3534
3535 <table>
3536   <thead>
3537     <tr>
3538       <th>PO#</th>
3539       <th>ISBN or Item #</th>
3540       <th>Title</th>
3541       <th>Quantity</th>
3542       <th>Unit Price</th>
3543       <th>Line Total</th>
3544       <th>Notes</th>
3545     </tr>
3546   </thead>
3547   <tbody>
3548
3549   [% subtotal = 0 %]
3550   [% FOR li IN target.lineitems %]
3551
3552   <tr>
3553     [% count = li.lineitem_details.size %]
3554     [% price = li.estimated_unit_price %]
3555     [% litotal = (price * count) %]
3556     [% subtotal = subtotal + litotal %]
3557     [% isbn = PROCESS get_li_attr attr_name = 'isbn' %]
3558     [% ident = PROCESS get_li_attr attr_name = 'identifier' %]
3559
3560     <td>[% target.id %]</td>
3561     <td>[% isbn || ident %]</td>
3562     <td>[% PROCESS get_li_attr attr_name = 'title' %]</td>
3563     <td>[% count %]</td>
3564     <td>[% price %]</td>
3565     <td>[% litotal %]</td>
3566     <td>
3567         <ul>
3568         [% FOR note IN li.lineitem_notes %]
3569             [% IF note.vendor_public == 't' %]
3570                 <li>[% note.value %]</li>
3571             [% END %]
3572         [% END %]
3573         </ul>
3574     </td>
3575   </tr>
3576   [% END %]
3577   <tr>
3578     <td/><td/><td/><td/>
3579     <td>Subtotal</td>
3580     <td>[% subtotal %]</td>
3581   </tr>
3582   </tbody>
3583 </table>
3584
3585 <br/>
3586
3587 Total Line Item Count: [% target.lineitems.size %]
3588 $$
3589 WHERE id = 4;
3590
3591 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3592     (4, 'lineitems.lineitem_notes'),
3593     (4, 'notes');
3594
3595 INSERT INTO action_trigger.environment (event_def, path) VALUES
3596     ( 14, 'lineitem_notes.alert_text' ),
3597     ( 14, 'distribution_formulas.formula' ),
3598     ( 14, 'lineitem_details.fund' ),
3599     ( 14, 'lineitem_details.eg_copy_id' ),
3600     ( 14, 'lineitem_details.eg_copy_id.call_number' )
3601 ;
3602
3603 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3604         'aur.created',
3605         'aur',
3606         oils_i18n_gettext(
3607             'aur.created',
3608             'A patron has made an acquisitions request.',
3609             'ath',
3610             'description'
3611         ),
3612         TRUE
3613     ), (
3614         'aur.rejected',
3615         'aur',
3616         oils_i18n_gettext(
3617             'aur.rejected',
3618             'A patron acquisition request has been rejected.',
3619             'ath',
3620             'description'
3621         ),
3622         TRUE
3623     )
3624 ;
3625
3626 INSERT INTO action_trigger.event_definition (
3627         id,
3628         active,
3629         owner,
3630         name,
3631         hook,
3632         validator,
3633         reactor,
3634         template
3635     ) VALUES (
3636         18,
3637         FALSE,
3638         1,
3639         'Email Notice: Acquisition Request created.',
3640         'aur.created',
3641         'NOOP_True',
3642         'SendEmail',
3643 $$
3644 [%- USE date -%]
3645 [%- SET user = target.usr -%]
3646 [%- SET title = target.title -%]
3647 [%- SET author = target.author -%]
3648 [%- SET isxn = target.isxn -%]
3649 [%- SET publisher = target.publisher -%]
3650 [%- SET pubdate = target.pubdate -%]
3651
3652 To: [%- params.recipient_email || user.email %]
3653 From: [%- params.sender_email || default_sender %]
3654 Subject: Acquisition Request Notification
3655
3656 Dear [% user.family_name %], [% user.first_given_name %]
3657 Our records indicate that you have made the following acquisition request:
3658
3659 Title: [% title %]
3660 [% IF author %]Author: [% author %][% END %]
3661 [% IF edition %]Edition: [% edition %][% END %]
3662 [% IF isbn %]ISXN: [% isxn %][% END %]
3663 [% IF publisher %]Publisher: [% publisher %][% END %]
3664 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3665 $$
3666     ), (
3667         19,
3668         FALSE,
3669         1,
3670         'Email Notice: Acquisition Request Rejected.',
3671         'aur.rejected',
3672         'NOOP_True',
3673         'SendEmail',
3674 $$
3675 [%- USE date -%]
3676 [%- SET user = target.usr -%]
3677 [%- SET title = target.title -%]
3678 [%- SET author = target.author -%]
3679 [%- SET isxn = target.isxn -%]
3680 [%- SET publisher = target.publisher -%]
3681 [%- SET pubdate = target.pubdate -%]
3682 [%- SET cancel_reason = target.cancel_reason.description -%]
3683
3684 To: [%- params.recipient_email || user.email %]
3685 From: [%- params.sender_email || default_sender %]
3686 Subject: Acquisition Request Notification
3687
3688 Dear [% user.family_name %], [% user.first_given_name %]
3689 Our records indicate the following acquisition request has been rejected for this reason: [% cancel_reason %]
3690
3691 Title: [% title %]
3692 [% IF author %]Author: [% author %][% END %]
3693 [% IF edition %]Edition: [% edition %][% END %]
3694 [% IF isbn %]ISBN: [% isbn %][% END %]
3695 [% IF publisher %]Publisher: [% publisher %][% END %]
3696 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3697 $$
3698     );
3699
3700 INSERT INTO action_trigger.environment (
3701         event_def,
3702         path
3703     ) VALUES 
3704         ( 18, 'usr' ),
3705         ( 19, 'usr' ),
3706         ( 19, 'cancel_reason' )
3707     ;
3708
3709 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3710     VALUES (
3711         'format.acqcle.html',
3712         'acqcle',
3713         'Formats claim events into a voucher',
3714         TRUE
3715     );
3716
3717 INSERT INTO action_trigger.event_definition (
3718         id, active, owner, name, hook, group_field,
3719         validator, reactor, granularity, template
3720     ) VALUES (
3721         21,
3722         TRUE,
3723         1,
3724         'Claim Voucher',
3725         'format.acqcle.html',
3726         'claim',
3727         'NOOP_True',
3728         'ProcessTemplate',
3729         'print-on-demand',
3730 $$
3731 [%- USE date -%]
3732 [%- SET claim = target.0.claim -%]
3733 <!-- This will need refined/prettified. -->
3734 <div class="acq-claim-voucher">
3735     <h2>Claim: [% claim.id %] ([% claim.type.code %])</h2>
3736     <h3>Against: [%- helpers.get_li_attr("title", "", claim.lineitem_detail.lineitem.attributes) -%]</h3>
3737     <ul>
3738         [% FOR event IN target %]
3739         <li>
3740             Event type: [% event.type.code %]
3741             [% IF event.type.library_initiated %](Library initiated)[% END %]
3742             <br />
3743             Event date: [% event.event_date %]<br />
3744             Order date: [% event.claim.lineitem_detail.lineitem.purchase_order.order_date %]<br />
3745             Expected receive date: [% event.claim.lineitem_detail.lineitem.expected_recv_time %]<br />
3746             Initiated by: [% event.creator.family_name %], [% event.creator.first_given_name %] [% event.creator.second_given_name %]<br />
3747             Barcode: [% event.claim.lineitem_detail.barcode %]; Fund:
3748             [% event.claim.lineitem_detail.fund.code %]
3749             ([% event.claim.lineitem_detail.fund.year %])
3750         </li>
3751         [% END %]
3752     </ul>
3753 </div>
3754 $$
3755 );
3756
3757 INSERT INTO action_trigger.environment (event_def, path) VALUES
3758     (21, 'claim'),
3759     (21, 'claim.type'),
3760     (21, 'claim.lineitem_detail'),
3761     (21, 'claim.lineitem_detail.fund'),
3762     (21, 'claim.lineitem_detail.lineitem.attributes'),
3763     (21, 'claim.lineitem_detail.lineitem.purchase_order'),
3764     (21, 'creator'),
3765     (21, 'type')
3766 ;
3767
3768 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3769     VALUES (
3770         'format.acqinv.html',
3771         'acqinv',
3772         'Formats invoices into a voucher',
3773         TRUE
3774     );
3775
3776 INSERT INTO action_trigger.event_definition (
3777         id, active, owner, name, hook,
3778         validator, reactor, granularity, template
3779     ) VALUES (
3780         22,
3781         TRUE,
3782         1,
3783         'Invoice',
3784         'format.acqinv.html',
3785         'NOOP_True',
3786         'ProcessTemplate',
3787         'print-on-demand',
3788 $$
3789 [% FILTER collapse %]
3790 [%- SET invoice = target -%]
3791 <!-- This lacks totals, info about funds (for invoice entries,
3792     funds are per-LID!), and general refinement -->
3793 <div class="acq-invoice-voucher">
3794     <h1>Invoice</h1>
3795     <div>
3796         <strong>No.</strong> [% invoice.inv_ident %]
3797         [% IF invoice.inv_type %]
3798             / <strong>Type:</strong>[% invoice.inv_type %]
3799         [% END %]
3800     </div>
3801     <div>
3802         <dl>
3803             [% BLOCK ent_with_address %]
3804             <dt>[% ent_label %]: [% ent.name %] ([% ent.code %])</dt>
3805             <dd>
3806                 [% IF ent.addresses.0 %]
3807                     [% SET addr = ent.addresses.0 %]
3808                     [% addr.street1 %]<br />
3809                     [% IF addr.street2 %][% addr.street2 %]<br />[% END %]
3810                     [% addr.city %],
3811                     [% IF addr.county %] [% addr.county %], [% END %]
3812                     [% IF addr.state %] [% addr.state %] [% END %]
3813                     [% IF addr.post_code %][% addr.post_code %][% END %]<br />
3814                     [% IF addr.country %] [% addr.country %] [% END %]
3815                 [% END %]
3816                 <p>
3817                     [% IF ent.phone %] Phone: [% ent.phone %]<br />[% END %]
3818                     [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]<br />[% END %]
3819                     [% IF ent.url %] URL: [% ent.url %]<br />[% END %]
3820                     [% IF ent.email %] E-mail: [% ent.email %] [% END %]
3821                 </p>
3822             </dd>
3823             [% END %]
3824             [% INCLUDE ent_with_address
3825                 ent = invoice.provider
3826                 ent_label = "Provider" %]
3827             [% INCLUDE ent_with_address
3828                 ent = invoice.shipper
3829                 ent_label = "Shipper" %]
3830             <dt>Receiver</dt>
3831             <dd>
3832                 [% invoice.receiver.name %] ([% invoice.receiver.shortname %])
3833             </dd>
3834             <dt>Received</dt>
3835             <dd>
3836                 [% helpers.format_date(invoice.recv_date) %] by
3837                 [% invoice.recv_method %]
3838             </dd>
3839             [% IF invoice.note %]
3840                 <dt>Note</dt>
3841                 <dd>
3842                     [% invoice.note %]
3843                 </dd>
3844             [% END %]
3845         </dl>
3846     </div>
3847     <ul>
3848         [% FOR entry IN invoice.entries %]
3849             <li>
3850                 [% IF entry.lineitem %]
3851                     Title: [% helpers.get_li_attr(
3852                         "title", "", entry.lineitem.attributes
3853                     ) %]<br />
3854                     Author: [% helpers.get_li_attr(
3855                         "author", "", entry.lineitem.attributes
3856                     ) %]
3857                 [% END %]
3858                 [% IF entry.purchase_order %]
3859                     (PO: [% entry.purchase_order.name %])
3860                 [% END %]<br />
3861                 Invoice item count: [% entry.inv_item_count %]
3862                 [% IF entry.phys_item_count %]
3863                     / Physical item count: [% entry.phys_item_count %]
3864                 [% END %]
3865                 <br />
3866                 [% IF entry.cost_billed %]
3867                     Cost billed: [% entry.cost_billed %]
3868                     [% IF entry.billed_per_item %](per item)[% END %]
3869                     <br />
3870                 [% END %]
3871                 [% IF entry.actual_cost %]
3872                     Actual cost: [% entry.actual_cost %]<br />
3873                 [% END %]
3874                 [% IF entry.amount_paid %]
3875                     Amount paid: [% entry.amount_paid %]<br />
3876                 [% END %]
3877                 [% IF entry.note %]Note: [% entry.note %][% END %]
3878             </li>
3879         [% END %]
3880         [% FOR item IN invoice.items %]
3881             <li>
3882                 [% IF item.inv_item_type %]
3883                     Item Type: [% item.inv_item_type %]<br />
3884                 [% END %]
3885                 [% IF item.title %]Title/Description:
3886                     [% item.title %]<br />
3887                 [% END %]
3888                 [% IF item.author %]Author: [% item.author %]<br />[% END %]
3889                 [% IF item.purchase_order %]PO: [% item.purchase_order %]<br />[% END %]
3890                 [% IF item.note %]Note: [% item.note %]<br />[% END %]
3891                 [% IF item.cost_billed %]
3892                     Cost billed: [% item.cost_billed %]<br />
3893                 [% END %]
3894                 [% IF item.actual_cost %]
3895                     Actual cost: [% item.actual_cost %]<br />
3896                 [% END %]
3897                 [% IF item.amount_paid %]
3898                     Amount paid: [% item.amount_paid %]<br />
3899                 [% END %]
3900             </li>
3901         [% END %]
3902     </ul>
3903 </div>
3904 [% END %]
3905 $$
3906 );
3907
3908 UPDATE action_trigger.event_definition SET template = $$[% FILTER collapse %]
3909 [%- SET invoice = target -%]
3910 <!-- This lacks general refinement -->
3911 <div class="acq-invoice-voucher">
3912     <h1>Invoice</h1>
3913     <div>
3914         <strong>No.</strong> [% invoice.inv_ident %]
3915         [% IF invoice.inv_type %]
3916             / <strong>Type:</strong>[% invoice.inv_type %]
3917         [% END %]
3918     </div>
3919     <div>
3920         <dl>
3921             [% BLOCK ent_with_address %]
3922             <dt>[% ent_label %]: [% ent.name %] ([% ent.code %])</dt>
3923             <dd>
3924                 [% IF ent.addresses.0 %]
3925                     [% SET addr = ent.addresses.0 %]
3926                     [% addr.street1 %]<br />
3927                     [% IF addr.street2 %][% addr.street2 %]<br />[% END %]
3928                     [% addr.city %],
3929                     [% IF addr.county %] [% addr.county %], [% END %]
3930                     [% IF addr.state %] [% addr.state %] [% END %]
3931                     [% IF addr.post_code %][% addr.post_code %][% END %]<br />
3932                     [% IF addr.country %] [% addr.country %] [% END %]
3933                 [% END %]
3934                 <p>
3935                     [% IF ent.phone %] Phone: [% ent.phone %]<br />[% END %]
3936                     [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]<br />[% END %]
3937                     [% IF ent.url %] URL: [% ent.url %]<br />[% END %]
3938                     [% IF ent.email %] E-mail: [% ent.email %] [% END %]
3939                 </p>
3940             </dd>
3941             [% END %]
3942             [% INCLUDE ent_with_address
3943                 ent = invoice.provider
3944                 ent_label = "Provider" %]
3945             [% INCLUDE ent_with_address
3946                 ent = invoice.shipper
3947                 ent_label = "Shipper" %]
3948             <dt>Receiver</dt>
3949             <dd>
3950                 [% invoice.receiver.name %] ([% invoice.receiver.shortname %])
3951             </dd>
3952             <dt>Received</dt>
3953             <dd>
3954                 [% helpers.format_date(invoice.recv_date) %] by
3955                 [% invoice.recv_method %]
3956             </dd>
3957             [% IF invoice.note %]
3958                 <dt>Note</dt>
3959                 <dd>
3960                     [% invoice.note %]
3961                 </dd>
3962             [% END %]
3963         </dl>
3964     </div>
3965     <ul>
3966         [% FOR entry IN invoice.entries %]
3967             <li>
3968                 [% IF entry.lineitem %]
3969                     Title: [% helpers.get_li_attr(
3970                         "title", "", entry.lineitem.attributes
3971                     ) %]<br />
3972                     Author: [% helpers.get_li_attr(
3973                         "author", "", entry.lineitem.attributes
3974                     ) %]
3975                 [% END %]
3976                 [% IF entry.purchase_order %]
3977                     (PO: [% entry.purchase_order.name %])
3978                 [% END %]<br />
3979                 Invoice item count: [% entry.inv_item_count %]
3980                 [% IF entry.phys_item_count %]
3981                     / Physical item count: [% entry.phys_item_count %]
3982                 [% END %]
3983                 <br />
3984                 [% IF entry.cost_billed %]
3985                     Cost billed: [% entry.cost_billed %]
3986                     [% IF entry.billed_per_item %](per item)[% END %]
3987                     <br />
3988                 [% END %]
3989                 [% IF entry.actual_cost %]
3990                     Actual cost: [% entry.actual_cost %]<br />
3991                 [% END %]
3992                 [% IF entry.amount_paid %]
3993                     Amount paid: [% entry.amount_paid %]<br />
3994                 [% END %]
3995                 [% IF entry.note %]Note: [% entry.note %][% END %]
3996             </li>
3997         [% END %]
3998         [% FOR item IN invoice.items %]
3999             <li>
4000                 [% IF item.inv_item_type %]
4001                     Item Type: [% item.inv_item_type %]<br />
4002                 [% END %]
4003                 [% IF item.title %]Title/Description:
4004                     [% item.title %]<br />
4005                 [% END %]
4006                 [% IF item.author %]Author: [% item.author %]<br />[% END %]
4007                 [% IF item.purchase_order %]PO: [% item.purchase_order %]<br />[% END %]
4008                 [% IF item.note %]Note: [% item.note %]<br />[% END %]
4009                 [% IF item.cost_billed %]
4010                     Cost billed: [% item.cost_billed %]<br />
4011                 [% END %]
4012                 [% IF item.actual_cost %]
4013                     Actual cost: [% item.actual_cost %]<br />
4014                 [% END %]
4015                 [% IF item.amount_paid %]
4016                     Amount paid: [% item.amount_paid %]<br />
4017                 [% END %]
4018             </li>
4019         [% END %]
4020     </ul>
4021     <div>
4022         Amounts spent per fund:
4023         <table>
4024         [% FOR blob IN user_data %]
4025             <tr>
4026                 <th style="text-align: left;">[% blob.fund.code %] ([% blob.fund.year %]):</th>
4027                 <td>$[% blob.total %]</td>
4028             </tr>
4029         [% END %]
4030         </table>
4031     </div>
4032 </div>
4033 [% END %]$$ WHERE id = 22;
4034 INSERT INTO action_trigger.environment (event_def, path) VALUES
4035     (22, 'provider'),
4036     (22, 'provider.addresses'),
4037     (22, 'shipper'),
4038     (22, 'shipper.addresses'),
4039     (22, 'receiver'),
4040     (22, 'entries'),
4041     (22, 'entries.purchase_order'),
4042     (22, 'entries.lineitem'),
4043     (22, 'entries.lineitem.attributes'),
4044     (22, 'items')
4045 ;
4046
4047 INSERT INTO action_trigger.environment (event_def, path) VALUES 
4048   (23, 'provider.edi_default');
4049
4050 INSERT INTO action_trigger.validator (module, description) 
4051     VALUES (
4052         'Acq::PurchaseOrderEDIRequired',
4053         oils_i18n_gettext(
4054             'Acq::PurchaseOrderEDIRequired',
4055             'Purchase order is delivered via EDI',
4056             'atval',
4057             'description'
4058         )
4059     );
4060
4061 INSERT INTO action_trigger.reactor (module, description)
4062     VALUES (
4063         'GeneratePurchaseOrderJEDI',
4064         oils_i18n_gettext(
4065             'GeneratePurchaseOrderJEDI',
4066             'Creates purchase order JEDI (JSON EDI) for subsequent EDI processing',
4067             'atreact',
4068             'description'
4069         )
4070     );
4071
4072 UPDATE action_trigger.hook 
4073     SET 
4074         key = 'acqpo.activated', 
4075         passive = FALSE,
4076         description = oils_i18n_gettext(
4077             'acqpo.activated',
4078             'Purchase order was activated',
4079             'ath',
4080             'description'
4081         )
4082     WHERE key = 'format.po.jedi';
4083
4084 -- We just changed a key in action_trigger.hook.  Now redirect any
4085 -- child rows to point to the new key.  (There probably aren't any;
4086 -- this is just a precaution against possible local modifications.)
4087
4088 UPDATE action_trigger.event_definition
4089 SET hook = 'acqpo.activated'
4090 WHERE hook = 'format.po.jedi';
4091
4092 INSERT INTO action_trigger.reactor (module, description) VALUES (
4093     'AstCall', 'Possibly place a phone call with Asterisk'
4094 );
4095
4096 INSERT INTO
4097     action_trigger.event_definition (
4098         id, active, owner, name, hook, validator, reactor,
4099         cleanup_success, cleanup_failure, delay, delay_field, group_field,
4100         max_delay, granularity, usr_field, opt_in_setting, template
4101     ) VALUES (
4102         24,
4103         FALSE,
4104         1,
4105         'Telephone Overdue Notice',
4106         'checkout.due', 'NOOP_True', 'AstCall',
4107         DEFAULT, DEFAULT, '5 seconds', 'due_date', 'usr',
4108         DEFAULT, DEFAULT, DEFAULT, DEFAULT,
4109         $$
4110 [% phone = target.0.usr.day_phone | replace('[\s\-\(\)]', '') -%]
4111 [% IF phone.match('^[2-9]') %][% country = 1 %][% ELSE %][% country = '' %][% END -%]
4112 Channel: [% channel_prefix %]/[% country %][% phone %]
4113 Context: overdue-test
4114 MaxRetries: 1
4115 RetryTime: 60
4116 WaitTime: 30
4117 Extension: 10
4118 Archive: 1
4119 Set: eg_user_id=[% target.0.usr.id %]
4120 Set: items=[% target.size %]
4121 Set: titlestring=[% titles = [] %][% FOR circ IN target %][% titles.push(circ.target_copy.call_number.record.simple_record.title) %][% END %][% titles.join(". ") %]
4122 $$
4123     );
4124
4125 INSERT INTO
4126     action_trigger.environment (id, event_def, path)
4127     VALUES
4128         (DEFAULT, 24, 'target_copy.call_number.record.simple_record'),
4129         (DEFAULT, 24, 'usr')
4130     ;
4131
4132 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4133         'circ.format.history.email',
4134         'circ', 
4135         oils_i18n_gettext(
4136             'circ.format.history.email',
4137             'An email has been requested for a circ history.',
4138             'ath',
4139             'description'
4140         ), 
4141         FALSE
4142     )
4143     ,(
4144         'circ.format.history.print',
4145         'circ', 
4146         oils_i18n_gettext(
4147             'circ.format.history.print',
4148             'A circ history needs to be formatted for printing.',
4149             'ath',
4150             'description'
4151         ), 
4152         FALSE
4153     )
4154     ,(
4155         'ahr.format.history.email',
4156         'ahr', 
4157         oils_i18n_gettext(
4158             'ahr.format.history.email',
4159             'An email has been requested for a hold request history.',
4160             'ath',
4161             'description'
4162         ), 
4163         FALSE
4164     )
4165     ,(
4166         'ahr.format.history.print',
4167         'ahr', 
4168         oils_i18n_gettext(
4169             'ahr.format.history.print',
4170             'A hold request history needs to be formatted for printing.',
4171             'ath',
4172             'description'
4173         ), 
4174         FALSE
4175     )
4176
4177 ;
4178
4179 INSERT INTO action_trigger.event_definition (
4180         id,
4181         active,
4182         owner,
4183         name,
4184         hook,
4185         validator,
4186         reactor,
4187         group_field,
4188         granularity,
4189         template
4190     ) VALUES (
4191         25,
4192         TRUE,
4193         1,
4194         'circ.history.email',
4195         'circ.format.history.email',
4196         'NOOP_True',
4197         'SendEmail',
4198         'usr',
4199         NULL,
4200 $$
4201 [%- USE date -%]
4202 [%- SET user = target.0.usr -%]
4203 To: [%- params.recipient_email || user.email %]
4204 From: [%- params.sender_email || default_sender %]
4205 Subject: Circulation History
4206
4207     [% FOR circ IN target %]
4208             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4209             Barcode: [% circ.target_copy.barcode %]
4210             Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]
4211             Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
4212             Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]
4213     [% END %]
4214 $$
4215     )
4216     ,(
4217         26,
4218         TRUE,
4219         1,
4220         'circ.history.print',
4221         'circ.format.history.print',
4222         'NOOP_True',
4223         'ProcessTemplate',
4224         'usr',
4225         'print-on-demand',
4226 $$
4227 [%- USE date -%]
4228 <div>
4229     <style> li { padding: 8px; margin 5px; }</style>
4230     <div>[% date.format %]</div>
4231     <br/>
4232
4233     [% user.family_name %], [% user.first_given_name %]
4234     <ol>
4235     [% FOR circ IN target %]
4236         <li>
4237             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
4238             <div>Barcode: [% circ.target_copy.barcode %]</div>
4239             <div>Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]</div>
4240             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
4241             <div>Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]</div>
4242         </li>
4243     [% END %]
4244     </ol>
4245 </div>
4246 $$
4247     )
4248     ,(
4249         27,
4250         TRUE,
4251         1,
4252         'ahr.history.email',
4253         'ahr.format.history.email',
4254         'NOOP_True',
4255         'SendEmail',
4256         'usr',
4257         NULL,
4258 $$
4259 [%- USE date -%]
4260 [%- SET user = target.0.usr -%]
4261 To: [%- params.recipient_email || user.email %]
4262 From: [%- params.sender_email || default_sender %]
4263 Subject: Hold Request History
4264
4265     [% FOR hold IN target %]
4266             [% helpers.get_copy_bib_basics(hold.current_copy.id).title %]
4267             Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]
4268             [% IF hold.fulfillment_time %]Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %][% END %]
4269     [% END %]
4270 $$
4271     )
4272     ,(
4273         28,
4274         TRUE,
4275         1,
4276         'ahr.history.print',
4277         'ahr.format.history.print',
4278         'NOOP_True',
4279         'ProcessTemplate',
4280         'usr',
4281         'print-on-demand',
4282 $$
4283 [%- USE date -%]
4284 <div>
4285     <style> li { padding: 8px; margin 5px; }</style>
4286     <div>[% date.format %]</div>
4287     <br/>
4288
4289     [% user.family_name %], [% user.first_given_name %]
4290     <ol>
4291     [% FOR hold IN target %]
4292         <li>
4293             <div>[% helpers.get_copy_bib_basics(hold.current_copy.id).title %]</div>
4294             <div>Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]</div>
4295             [% IF hold.fulfillment_time %]<div>Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %]</div>[% END %]
4296         </li>
4297     [% END %]
4298     </ol>
4299 </div>
4300 $$
4301     )
4302
4303 ;
4304
4305 INSERT INTO action_trigger.environment (
4306         event_def,
4307         path
4308     ) VALUES 
4309          ( 25, 'target_copy')
4310         ,( 25, 'usr' )
4311         ,( 26, 'target_copy' )
4312         ,( 26, 'usr' )
4313         ,( 27, 'current_copy' )
4314         ,( 27, 'usr' )
4315         ,( 28, 'current_copy' )
4316         ,( 28, 'usr' )
4317 ;
4318
4319 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4320         'money.format.payment_receipt.email',
4321         'mp', 
4322         oils_i18n_gettext(
4323             'money.format.payment_receipt.email',
4324             'An email has been requested for a payment receipt.',
4325             'ath',
4326             'description'
4327         ), 
4328         FALSE
4329     )
4330     ,(
4331         'money.format.payment_receipt.print',
4332         'mp', 
4333         oils_i18n_gettext(
4334             'money.format.payment_receipt.print',
4335             'A payment receipt needs to be formatted for printing.',
4336             'ath',
4337             'description'
4338         ), 
4339         FALSE
4340     )
4341 ;
4342
4343 INSERT INTO action_trigger.event_definition (
4344         id,
4345         active,
4346         owner,
4347         name,
4348         hook,
4349         validator,
4350         reactor,
4351         group_field,
4352         granularity,
4353         template
4354     ) VALUES (
4355         29,
4356         TRUE,
4357         1,
4358         'money.payment_receipt.email',
4359         'money.format.payment_receipt.email',
4360         'NOOP_True',
4361         'SendEmail',
4362         'xact.usr',
4363         NULL,
4364 $$
4365 [%- USE date -%]
4366 [%- SET user = target.0.xact.usr -%]
4367 To: [%- params.recipient_email || user.email %]
4368 From: [%- params.sender_email || default_sender %]
4369 Subject: Payment Receipt
4370
4371 [% date.format -%]
4372 [%- SET xact_mp_hash = {} -%]
4373 [%- FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions -%]
4374     [%- SET xact_id = mp.xact.id -%]
4375     [%- IF ! xact_mp_hash.defined( xact_id ) -%][%- xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } -%][%- END -%]
4376     [%- xact_mp_hash.$xact_id.payments.push(mp) -%]
4377 [%- END -%]
4378 [%- FOR xact_id IN xact_mp_hash.keys.sort -%]
4379     [%- SET xact = xact_mp_hash.$xact_id.xact %]
4380 Transaction ID: [% xact_id %]
4381     [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4382     [% ELSE %]Miscellaneous
4383     [% END %]
4384     Line item billings:
4385         [%- SET mb_type_hash = {} -%]
4386         [%- FOR mb IN xact.billings %][%# Group billings by their btype -%]
4387             [%- IF mb.voided == 'f' -%]
4388                 [%- SET mb_type = mb.btype.id -%]
4389                 [%- IF ! mb_type_hash.defined( mb_type ) -%][%- mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } -%][%- END -%]
4390                 [%- IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) -%][%- mb_type_hash.$mb_type.first_ts = mb.billing_ts -%][%- END -%]
4391                 [%- mb_type_hash.$mb_type.last_ts = mb.billing_ts -%]
4392                 [%- mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount -%]
4393                 [%- mb_type_hash.$mb_type.billings.push( mb ) -%]
4394             [%- END -%]
4395         [%- END -%]
4396         [%- FOR mb_type IN mb_type_hash.keys.sort -%]
4397             [%- IF mb_type == 1 %][%-# Consolidated view of overdue billings -%]
4398                 $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4399                     on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4400             [%- ELSE -%][%# all other billings show individually %]
4401                 [% FOR mb IN mb_type_hash.$mb_type.billings %]
4402                     $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4403                 [% END %]
4404             [% END %]
4405         [% END %]
4406     Line item payments:
4407         [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4408             Payment ID: [% mp.id %]
4409                 Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4410                     [% CASE "cash_payment" %]cash
4411                     [% CASE "check_payment" %]check
4412                     [% CASE "credit_card_payment" %]credit card (
4413                         [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4414                         [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4415                         [% cc_chunks.last -%]
4416                         exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4417                     )
4418                     [% CASE "credit_payment" %]credit
4419                     [% CASE "forgive_payment" %]forgiveness
4420                     [% CASE "goods_payment" %]goods
4421                     [% CASE "work_payment" %]work
4422                 [%- END %] on [% mp.payment_ts %] [% mp.note %]
4423         [% END %]
4424 [% END %]
4425 $$
4426     )
4427     ,(
4428         30,
4429         TRUE,
4430         1,
4431         'money.payment_receipt.print',
4432         'money.format.payment_receipt.print',
4433         'NOOP_True',
4434         'ProcessTemplate',
4435         'xact.usr',
4436         'print-on-demand',
4437 $$
4438 [%- USE date -%][%- SET user = target.0.xact.usr -%]
4439 <div style="li { padding: 8px; margin 5px; }">
4440     <div>[% date.format %]</div><br/>
4441     <ol>
4442     [% SET xact_mp_hash = {} %]
4443     [% FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions %]
4444         [% SET xact_id = mp.xact.id %]
4445         [% IF ! xact_mp_hash.defined( xact_id ) %][% xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } %][% END %]
4446         [% xact_mp_hash.$xact_id.payments.push(mp) %]
4447     [% END %]
4448     [% FOR xact_id IN xact_mp_hash.keys.sort %]
4449         [% SET xact = xact_mp_hash.$xact_id.xact %]
4450         <li>Transaction ID: [% xact_id %]
4451             [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4452             [% ELSE %]Miscellaneous
4453             [% END %]
4454             Line item billings:<ol>
4455                 [% SET mb_type_hash = {} %]
4456                 [% FOR mb IN xact.billings %][%# Group billings by their btype %]
4457                     [% IF mb.voided == 'f' %]
4458                         [% SET mb_type = mb.btype.id %]
4459                         [% IF ! mb_type_hash.defined( mb_type ) %][% mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } %][% END %]
4460                         [% IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) %][% mb_type_hash.$mb_type.first_ts = mb.billing_ts %][% END %]
4461                         [% mb_type_hash.$mb_type.last_ts = mb.billing_ts %]
4462                         [% mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount %]
4463                         [% mb_type_hash.$mb_type.billings.push( mb ) %]
4464                     [% END %]
4465                 [% END %]
4466                 [% FOR mb_type IN mb_type_hash.keys.sort %]
4467                     <li>[% IF mb_type == 1 %][%# Consolidated view of overdue billings %]
4468                         $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4469                             on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4470                     [% ELSE %][%# all other billings show individually %]
4471                         [% FOR mb IN mb_type_hash.$mb_type.billings %]
4472                             $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4473                         [% END %]
4474                     [% END %]</li>
4475                 [% END %]
4476             </ol>
4477             Line item payments:<ol>
4478                 [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4479                     <li>Payment ID: [% mp.id %]
4480                         Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4481                             [% CASE "cash_payment" %]cash
4482                             [% CASE "check_payment" %]check
4483                             [% CASE "credit_card_payment" %]credit card (
4484                                 [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4485                                 [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4486                                 [% cc_chunks.last -%]
4487                                 exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4488                             )
4489                             [% CASE "credit_payment" %]credit
4490                             [% CASE "forgive_payment" %]forgiveness
4491                             [% CASE "goods_payment" %]goods
4492                             [% CASE "work_payment" %]work
4493                         [%- END %] on [% mp.payment_ts %] [% mp.note %]
4494                     </li>
4495                 [% END %]
4496             </ol>
4497         </li>
4498     [% END %]
4499     </ol>
4500 </div>
4501 $$
4502     )
4503 ;
4504
4505 INSERT INTO action_trigger.environment (
4506         event_def,
4507         path
4508     ) VALUES -- for fleshing mp objects
4509          ( 29, 'xact')
4510         ,( 29, 'xact.usr')
4511         ,( 29, 'xact.grocery' )
4512         ,( 29, 'xact.circulation' )
4513         ,( 29, 'xact.summary' )
4514         ,( 30, 'xact')
4515         ,( 30, 'xact.usr')
4516         ,( 30, 'xact.grocery' )
4517         ,( 30, 'xact.circulation' )
4518         ,( 30, 'xact.summary' )
4519 ;
4520
4521 INSERT INTO action_trigger.cleanup ( module, description ) VALUES (
4522     'DeleteTempBiblioBucket',
4523     oils_i18n_gettext(
4524         'DeleteTempBiblioBucket',
4525         'Deletes a cbreb object used as a target if it has a btype of "temp"',
4526         'atclean',
4527         'description'
4528     )
4529 );
4530
4531 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4532         'biblio.format.record_entry.email',
4533         'cbreb', 
4534         oils_i18n_gettext(
4535             'biblio.format.record_entry.email',
4536             'An email has been requested for one or more biblio record entries.',
4537             'ath',
4538             'description'
4539         ), 
4540         FALSE
4541     )
4542     ,(
4543         'biblio.format.record_entry.print',
4544         'cbreb', 
4545         oils_i18n_gettext(
4546             'biblio.format.record_entry.print',
4547             'One or more biblio record entries need to be formatted for printing.',
4548             'ath',
4549             'description'
4550         ), 
4551         FALSE
4552     )
4553 ;
4554
4555 INSERT INTO action_trigger.event_definition (
4556         id,
4557         active,
4558         owner,
4559         name,
4560         hook,
4561         validator,
4562         reactor,
4563         cleanup_success,
4564         cleanup_failure,
4565         group_field,
4566         granularity,
4567         template
4568     ) VALUES (
4569         31,
4570         TRUE,
4571         1,
4572         'biblio.record_entry.email',
4573         'biblio.format.record_entry.email',
4574         'NOOP_True',
4575         'SendEmail',
4576         'DeleteTempBiblioBucket',
4577         'DeleteTempBiblioBucket',
4578         'owner',
4579         NULL,
4580 $$
4581 [%- USE date -%]
4582 [%- SET user = target.0.owner -%]
4583 To: [%- params.recipient_email || user.email %]
4584 From: [%- params.sender_email || default_sender %]
4585 Subject: Bibliographic Records
4586
4587     [% FOR cbreb IN target %]
4588     [% FOR cbrebi IN cbreb.items %]
4589         Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]
4590         Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]
4591         Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]
4592         Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4593
4594     [% END %]
4595     [% END %]
4596 $$
4597     )
4598     ,(
4599         32,
4600         TRUE,
4601         1,
4602         'biblio.record_entry.print',
4603         'biblio.format.record_entry.print',
4604         'NOOP_True',
4605         'ProcessTemplate',
4606         'DeleteTempBiblioBucket',
4607         'DeleteTempBiblioBucket',
4608         'owner',
4609         'print-on-demand',
4610 $$
4611 [%- USE date -%]
4612 <div>
4613     <style> li { padding: 8px; margin 5px; }</style>
4614     <ol>
4615     [% FOR cbreb IN target %]
4616     [% FOR cbrebi IN cbreb.items %]
4617         <li>Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]<br />
4618             Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]<br />
4619             Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]<br />
4620             Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4621         </li>
4622     [% END %]
4623     [% END %]
4624     </ol>
4625 </div>
4626 $$
4627     )
4628 ;
4629
4630 INSERT INTO action_trigger.environment (
4631         event_def,
4632         path
4633     ) VALUES -- for fleshing cbreb objects
4634          ( 31, 'owner' )
4635         ,( 31, 'items' )
4636         ,( 31, 'items.target_biblio_record_entry' )
4637         ,( 31, 'items.target_biblio_record_entry.simple_record' )
4638         ,( 31, 'items.target_biblio_record_entry.call_numbers' )
4639         ,( 31, 'items.target_biblio_record_entry.fixed_fields' )
4640         ,( 31, 'items.target_biblio_record_entry.notes' )
4641         ,( 31, 'items.target_biblio_record_entry.full_record_entries' )
4642         ,( 32, 'owner' )
4643         ,( 32, 'items' )
4644         ,( 32, 'items.target_biblio_record_entry' )
4645         ,( 32, 'items.target_biblio_record_entry.simple_record' )
4646         ,( 32, 'items.target_biblio_record_entry.call_numbers' )
4647         ,( 32, 'items.target_biblio_record_entry.fixed_fields' )
4648         ,( 32, 'items.target_biblio_record_entry.notes' )
4649         ,( 32, 'items.target_biblio_record_entry.full_record_entries' )
4650 ;
4651
4652 INSERT INTO action_trigger.environment (
4653         event_def,
4654         path
4655     ) VALUES -- for fleshing mp objects
4656          ( 29, 'credit_card_payment')
4657         ,( 29, 'xact.billings')
4658         ,( 29, 'xact.billings.btype')
4659         ,( 30, 'credit_card_payment')
4660         ,( 30, 'xact.billings')
4661         ,( 30, 'xact.billings.btype')
4662 ;
4663
4664 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
4665     (   'circ.format.missing_pieces.slip.print',
4666         'circ', 
4667         oils_i18n_gettext(
4668             'circ.format.missing_pieces.slip.print',
4669             'A missing pieces slip needs to be formatted for printing.',
4670             'ath',
4671             'description'
4672         ), 
4673         FALSE
4674     )
4675     ,(  'circ.format.missing_pieces.letter.print',
4676         'circ', 
4677         oils_i18n_gettext(
4678             'circ.format.missing_pieces.letter.print',
4679             'A missing pieces patron letter needs to be formatted for printing.',
4680             'ath',
4681             'description'
4682         ), 
4683         FALSE
4684     )
4685 ;
4686
4687 INSERT INTO action_trigger.event_definition (
4688         id,
4689         active,
4690         owner,
4691         name,
4692         hook,
4693         validator,
4694         reactor,
4695         group_field,
4696         granularity,
4697         template
4698     ) VALUES (
4699         33,
4700         TRUE,
4701         1,
4702         'circ.missing_pieces.slip.print',
4703         'circ.format.missing_pieces.slip.print',
4704         'NOOP_True',
4705         'ProcessTemplate',
4706         'usr',
4707         'print-on-demand',
4708 $$
4709 [%- USE date -%]
4710 [%- SET user = target.0.usr -%]
4711 <div style="li { padding: 8px; margin 5px; }">
4712     <div>[% date.format %]</div><br/>
4713     Missing pieces for:
4714     <ol>
4715     [% FOR circ IN target %]
4716         <li>Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]<br />
4717             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4718         </li>
4719     [% END %]
4720     </ol>
4721 </div>
4722 $$
4723     )
4724     ,(
4725         34,
4726         TRUE,
4727         1,
4728         'circ.missing_pieces.letter.print',
4729         'circ.format.missing_pieces.letter.print',
4730         'NOOP_True',
4731         'ProcessTemplate',
4732         'usr',
4733         'print-on-demand',
4734 $$
4735 [%- USE date -%]
4736 [%- SET user = target.0.usr -%]
4737 [% date.format %]
4738 Dear [% user.prefix %] [% user.first_given_name %] [% user.family_name %],
4739
4740 We are missing pieces for the following returned items:
4741 [% FOR circ IN target %]
4742 Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]
4743 [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4744 [% END %]
4745
4746 Please return these pieces as soon as possible.
4747
4748 Thanks!
4749
4750 Library Staff
4751 $$
4752     )
4753 ;
4754
4755 INSERT INTO action_trigger.environment (
4756         event_def,
4757         path
4758     ) VALUES -- for fleshing circ objects
4759          ( 33, 'usr')
4760         ,( 33, 'target_copy')
4761         ,( 33, 'target_copy.circ_lib')
4762         ,( 33, 'target_copy.circ_lib.mailing_address')
4763         ,( 33, 'target_copy.circ_lib.billing_address')
4764         ,( 33, 'target_copy.call_number')
4765         ,( 33, 'target_copy.call_number.owning_lib')
4766         ,( 33, 'target_copy.call_number.owning_lib.mailing_address')
4767         ,( 33, 'target_copy.call_number.owning_lib.billing_address')
4768         ,( 33, 'circ_lib')
4769         ,( 33, 'circ_lib.mailing_address')
4770         ,( 33, 'circ_lib.billing_address')
4771         ,( 34, 'usr')
4772         ,( 34, 'target_copy')
4773         ,( 34, 'target_copy.circ_lib')
4774         ,( 34, 'target_copy.circ_lib.mailing_address')
4775         ,( 34, 'target_copy.circ_lib.billing_address')
4776         ,( 34, 'target_copy.call_number')
4777         ,( 34, 'target_copy.call_number.owning_lib')
4778         ,( 34, 'target_copy.call_number.owning_lib.mailing_address')
4779         ,( 34, 'target_copy.call_number.owning_lib.billing_address')
4780         ,( 34, 'circ_lib')
4781         ,( 34, 'circ_lib.mailing_address')
4782         ,( 34, 'circ_lib.billing_address')
4783 ;
4784
4785 INSERT INTO action_trigger.hook (key,core_type,description,passive) 
4786     VALUES (   
4787         'ahr.format.pull_list',
4788         'ahr', 
4789         oils_i18n_gettext(
4790             'ahr.format.pull_list',
4791             'Format holds pull list for printing',
4792             'ath',
4793             'description'
4794         ), 
4795         FALSE
4796     );
4797
4798 INSERT INTO action_trigger.event_definition (
4799         id,
4800         active,
4801         owner,
4802         name,
4803         hook,
4804         validator,
4805         reactor,
4806         group_field,
4807         granularity,
4808         template
4809     ) VALUES (
4810         35,
4811         TRUE,
4812         1,
4813         'Holds Pull List',
4814         'ahr.format.pull_list',
4815         'NOOP_True',
4816         'ProcessTemplate',
4817         'pickup_lib',
4818         'print-on-demand',
4819 $$
4820 [%- USE date -%]
4821 <style>
4822     table { border-collapse: collapse; } 
4823     td { padding: 5px; border-bottom: 1px solid #888; } 
4824     th { font-weight: bold; }
4825 </style>
4826 [% 
4827     # Sort the holds into copy-location buckets
4828     # In the main print loop, sort each bucket by callnumber before printing
4829     SET holds_list = [];
4830     SET loc_data = [];
4831     SET current_location = target.0.current_copy.location.id;
4832     FOR hold IN target;
4833         IF current_location != hold.current_copy.location.id;
4834             SET current_location = hold.current_copy.location.id;
4835             holds_list.push(loc_data);
4836             SET loc_data = [];
4837         END;
4838         SET hold_data = {
4839             'hold' => hold,
4840             'callnumber' => hold.current_copy.call_number.label
4841         };
4842         loc_data.push(hold_data);
4843     END;
4844     holds_list.push(loc_data)
4845 %]
4846 <table>
4847     <thead>
4848         <tr>
4849             <th>Title</th>
4850             <th>Author</th>
4851             <th>Shelving Location</th>
4852             <th>Call Number</th>
4853             <th>Barcode</th>
4854             <th>Patron</th>
4855         </tr>
4856     </thead>
4857     <tbody>
4858     [% FOR loc_data IN holds_list  %]
4859         [% FOR hold_data IN loc_data.sort('callnumber') %]
4860             [% 
4861                 SET hold = hold_data.hold;
4862                 SET copy_data = helpers.get_copy_bib_basics(hold.current_copy.id);
4863             %]
4864             <tr>
4865                 <td>[% copy_data.title | truncate %]</td>
4866                 <td>[% copy_data.author | truncate %]</td>
4867                 <td>[% hold.current_copy.location.name %]</td>
4868                 <td>[% hold.current_copy.call_number.label %]</td>
4869                 <td>[% hold.current_copy.barcode %]</td>
4870                 <td>[% hold.usr.card.barcode %]</td>
4871             </tr>
4872         [% END %]
4873     [% END %]
4874     <tbody>
4875 </table>
4876 $$
4877 );
4878
4879 INSERT INTO action_trigger.environment (
4880         event_def,
4881         path
4882     ) VALUES
4883         (35, 'current_copy.location'),
4884         (35, 'current_copy.call_number'),
4885         (35, 'usr.card'),
4886         (35, 'pickup_lib')
4887 ;
4888
4889 INSERT INTO action_trigger.validator (module, description) VALUES ( 
4890     'HoldIsCancelled', 
4891     oils_i18n_gettext( 
4892         'HoldIsCancelled', 
4893         'Check whether a hold request is cancelled.', 
4894         'atval', 
4895         'description' 
4896     ) 
4897 );
4898
4899 -- Create the query schema, and the tables and views therein
4900
4901 DROP SCHEMA IF EXISTS sql CASCADE;
4902 DROP SCHEMA IF EXISTS query CASCADE;
4903
4904 CREATE SCHEMA query;
4905
4906 CREATE TABLE query.datatype (
4907         id              SERIAL            PRIMARY KEY,
4908         datatype_name   TEXT              NOT NULL UNIQUE,
4909         is_numeric      BOOL              NOT NULL DEFAULT FALSE,
4910         is_composite    BOOL              NOT NULL DEFAULT FALSE,
4911         CONSTRAINT qdt_comp_not_num CHECK
4912         ( is_numeric IS FALSE OR is_composite IS FALSE )
4913 );
4914
4915 -- Define the most common datatypes in query.datatype.  Note that none of
4916 -- these stock datatypes specifies a width or precision.
4917
4918 -- Also: set the sequence for query.datatype to 1000, leaving plenty of
4919 -- room for more stock datatypes if we ever want to add them.
4920
4921 SELECT setval( 'query.datatype_id_seq', 1000 );
4922
4923 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4924   VALUES (1, 'SMALLINT', true);
4925  
4926 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4927   VALUES (2, 'INTEGER', true);
4928  
4929 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4930   VALUES (3, 'BIGINT', true);
4931  
4932 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4933   VALUES (4, 'DECIMAL', true);
4934  
4935 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4936   VALUES (5, 'NUMERIC', true);
4937  
4938 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4939   VALUES (6, 'REAL', true);
4940  
4941 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4942   VALUES (7, 'DOUBLE PRECISION', true);
4943  
4944 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4945   VALUES (8, 'SERIAL', true);
4946  
4947 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4948   VALUES (9, 'BIGSERIAL', true);
4949  
4950 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4951   VALUES (10, 'MONEY', false);
4952  
4953 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4954   VALUES (11, 'VARCHAR', false);
4955  
4956 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4957   VALUES (12, 'CHAR', false);
4958  
4959 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4960   VALUES (13, 'TEXT', false);
4961  
4962 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4963   VALUES (14, '"char"', false);
4964  
4965 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4966   VALUES (15, 'NAME', false);
4967  
4968 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4969   VALUES (16, 'BYTEA', false);
4970  
4971 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4972   VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false);
4973  
4974 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4975   VALUES (18, 'TIMESTAMP WITH TIME ZONE', false);
4976  
4977 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4978   VALUES (19, 'DATE', false);
4979  
4980 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4981   VALUES (20, 'TIME WITHOUT TIME ZONE', false);
4982  
4983 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4984   VALUES (21, 'TIME WITH TIME ZONE', false);
4985  
4986 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4987   VALUES (22, 'INTERVAL', false);
4988  
4989 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4990   VALUES (23, 'BOOLEAN', false);
4991  
4992 CREATE TABLE query.subfield (
4993         id              SERIAL            PRIMARY KEY,
4994         composite_type  INT               NOT NULL
4995                                           REFERENCES query.datatype(id)
4996                                           ON DELETE CASCADE
4997                                           DEFERRABLE INITIALLY DEFERRED,
4998         seq_no          INT               NOT NULL
4999                                           CONSTRAINT qsf_pos_seq_no
5000                                           CHECK( seq_no > 0 ),
5001         subfield_type   INT               NOT NULL
5002                                           REFERENCES query.datatype(id)
5003                                           DEFERRABLE INITIALLY DEFERRED,
5004         CONSTRAINT qsf_datatype_seq_no UNIQUE (composite_type, seq_no)
5005 );
5006
5007 CREATE TABLE query.function_sig (
5008         id              SERIAL            PRIMARY KEY,
5009         function_name   TEXT              NOT NULL,
5010         return_type     INT               REFERENCES query.datatype(id)
5011                                           DEFERRABLE INITIALLY DEFERRED,
5012         is_aggregate    BOOL              NOT NULL DEFAULT FALSE,
5013         CONSTRAINT qfd_rtn_or_aggr CHECK
5014         ( return_type IS NULL OR is_aggregate = FALSE )
5015 );
5016
5017 CREATE INDEX query_function_sig_name_idx 
5018         ON query.function_sig (function_name);
5019
5020 CREATE TABLE query.function_param_def (
5021         id              SERIAL            PRIMARY KEY,
5022         function_id     INT               NOT NULL
5023                                           REFERENCES query.function_sig( id )
5024                                           ON DELETE CASCADE
5025                                           DEFERRABLE INITIALLY DEFERRED,
5026         seq_no          INT               NOT NULL
5027                                           CONSTRAINT qfpd_pos_seq_no CHECK
5028                                           ( seq_no > 0 ),
5029         datatype        INT               NOT NULL
5030                                           REFERENCES query.datatype( id )
5031                                           DEFERRABLE INITIALLY DEFERRED,
5032         CONSTRAINT qfpd_function_param_seq UNIQUE (function_id, seq_no)
5033 );
5034
5035 CREATE TABLE  query.stored_query (
5036         id            SERIAL         PRIMARY KEY,
5037         type          TEXT           NOT NULL CONSTRAINT query_type CHECK
5038                                      ( type IN ( 'SELECT', 'UNION', 'INTERSECT', 'EXCEPT' ) ),
5039         use_all       BOOLEAN        NOT NULL DEFAULT FALSE,
5040         use_distinct  BOOLEAN        NOT NULL DEFAULT FALSE,
5041         from_clause   INT            , --REFERENCES query.from_clause
5042                                      --DEFERRABLE INITIALLY DEFERRED,
5043         where_clause  INT            , --REFERENCES query.expression
5044                                      --DEFERRABLE INITIALLY DEFERRED,
5045         having_clause INT            , --REFERENCES query.expression
5046                                      --DEFERRABLE INITIALLY DEFERRED
5047         limit_count   INT            , --REFERENCES query.expression( id )
5048                                      --DEFERRABLE INITIALLY DEFERRED,
5049         offset_count  INT            --REFERENCES query.expression( id )
5050                                      --DEFERRABLE INITIALLY DEFERRED
5051 );
5052
5053 -- (Foreign keys to be defined later after other tables are created)
5054
5055 CREATE TABLE query.query_sequence (
5056         id              SERIAL            PRIMARY KEY,
5057         parent_query    INT               NOT NULL
5058                                           REFERENCES query.stored_query
5059                                                                           ON DELETE CASCADE
5060                                                                           DEFERRABLE INITIALLY DEFERRED,
5061         seq_no          INT               NOT NULL,
5062         child_query     INT               NOT NULL
5063                                           REFERENCES query.stored_query
5064                                                                           ON DELETE CASCADE
5065                                                                           DEFERRABLE INITIALLY DEFERRED,
5066         CONSTRAINT query_query_seq UNIQUE( parent_query, seq_no )
5067 );
5068
5069 CREATE TABLE query.bind_variable (
5070         name          TEXT             PRIMARY KEY,
5071         type          TEXT             NOT NULL
5072                                            CONSTRAINT bind_variable_type CHECK
5073                                            ( type in ( 'string', 'number', 'string_list', 'number_list' )),
5074         description   TEXT             NOT NULL,
5075         default_value TEXT,            -- to be encoded in JSON
5076         label         TEXT             NOT NULL
5077 );
5078
5079 CREATE TABLE query.expression (
5080         id            SERIAL        PRIMARY KEY,
5081         type          TEXT          NOT NULL CONSTRAINT expression_type CHECK
5082                                     ( type IN (
5083                                     'xbet',    -- between
5084                                     'xbind',   -- bind variable
5085                                     'xbool',   -- boolean
5086                                     'xcase',   -- case
5087                                     'xcast',   -- cast
5088                                     'xcol',    -- column
5089                                     'xex',     -- exists
5090                                     'xfunc',   -- function
5091                                     'xin',     -- in
5092                                     'xisnull', -- is null
5093                                     'xnull',   -- null
5094                                     'xnum',    -- number
5095                                     'xop',     -- operator
5096                                     'xser',    -- series
5097                                     'xstr',    -- string
5098                                     'xsubq'    -- subquery
5099                                                                 ) ),
5100         parenthesize  BOOL          NOT NULL DEFAULT FALSE,
5101         parent_expr   INT           REFERENCES query.expression
5102                                     ON DELETE CASCADE
5103                                     DEFERRABLE INITIALLY DEFERRED,
5104         seq_no        INT           NOT NULL DEFAULT 1,
5105         literal       TEXT,
5106         table_alias   TEXT,
5107         column_name   TEXT,
5108         left_operand  INT           REFERENCES query.expression
5109                                     DEFERRABLE INITIALLY DEFERRED,
5110         operator      TEXT,
5111         right_operand INT           REFERENCES query.expression
5112                                     DEFERRABLE INITIALLY DEFERRED,
5113         function_id   INT           REFERENCES query.function_sig
5114                                     DEFERRABLE INITIALLY DEFERRED,
5115         subquery      INT           REFERENCES query.stored_query
5116                                     DEFERRABLE INITIALLY DEFERRED,
5117         cast_type     INT           REFERENCES query.datatype
5118                                     DEFERRABLE INITIALLY DEFERRED,
5119         negate        BOOL          NOT NULL DEFAULT FALSE,
5120         bind_variable TEXT          REFERENCES query.bind_variable
5121                                         DEFERRABLE INITIALLY DEFERRED
5122 );
5123
5124 CREATE UNIQUE INDEX query_expr_parent_seq
5125         ON query.expression( parent_expr, seq_no )
5126         WHERE parent_expr IS NOT NULL;
5127
5128 -- Due to some circular references, the following foreign key definitions
5129 -- had to be deferred until query.expression existed:
5130
5131 ALTER TABLE query.stored_query
5132         ADD FOREIGN KEY ( where_clause )
5133         REFERENCES query.expression( id )
5134         DEFERRABLE INITIALLY DEFERRED;
5135
5136 ALTER TABLE query.stored_query
5137         ADD FOREIGN KEY ( having_clause )
5138         REFERENCES query.expression( id )
5139         DEFERRABLE INITIALLY DEFERRED;
5140
5141 ALTER TABLE query.stored_query
5142     ADD FOREIGN KEY ( limit_count )
5143     REFERENCES query.expression( id )
5144     DEFERRABLE INITIALLY DEFERRED;
5145
5146 ALTER TABLE query.stored_query
5147     ADD FOREIGN KEY ( offset_count )
5148     REFERENCES query.expression( id )
5149     DEFERRABLE INITIALLY DEFERRED;
5150
5151 CREATE TABLE query.case_branch (
5152         id            SERIAL        PRIMARY KEY,
5153         parent_expr   INT           NOT NULL REFERENCES query.expression
5154                                     ON DELETE CASCADE
5155                                     DEFERRABLE INITIALLY DEFERRED,
5156         seq_no        INT           NOT NULL,
5157         condition     INT           REFERENCES query.expression
5158                                     DEFERRABLE INITIALLY DEFERRED,
5159         result        INT           NOT NULL REFERENCES query.expression
5160                                     DEFERRABLE INITIALLY DEFERRED,
5161         CONSTRAINT case_branch_parent_seq UNIQUE (parent_expr, seq_no)
5162 );
5163
5164 CREATE TABLE query.from_relation (
5165         id               SERIAL        PRIMARY KEY,
5166         type             TEXT          NOT NULL CONSTRAINT relation_type CHECK (
5167                                            type IN ( 'RELATION', 'SUBQUERY', 'FUNCTION' ) ),
5168         table_name       TEXT,
5169         class_name       TEXT,
5170         subquery         INT           REFERENCES query.stored_query,
5171         function_call    INT           REFERENCES query.expression,
5172         table_alias      TEXT,
5173         parent_relation  INT           REFERENCES query.from_relation
5174                                        ON DELETE CASCADE
5175                                        DEFERRABLE INITIALLY DEFERRED,
5176         seq_no           INT           NOT NULL DEFAULT 1,
5177         join_type        TEXT          CONSTRAINT good_join_type CHECK (
5178                                            join_type IS NULL OR join_type IN
5179                                            ( 'INNER', 'LEFT', 'RIGHT', 'FULL' )
5180                                        ),
5181         on_clause        INT           REFERENCES query.expression
5182                                        DEFERRABLE INITIALLY DEFERRED,
5183         CONSTRAINT join_or_core CHECK (
5184         ( parent_relation IS NULL AND join_type IS NULL
5185           AND on_clause IS NULL )
5186         OR
5187         ( parent_relation IS NOT NULL AND join_type IS NOT NULL
5188           AND on_clause IS NOT NULL )
5189         )
5190 );
5191
5192 CREATE UNIQUE INDEX from_parent_seq
5193         ON query.from_relation( parent_relation, seq_no )
5194         WHERE parent_relation IS NOT NULL;
5195
5196 -- The following foreign key had to be deferred until
5197 -- query.from_relation existed
5198
5199 ALTER TABLE query.stored_query
5200         ADD FOREIGN KEY (from_clause)
5201         REFERENCES query.from_relation
5202         DEFERRABLE INITIALLY DEFERRED;
5203
5204 CREATE TABLE query.record_column (
5205         id            SERIAL            PRIMARY KEY,
5206         from_relation INT               NOT NULL REFERENCES query.from_relation
5207                                         ON DELETE CASCADE
5208                                         DEFERRABLE INITIALLY DEFERRED,
5209         seq_no        INT               NOT NULL,
5210         column_name   TEXT              NOT NULL,
5211         column_type   INT               NOT NULL REFERENCES query.datatype
5212                                         ON DELETE CASCADE
5213                                                                         DEFERRABLE INITIALLY DEFERRED,
5214         CONSTRAINT column_sequence UNIQUE (from_relation, seq_no)
5215 );
5216
5217 CREATE TABLE query.select_item (
5218         id               SERIAL         PRIMARY KEY,
5219         stored_query     INT            NOT NULL REFERENCES query.stored_query
5220                                         ON DELETE CASCADE
5221                                         DEFERRABLE INITIALLY DEFERRED,
5222         seq_no           INT            NOT NULL,
5223         expression       INT            NOT NULL REFERENCES query.expression
5224                                         DEFERRABLE INITIALLY DEFERRED,
5225         column_alias     TEXT,
5226         grouped_by       BOOL           NOT NULL DEFAULT FALSE,
5227         CONSTRAINT select_sequence UNIQUE( stored_query, seq_no )
5228 );
5229
5230 CREATE TABLE query.order_by_item (
5231         id               SERIAL         PRIMARY KEY,
5232         stored_query     INT            NOT NULL REFERENCES query.stored_query
5233                                         ON DELETE CASCADE
5234                                         DEFERRABLE INITIALLY DEFERRED,
5235         seq_no           INT            NOT NULL,
5236         expression       INT            NOT NULL REFERENCES query.expression
5237                                         ON DELETE CASCADE
5238                                         DEFERRABLE INITIALLY DEFERRED,
5239         CONSTRAINT order_by_sequence UNIQUE( stored_query, seq_no )
5240 );
5241
5242 ------------------------------------------------------------
5243 -- Create updatable views for different kinds of expressions
5244 ------------------------------------------------------------
5245
5246 -- Create updatable view for BETWEEN expressions
5247
5248 CREATE OR REPLACE VIEW query.expr_xbet AS
5249     SELECT
5250                 id,
5251                 parenthesize,
5252                 parent_expr,
5253                 seq_no,
5254                 left_operand,
5255                 negate
5256     FROM
5257         query.expression
5258     WHERE
5259         type = 'xbet';
5260
5261 CREATE OR REPLACE RULE query_expr_xbet_insert_rule AS
5262     ON INSERT TO query.expr_xbet
5263     DO INSTEAD
5264     INSERT INTO query.expression (
5265                 id,
5266                 type,
5267                 parenthesize,
5268                 parent_expr,
5269                 seq_no,
5270                 left_operand,
5271                 negate
5272     ) VALUES (
5273         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5274         'xbet',
5275         COALESCE(NEW.parenthesize, FALSE),
5276         NEW.parent_expr,
5277         COALESCE(NEW.seq_no, 1),
5278                 NEW.left_operand,
5279                 COALESCE(NEW.negate, false)
5280     );
5281
5282 CREATE OR REPLACE RULE query_expr_xbet_update_rule AS
5283     ON UPDATE TO query.expr_xbet
5284     DO INSTEAD
5285     UPDATE query.expression SET
5286         id = NEW.id,
5287         parenthesize = NEW.parenthesize,
5288         parent_expr = NEW.parent_expr,
5289         seq_no = NEW.seq_no,
5290                 left_operand = NEW.left_operand,
5291                 negate = NEW.negate
5292     WHERE
5293         id = OLD.id;
5294
5295 CREATE OR REPLACE RULE query_expr_xbet_delete_rule AS
5296     ON DELETE TO query.expr_xbet
5297     DO INSTEAD
5298     DELETE FROM query.expression WHERE id = OLD.id;
5299
5300 -- Create updatable view for bind variable expressions
5301
5302 CREATE OR REPLACE VIEW query.expr_xbind AS
5303     SELECT
5304                 id,
5305                 parenthesize,
5306                 parent_expr,
5307                 seq_no,
5308                 bind_variable
5309     FROM
5310         query.expression
5311     WHERE
5312         type = 'xbind';
5313
5314 CREATE OR REPLACE RULE query_expr_xbind_insert_rule AS
5315     ON INSERT TO query.expr_xbind
5316     DO INSTEAD
5317     INSERT INTO query.expression (
5318                 id,
5319                 type,
5320                 parenthesize,
5321                 parent_expr,
5322                 seq_no,
5323                 bind_variable
5324     ) VALUES (
5325         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5326         'xbind',
5327         COALESCE(NEW.parenthesize, FALSE),
5328         NEW.parent_expr,
5329         COALESCE(NEW.seq_no, 1),
5330                 NEW.bind_variable
5331     );
5332
5333 CREATE OR REPLACE RULE query_expr_xbind_update_rule AS
5334     ON UPDATE TO query.expr_xbind
5335     DO INSTEAD
5336     UPDATE query.expression SET
5337         id = NEW.id,
5338         parenthesize = NEW.parenthesize,
5339         parent_expr = NEW.parent_expr,
5340         seq_no = NEW.seq_no,
5341                 bind_variable = NEW.bind_variable
5342     WHERE
5343         id = OLD.id;
5344
5345 CREATE OR REPLACE RULE query_expr_xbind_delete_rule AS
5346     ON DELETE TO query.expr_xbind
5347     DO INSTEAD
5348     DELETE FROM query.expression WHERE id = OLD.id;
5349
5350 -- Create updatable view for boolean expressions
5351
5352 CREATE OR REPLACE VIEW query.expr_xbool AS
5353     SELECT
5354                 id,
5355                 parenthesize,
5356                 parent_expr,
5357                 seq_no,
5358                 literal,
5359                 negate
5360     FROM
5361         query.expression
5362     WHERE
5363         type = 'xbool';
5364
5365 CREATE OR REPLACE RULE query_expr_xbool_insert_rule AS
5366     ON INSERT TO query.expr_xbool
5367     DO INSTEAD
5368     INSERT INTO query.expression (
5369                 id,
5370                 type,
5371                 parenthesize,
5372                 parent_expr,
5373                 seq_no,
5374                 literal,
5375                 negate
5376     ) VALUES (
5377         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5378         'xbool',
5379         COALESCE(NEW.parenthesize, FALSE),
5380         NEW.parent_expr,
5381         COALESCE(NEW.seq_no, 1),
5382         NEW.literal,
5383                 COALESCE(NEW.negate, false)
5384     );
5385
5386 CREATE OR REPLACE RULE query_expr_xbool_update_rule AS
5387     ON UPDATE TO query.expr_xbool
5388     DO INSTEAD
5389     UPDATE query.expression SET
5390         id = NEW.id,
5391         parenthesize = NEW.parenthesize,
5392         parent_expr = NEW.parent_expr,
5393         seq_no = NEW.seq_no,
5394         literal = NEW.literal,
5395                 negate = NEW.negate
5396     WHERE
5397         id = OLD.id;
5398
5399 CREATE OR REPLACE RULE query_expr_xbool_delete_rule AS
5400     ON DELETE TO query.expr_xbool
5401     DO INSTEAD
5402     DELETE FROM query.expression WHERE id = OLD.id;
5403
5404 -- Create updatable view for CASE expressions
5405
5406 CREATE OR REPLACE VIEW query.expr_xcase AS
5407     SELECT
5408                 id,
5409                 parenthesize,
5410                 parent_expr,
5411                 seq_no,
5412                 left_operand,
5413                 negate
5414     FROM
5415         query.expression
5416     WHERE
5417         type = 'xcase';
5418
5419 CREATE OR REPLACE RULE query_expr_xcase_insert_rule AS
5420     ON INSERT TO query.expr_xcase
5421     DO INSTEAD
5422     INSERT INTO query.expression (
5423                 id,
5424                 type,
5425                 parenthesize,
5426                 parent_expr,
5427                 seq_no,
5428                 left_operand,
5429                 negate
5430     ) VALUES (
5431         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5432         'xcase',
5433         COALESCE(NEW.parenthesize, FALSE),
5434         NEW.parent_expr,
5435         COALESCE(NEW.seq_no, 1),
5436                 NEW.left_operand,
5437                 COALESCE(NEW.negate, false)
5438     );
5439
5440 CREATE OR REPLACE RULE query_expr_xcase_update_rule AS
5441     ON UPDATE TO query.expr_xcase
5442     DO INSTEAD
5443     UPDATE query.expression SET
5444         id = NEW.id,
5445         parenthesize = NEW.parenthesize,
5446         parent_expr = NEW.parent_expr,
5447         seq_no = NEW.seq_no,
5448                 left_operand = NEW.left_operand,
5449                 negate = NEW.negate
5450     WHERE
5451         id = OLD.id;
5452
5453 CREATE OR REPLACE RULE query_expr_xcase_delete_rule AS
5454     ON DELETE TO query.expr_xcase
5455     DO INSTEAD
5456     DELETE FROM query.expression WHERE id = OLD.id;
5457
5458 -- Create updatable view for cast expressions
5459
5460 CREATE OR REPLACE VIEW query.expr_xcast AS
5461     SELECT
5462                 id,
5463                 parenthesize,
5464                 parent_expr,
5465                 seq_no,
5466                 left_operand,
5467                 cast_type,
5468                 negate
5469     FROM
5470         query.expression
5471     WHERE
5472         type = 'xcast';
5473
5474 CREATE OR REPLACE RULE query_expr_xcast_insert_rule AS
5475     ON INSERT TO query.expr_xcast
5476     DO INSTEAD
5477     INSERT INTO query.expression (
5478         id,
5479         type,
5480         parenthesize,
5481         parent_expr,
5482         seq_no,
5483         left_operand,
5484         cast_type,
5485         negate
5486     ) VALUES (
5487         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5488         'xcast',
5489         COALESCE(NEW.parenthesize, FALSE),
5490         NEW.parent_expr,
5491         COALESCE(NEW.seq_no, 1),
5492         NEW.left_operand,
5493         NEW.cast_type,
5494         COALESCE(NEW.negate, false)
5495     );
5496
5497 CREATE OR REPLACE RULE query_expr_xcast_update_rule AS
5498     ON UPDATE TO query.expr_xcast
5499     DO INSTEAD
5500     UPDATE query.expression SET
5501         id = NEW.id,
5502         parenthesize = NEW.parenthesize,
5503         parent_expr = NEW.parent_expr,
5504         seq_no = NEW.seq_no,
5505                 left_operand = NEW.left_operand,
5506                 cast_type = NEW.cast_type,
5507                 negate = NEW.negate
5508     WHERE
5509         id = OLD.id;
5510
5511 CREATE OR REPLACE RULE query_expr_xcast_delete_rule AS
5512     ON DELETE TO query.expr_xcast
5513     DO INSTEAD
5514     DELETE FROM query.expression WHERE id = OLD.id;
5515
5516 -- Create updatable view for column expressions
5517
5518 CREATE OR REPLACE VIEW query.expr_xcol AS
5519     SELECT
5520                 id,
5521                 parenthesize,
5522                 parent_expr,
5523                 seq_no,
5524                 table_alias,
5525                 column_name,
5526                 negate
5527     FROM
5528         query.expression
5529     WHERE
5530         type = 'xcol';
5531
5532 CREATE OR REPLACE RULE query_expr_xcol_insert_rule AS
5533     ON INSERT TO query.expr_xcol
5534     DO INSTEAD
5535     INSERT INTO query.expression (
5536                 id,
5537                 type,
5538                 parenthesize,
5539                 parent_expr,
5540                 seq_no,
5541                 table_alias,
5542                 column_name,
5543                 negate
5544     ) VALUES (
5545         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5546         'xcol',
5547         COALESCE(NEW.parenthesize, FALSE),
5548         NEW.parent_expr,
5549         COALESCE(NEW.seq_no, 1),
5550                 NEW.table_alias,
5551                 NEW.column_name,
5552                 COALESCE(NEW.negate, false)
5553     );
5554
5555 CREATE OR REPLACE RULE query_expr_xcol_update_rule AS
5556     ON UPDATE TO query.expr_xcol
5557     DO INSTEAD
5558     UPDATE query.expression SET
5559         id = NEW.id,
5560         parenthesize = NEW.parenthesize,
5561         parent_expr = NEW.parent_expr,
5562         seq_no = NEW.seq_no,
5563                 table_alias = NEW.table_alias,
5564                 column_name = NEW.column_name,
5565                 negate = NEW.negate
5566     WHERE
5567         id = OLD.id;
5568
5569 CREATE OR REPLACE RULE query_expr_xcol_delete_rule AS
5570     ON DELETE TO query.expr_xcol
5571     DO INSTEAD
5572     DELETE FROM query.expression WHERE id = OLD.id;
5573
5574 -- Create updatable view for EXISTS expressions
5575
5576 CREATE OR REPLACE VIEW query.expr_xex AS
5577     SELECT
5578                 id,
5579                 parenthesize,
5580                 parent_expr,
5581                 seq_no,
5582                 subquery,
5583                 negate
5584     FROM
5585         query.expression
5586     WHERE
5587         type = 'xex';
5588
5589 CREATE OR REPLACE RULE query_expr_xex_insert_rule AS
5590     ON INSERT TO query.expr_xex
5591     DO INSTEAD
5592     INSERT INTO query.expression (
5593                 id,
5594                 type,
5595                 parenthesize,
5596                 parent_expr,
5597                 seq_no,
5598                 subquery,
5599                 negate
5600     ) VALUES (
5601         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5602         'xex',
5603         COALESCE(NEW.parenthesize, FALSE),
5604         NEW.parent_expr,
5605         COALESCE(NEW.seq_no, 1),
5606                 NEW.subquery,
5607                 COALESCE(NEW.negate, false)
5608     );
5609
5610 CREATE OR REPLACE RULE query_expr_xex_update_rule AS
5611     ON UPDATE TO query.expr_xex
5612     DO INSTEAD
5613     UPDATE query.expression SET
5614         id = NEW.id,
5615         parenthesize = NEW.parenthesize,
5616         parent_expr = NEW.parent_expr,
5617         seq_no = NEW.seq_no,
5618                 subquery = NEW.subquery,
5619                 negate = NEW.negate
5620     WHERE
5621         id = OLD.id;
5622
5623 CREATE OR REPLACE RULE query_expr_xex_delete_rule AS
5624     ON DELETE TO query.expr_xex
5625     DO INSTEAD
5626     DELETE FROM query.expression WHERE id = OLD.id;
5627
5628 -- Create updatable view for function call expressions
5629
5630 CREATE OR REPLACE VIEW query.expr_xfunc AS
5631     SELECT
5632         id,
5633         parenthesize,
5634         parent_expr,
5635         seq_no,
5636         column_name,
5637         function_id,
5638         negate
5639     FROM
5640         query.expression
5641     WHERE
5642         type = 'xfunc';
5643
5644 CREATE OR REPLACE RULE query_expr_xfunc_insert_rule AS
5645     ON INSERT TO query.expr_xfunc
5646     DO INSTEAD
5647     INSERT INTO query.expression (
5648         id,
5649         type,
5650         parenthesize,
5651         parent_expr,
5652         seq_no,
5653         column_name,
5654         function_id,
5655         negate
5656     ) VALUES (
5657         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5658         'xfunc',
5659         COALESCE(NEW.parenthesize, FALSE),
5660         NEW.parent_expr,
5661         COALESCE(NEW.seq_no, 1),
5662         NEW.column_name,
5663         NEW.function_id,
5664         COALESCE(NEW.negate, false)
5665     );
5666
5667 CREATE OR REPLACE RULE query_expr_xfunc_update_rule AS
5668     ON UPDATE TO query.expr_xfunc
5669     DO INSTEAD
5670     UPDATE query.expression SET
5671         id = NEW.id,
5672         parenthesize = NEW.parenthesize,
5673         parent_expr = NEW.parent_expr,
5674         seq_no = NEW.seq_no,
5675         column_name = NEW.column_name,
5676         function_id = NEW.function_id,
5677         negate = NEW.negate
5678     WHERE
5679         id = OLD.id;
5680
5681 CREATE OR REPLACE RULE query_expr_xfunc_delete_rule AS
5682     ON DELETE TO query.expr_xfunc
5683     DO INSTEAD
5684     DELETE FROM query.expression WHERE id = OLD.id;
5685
5686 -- Create updatable view for IN expressions
5687
5688 CREATE OR REPLACE VIEW query.expr_xin AS
5689     SELECT
5690                 id,
5691                 parenthesize,
5692                 parent_expr,
5693                 seq_no,
5694                 left_operand,
5695                 subquery,
5696                 negate
5697     FROM
5698         query.expression
5699     WHERE
5700         type = 'xin';
5701
5702 CREATE OR REPLACE RULE query_expr_xin_insert_rule AS
5703     ON INSERT TO query.expr_xin
5704     DO INSTEAD
5705     INSERT INTO query.expression (
5706                 id,
5707                 type,
5708                 parenthesize,
5709                 parent_expr,
5710                 seq_no,
5711                 left_operand,
5712                 subquery,
5713                 negate
5714     ) VALUES (
5715         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5716         'xin',
5717         COALESCE(NEW.parenthesize, FALSE),
5718         NEW.parent_expr,
5719         COALESCE(NEW.seq_no, 1),
5720                 NEW.left_operand,
5721                 NEW.subquery,
5722                 COALESCE(NEW.negate, false)
5723     );
5724
5725 CREATE OR REPLACE RULE query_expr_xin_update_rule AS
5726     ON UPDATE TO query.expr_xin
5727     DO INSTEAD
5728     UPDATE query.expression SET
5729         id = NEW.id,
5730         parenthesize = NEW.parenthesize,
5731         parent_expr = NEW.parent_expr,
5732         seq_no = NEW.seq_no,
5733                 left_operand = NEW.left_operand,
5734                 subquery = NEW.subquery,
5735                 negate = NEW.negate
5736     WHERE
5737         id = OLD.id;
5738
5739 CREATE OR REPLACE RULE query_expr_xin_delete_rule AS
5740     ON DELETE TO query.expr_xin
5741     DO INSTEAD
5742     DELETE FROM query.expression WHERE id = OLD.id;
5743
5744 -- Create updatable view for IS NULL expressions
5745
5746 CREATE OR REPLACE VIEW query.expr_xisnull AS
5747     SELECT
5748                 id,
5749                 parenthesize,
5750                 parent_expr,
5751                 seq_no,
5752                 left_operand,
5753                 negate
5754     FROM
5755         query.expression
5756     WHERE
5757         type = 'xisnull';
5758
5759 CREATE OR REPLACE RULE query_expr_xisnull_insert_rule AS
5760     ON INSERT TO query.expr_xisnull
5761     DO INSTEAD
5762     INSERT INTO query.expression (
5763                 id,
5764                 type,
5765                 parenthesize,
5766                 parent_expr,
5767                 seq_no,
5768                 left_operand,
5769                 negate
5770     ) VALUES (
5771         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5772         'xisnull',
5773         COALESCE(NEW.parenthesize, FALSE),
5774         NEW.parent_expr,
5775         COALESCE(NEW.seq_no, 1),
5776                 NEW.left_operand,
5777                 COALESCE(NEW.negate, false)
5778     );
5779
5780 CREATE OR REPLACE RULE query_expr_xisnull_update_rule AS
5781     ON UPDATE TO query.expr_xisnull
5782     DO INSTEAD
5783     UPDATE query.expression SET
5784         id = NEW.id,
5785         parenthesize = NEW.parenthesize,
5786         parent_expr = NEW.parent_expr,
5787         seq_no = NEW.seq_no,
5788                 left_operand = NEW.left_operand,
5789                 negate = NEW.negate
5790     WHERE
5791         id = OLD.id;
5792
5793 CREATE OR REPLACE RULE query_expr_xisnull_delete_rule AS
5794     ON DELETE TO query.expr_xisnull
5795     DO INSTEAD
5796     DELETE FROM query.expression WHERE id = OLD.id;
5797
5798 -- Create updatable view for NULL expressions
5799
5800 CREATE OR REPLACE VIEW query.expr_xnull AS
5801     SELECT
5802                 id,
5803                 parenthesize,
5804                 parent_expr,
5805                 seq_no,
5806                 negate
5807     FROM
5808         query.expression
5809     WHERE
5810         type = 'xnull';
5811
5812 CREATE OR REPLACE RULE query_expr_xnull_insert_rule AS
5813     ON INSERT TO query.expr_xnull
5814     DO INSTEAD
5815     INSERT INTO query.expression (
5816                 id,
5817                 type,
5818                 parenthesize,
5819                 parent_expr,
5820                 seq_no,
5821                 negate
5822     ) VALUES (
5823         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5824         'xnull',
5825         COALESCE(NEW.parenthesize, FALSE),
5826         NEW.parent_expr,
5827         COALESCE(NEW.seq_no, 1),
5828                 COALESCE(NEW.negate, false)
5829     );
5830
5831 CREATE OR REPLACE RULE query_expr_xnull_update_rule AS
5832     ON UPDATE TO query.expr_xnull
5833     DO INSTEAD
5834     UPDATE query.expression SET
5835         id = NEW.id,
5836         parenthesize = NEW.parenthesize,
5837         parent_expr = NEW.parent_expr,
5838         seq_no = NEW.seq_no,
5839                 negate = NEW.negate
5840     WHERE
5841         id = OLD.id;
5842
5843 CREATE OR REPLACE RULE query_expr_xnull_delete_rule AS
5844     ON DELETE TO query.expr_xnull
5845     DO INSTEAD
5846     DELETE FROM query.expression WHERE id = OLD.id;
5847
5848 -- Create updatable view for numeric literal expressions
5849
5850 CREATE OR REPLACE VIEW query.expr_xnum AS
5851     SELECT
5852                 id,
5853                 parenthesize,
5854                 parent_expr,
5855                 seq_no,
5856                 literal
5857     FROM
5858         query.expression
5859     WHERE
5860         type = 'xnum';
5861
5862 CREATE OR REPLACE RULE query_expr_xnum_insert_rule AS
5863     ON INSERT TO query.expr_xnum
5864     DO INSTEAD
5865     INSERT INTO query.expression (
5866                 id,
5867                 type,
5868                 parenthesize,
5869                 parent_expr,
5870                 seq_no,
5871                 literal
5872     ) VALUES (
5873         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5874         'xnum',
5875         COALESCE(NEW.parenthesize, FALSE),
5876         NEW.parent_expr,
5877         COALESCE(NEW.seq_no, 1),
5878         NEW.literal
5879     );
5880
5881 CREATE OR REPLACE RULE query_expr_xnum_update_rule AS
5882     ON UPDATE TO query.expr_xnum
5883     DO INSTEAD
5884     UPDATE query.expression SET
5885         id = NEW.id,
5886         parenthesize = NEW.parenthesize,
5887         parent_expr = NEW.parent_expr,
5888         seq_no = NEW.seq_no,
5889         literal = NEW.literal
5890     WHERE
5891         id = OLD.id;
5892
5893 CREATE OR REPLACE RULE query_expr_xnum_delete_rule AS
5894     ON DELETE TO query.expr_xnum
5895     DO INSTEAD
5896     DELETE FROM query.expression WHERE id = OLD.id;
5897
5898 -- Create updatable view for operator expressions
5899
5900 CREATE OR REPLACE VIEW query.expr_xop AS
5901     SELECT
5902                 id,
5903                 parenthesize,
5904                 parent_expr,
5905                 seq_no,
5906                 left_operand,
5907                 operator,
5908                 right_operand,
5909                 negate
5910     FROM
5911         query.expression
5912     WHERE
5913         type = 'xop';
5914
5915 CREATE OR REPLACE RULE query_expr_xop_insert_rule AS
5916     ON INSERT TO query.expr_xop
5917     DO INSTEAD
5918     INSERT INTO query.expression (
5919                 id,
5920                 type,
5921                 parenthesize,
5922                 parent_expr,
5923                 seq_no,
5924                 left_operand,
5925                 operator,
5926                 right_operand,
5927                 negate
5928     ) VALUES (
5929         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5930         'xop',
5931         COALESCE(NEW.parenthesize, FALSE),
5932         NEW.parent_expr,
5933         COALESCE(NEW.seq_no, 1),
5934                 NEW.left_operand,
5935                 NEW.operator,
5936                 NEW.right_operand,
5937                 COALESCE(NEW.negate, false)
5938     );
5939
5940 CREATE OR REPLACE RULE query_expr_xop_update_rule AS
5941     ON UPDATE TO query.expr_xop
5942     DO INSTEAD
5943     UPDATE query.expression SET
5944         id = NEW.id,
5945         parenthesize = NEW.parenthesize,
5946         parent_expr = NEW.parent_expr,
5947         seq_no = NEW.seq_no,
5948                 left_operand = NEW.left_operand,
5949                 operator = NEW.operator,
5950                 right_operand = NEW.right_operand,
5951                 negate = NEW.negate
5952     WHERE
5953         id = OLD.id;
5954
5955 CREATE OR REPLACE RULE query_expr_xop_delete_rule AS
5956     ON DELETE TO query.expr_xop
5957     DO INSTEAD
5958     DELETE FROM query.expression WHERE id = OLD.id;
5959
5960 -- Create updatable view for series expressions
5961 -- i.e. series of expressions separated by operators
5962
5963 CREATE OR REPLACE VIEW query.expr_xser AS
5964     SELECT
5965                 id,
5966                 parenthesize,
5967                 parent_expr,
5968                 seq_no,
5969                 operator,
5970                 negate
5971     FROM
5972         query.expression
5973     WHERE
5974         type = 'xser';
5975
5976 CREATE OR REPLACE RULE query_expr_xser_insert_rule AS
5977     ON INSERT TO query.expr_xser
5978     DO INSTEAD
5979     INSERT INTO query.expression (
5980                 id,
5981                 type,
5982                 parenthesize,
5983                 parent_expr,
5984                 seq_no,
5985                 operator,
5986                 negate
5987     ) VALUES (
5988         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5989         'xser',
5990         COALESCE(NEW.parenthesize, FALSE),
5991         NEW.parent_expr,
5992         COALESCE(NEW.seq_no, 1),
5993                 NEW.operator,
5994                 COALESCE(NEW.negate, false)
5995     );
5996
5997 CREATE OR REPLACE RULE query_expr_xser_update_rule AS
5998     ON UPDATE TO query.expr_xser
5999     DO INSTEAD
6000     UPDATE query.expression SET
6001         id = NEW.id,
6002         parenthesize = NEW.parenthesize,
6003         parent_expr = NEW.parent_expr,
6004         seq_no = NEW.seq_no,
6005                 operator = NEW.operator,
6006                 negate = NEW.negate
6007     WHERE
6008         id = OLD.id;
6009
6010 CREATE OR REPLACE RULE query_expr_xser_delete_rule AS
6011     ON DELETE TO query.expr_xser
6012     DO INSTEAD
6013     DELETE FROM query.expression WHERE id = OLD.id;
6014
6015 -- Create updatable view for string literal expressions
6016
6017 CREATE OR REPLACE VIEW query.expr_xstr AS
6018     SELECT
6019         id,
6020         parenthesize,
6021         parent_expr,
6022         seq_no,
6023         literal
6024     FROM
6025         query.expression
6026     WHERE
6027         type = 'xstr';
6028
6029 CREATE OR REPLACE RULE query_expr_string_insert_rule AS
6030     ON INSERT TO query.expr_xstr
6031     DO INSTEAD
6032     INSERT INTO query.expression (
6033         id,
6034         type,
6035         parenthesize,
6036         parent_expr,
6037         seq_no,
6038         literal
6039     ) VALUES (
6040         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
6041         'xstr',
6042         COALESCE(NEW.parenthesize, FALSE),
6043         NEW.parent_expr,
6044         COALESCE(NEW.seq_no, 1),
6045         NEW.literal
6046     );
6047
6048 CREATE OR REPLACE RULE query_expr_string_update_rule AS
6049     ON UPDATE TO query.expr_xstr
6050     DO INSTEAD
6051     UPDATE query.expression SET
6052         id = NEW.id,
6053         parenthesize = NEW.parenthesize,
6054         parent_expr = NEW.parent_expr,
6055         seq_no = NEW.seq_no,
6056         literal = NEW.literal
6057     WHERE
6058         id = OLD.id;
6059
6060 CREATE OR REPLACE RULE query_expr_string_delete_rule AS
6061     ON DELETE TO query.expr_xstr
6062     DO INSTEAD
6063     DELETE FROM query.expression WHERE id = OLD.id;
6064
6065 -- Create updatable view for subquery expressions
6066
6067 CREATE OR REPLACE VIEW query.expr_xsubq AS
6068     SELECT
6069                 id,
6070                 parenthesize,
6071                 parent_expr,
6072                 seq_no,
6073                 subquery,
6074                 negate
6075     FROM
6076         query.expression
6077     WHERE
6078         type = 'xsubq';
6079
6080 CREATE OR REPLACE RULE query_expr_xsubq_insert_rule AS
6081     ON INSERT TO query.expr_xsubq
6082     DO INSTEAD
6083     INSERT INTO query.expression (
6084                 id,
6085                 type,
6086                 parenthesize,
6087                 parent_expr,
6088                 seq_no,
6089                 subquery,
6090                 negate
6091     ) VALUES (
6092         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
6093         'xsubq',
6094         COALESCE(NEW.parenthesize, FALSE),
6095         NEW.parent_expr,
6096         COALESCE(NEW.seq_no, 1),
6097                 NEW.subquery,
6098                 COALESCE(NEW.negate, false)
6099     );
6100
6101 CREATE OR REPLACE RULE query_expr_xsubq_update_rule AS
6102     ON UPDATE TO query.expr_xsubq
6103     DO INSTEAD
6104     UPDATE query.expression SET
6105         id = NEW.id,
6106         parenthesize = NEW.parenthesize,
6107         parent_expr = NEW.parent_expr,
6108         seq_no = NEW.seq_no,
6109                 subquery = NEW.subquery,
6110                 negate = NEW.negate
6111     WHERE
6112         id = OLD.id;
6113
6114 CREATE OR REPLACE RULE query_expr_xsubq_delete_rule AS
6115     ON DELETE TO query.expr_xsubq
6116     DO INSTEAD
6117     DELETE FROM query.expression WHERE id = OLD.id;
6118
6119 CREATE TABLE action.fieldset (
6120     id              SERIAL          PRIMARY KEY,
6121     owner           INT             NOT NULL REFERENCES actor.usr (id)
6122                                     DEFERRABLE INITIALLY DEFERRED,
6123     owning_lib      INT             NOT NULL REFERENCES actor.org_unit (id)
6124                                     DEFERRABLE INITIALLY DEFERRED,
6125     status          TEXT            NOT NULL
6126                                     CONSTRAINT valid_status CHECK ( status in
6127                                     ( 'PENDING', 'APPLIED', 'ERROR' )),
6128     creation_time   TIMESTAMPTZ     NOT NULL DEFAULT NOW(),
6129     scheduled_time  TIMESTAMPTZ,
6130     applied_time    TIMESTAMPTZ,
6131     classname       TEXT            NOT NULL, -- an IDL class name
6132     name            TEXT            NOT NULL,
6133     stored_query    INT             REFERENCES query.stored_query (id)
6134                                     DEFERRABLE INITIALLY DEFERRED,
6135     pkey_value      TEXT,
6136     CONSTRAINT lib_name_unique UNIQUE (owning_lib, name),
6137     CONSTRAINT fieldset_one_or_the_other CHECK (
6138         (stored_query IS NOT NULL AND pkey_value IS NULL) OR
6139         (pkey_value IS NOT NULL AND stored_query IS NULL)
6140     )
6141     -- the CHECK constraint means we can update the fields for a single
6142     -- row without all the extra overhead involved in a query
6143 );
6144
6145 CREATE INDEX action_fieldset_sched_time_idx ON action.fieldset( scheduled_time );
6146 CREATE INDEX action_owner_idx               ON action.fieldset( owner );
6147
6148 CREATE TABLE action.fieldset_col_val (
6149     id              SERIAL  PRIMARY KEY,
6150     fieldset        INT     NOT NULL REFERENCES action.fieldset
6151                                          ON DELETE CASCADE
6152                                          DEFERRABLE INITIALLY DEFERRED,
6153     col             TEXT    NOT NULL,  -- "field" from the idl ... the column on the table
6154     val             TEXT,              -- value for the column ... NULL means, well, NULL
6155     CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col)
6156 );
6157
6158 CREATE OR REPLACE FUNCTION action.apply_fieldset(
6159         fieldset_id IN INT,        -- id from action.fieldset
6160         table_name  IN TEXT,       -- table to be updated
6161         pkey_name   IN TEXT,       -- name of primary key column in that table
6162         query       IN TEXT        -- query constructed by qstore (for query-based
6163                                    --    fieldsets only; otherwise null
6164 )
6165 RETURNS TEXT AS $$
6166 DECLARE
6167         statement TEXT;
6168         fs_status TEXT;
6169         fs_pkey_value TEXT;
6170         fs_query TEXT;
6171         sep CHAR;
6172         status_code TEXT;
6173         msg TEXT;
6174         update_count INT;
6175         cv RECORD;
6176 BEGIN
6177         -- Sanity checks
6178         IF fieldset_id IS NULL THEN
6179                 RETURN 'Fieldset ID parameter is NULL';
6180         END IF;
6181         IF table_name IS NULL THEN
6182                 RETURN 'Table name parameter is NULL';
6183         END IF;
6184         IF pkey_name IS NULL THEN
6185                 RETURN 'Primary key name parameter is NULL';
6186         END IF;
6187         --
6188         statement := 'UPDATE ' || table_name || ' SET';
6189         --
6190         SELECT
6191                 status,
6192                 quote_literal( pkey_value )
6193         INTO
6194                 fs_status,
6195                 fs_pkey_value
6196         FROM
6197                 action.fieldset
6198         WHERE
6199                 id = fieldset_id;
6200         --
6201         IF fs_status IS NULL THEN
6202                 RETURN 'No fieldset found for id = ' || fieldset_id;
6203         ELSIF fs_status = 'APPLIED' THEN
6204                 RETURN 'Fieldset ' || fieldset_id || ' has already been applied';
6205         END IF;
6206         --
6207         sep := '';
6208         FOR cv IN
6209                 SELECT  col,
6210                                 val
6211                 FROM    action.fieldset_col_val
6212                 WHERE   fieldset = fieldset_id
6213         LOOP
6214                 statement := statement || sep || ' ' || cv.col
6215                                          || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' );
6216                 sep := ',';
6217         END LOOP;
6218         --
6219         IF sep = '' THEN
6220                 RETURN 'Fieldset ' || fieldset_id || ' has no column values defined';
6221         END IF;
6222         --
6223         -- Add the WHERE clause.  This differs according to whether it's a
6224         -- single-row fieldset or a query-based fieldset.
6225         --
6226         IF query IS NULL        AND fs_pkey_value IS NULL THEN
6227                 RETURN 'Incomplete fieldset: neither a primary key nor a query available';
6228         ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN
6229             fs_query := rtrim( query, ';' );
6230             statement := statement || ' WHERE ' || pkey_name || ' IN ( '
6231                          || fs_query || ' );';
6232         ELSIF query IS NULL     AND fs_pkey_value IS NOT NULL THEN
6233                 statement := statement || ' WHERE ' || pkey_name || ' = '
6234                                      || fs_pkey_value || ';';
6235         ELSE  -- both are not null
6236                 RETURN 'Ambiguous fieldset: both a primary key and a query provided';
6237         END IF;
6238         --
6239         -- Execute the update
6240         --
6241         BEGIN
6242                 EXECUTE statement;
6243                 GET DIAGNOSTICS update_count = ROW_COUNT;
6244                 --
6245                 IF UPDATE_COUNT > 0 THEN
6246                         status_code := 'APPLIED';
6247                         msg := NULL;
6248                 ELSE
6249                         status_code := 'ERROR';
6250                         msg := 'No eligible rows found for fieldset ' || fieldset_id;
6251         END IF;
6252         EXCEPTION WHEN OTHERS THEN
6253                 status_code := 'ERROR';
6254                 msg := 'Unable to apply fieldset ' || fieldset_id
6255                            || ': ' || sqlerrm;
6256         END;
6257         --
6258         -- Update fieldset status
6259         --
6260         UPDATE action.fieldset
6261         SET status       = status_code,
6262             applied_time = now()
6263         WHERE id = fieldset_id;
6264         --
6265         RETURN msg;
6266 END;
6267 $$ LANGUAGE plpgsql;
6268
6269 COMMENT ON FUNCTION action.apply_fieldset( INT, TEXT, TEXT, TEXT ) IS $$
6270 /**
6271  * Applies a specified fieldset, using a supplied table name and primary
6272  * key name.  The query parameter should be non-null only for
6273  * query-based fieldsets.
6274  *
6275  * Returns NULL if successful, or an error message if not.
6276  */
6277 $$;
6278
6279 CREATE INDEX uhr_hold_idx ON action.unfulfilled_hold_list (hold);
6280
6281 CREATE OR REPLACE VIEW action.unfulfilled_hold_loops AS
6282     SELECT  u.hold,
6283             c.circ_lib,
6284             count(*)
6285       FROM  action.unfulfilled_hold_list u
6286             JOIN asset.copy c ON (c.id = u.current_copy)
6287       GROUP BY 1,2;
6288
6289 CREATE OR REPLACE VIEW action.unfulfilled_hold_min_loop AS
6290     SELECT  hold,
6291             min(count)
6292       FROM  action.unfulfilled_hold_loops
6293       GROUP BY 1;
6294
6295 CREATE OR REPLACE VIEW action.unfulfilled_hold_innermost_loop AS
6296     SELECT  DISTINCT l.*
6297       FROM  action.unfulfilled_hold_loops l
6298             JOIN action.unfulfilled_hold_min_loop m USING (hold)
6299       WHERE l.count = m.min;
6300
6301 ALTER TABLE asset.copy
6302 ADD COLUMN dummy_isbn TEXT;
6303
6304 ALTER TABLE auditor.asset_copy_history
6305 ADD COLUMN dummy_isbn TEXT;
6306
6307 -- Add new column status_changed_date to asset.copy, with trigger to maintain it
6308 -- Add corresponding new column to auditor.asset_copy_history
6309
6310 ALTER TABLE asset.copy
6311         ADD COLUMN status_changed_time TIMESTAMPTZ;
6312
6313 ALTER TABLE auditor.asset_copy_history
6314         ADD COLUMN status_changed_time TIMESTAMPTZ;
6315
6316 CREATE OR REPLACE FUNCTION asset.acp_status_changed()
6317 RETURNS TRIGGER AS $$
6318 BEGIN
6319     IF NEW.status <> OLD.status THEN
6320         NEW.status_changed_time := now();
6321     END IF;
6322     RETURN NEW;
6323 END;
6324 $$ LANGUAGE plpgsql;
6325
6326 CREATE TRIGGER acp_status_changed_trig
6327         BEFORE UPDATE ON asset.copy
6328         FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed();
6329
6330 ALTER TABLE asset.copy
6331 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6332
6333 ALTER TABLE auditor.asset_copy_history
6334 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6335
6336 ALTER TABLE asset.copy ADD COLUMN floating BOOL NOT NULL DEFAULT FALSE;
6337 ALTER TABLE auditor.asset_copy_history ADD COLUMN floating BOOL;
6338
6339 DROP INDEX IF EXISTS asset.copy_barcode_key;
6340 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
6341
6342 -- Note: later we create a trigger a_opac_vis_mat_view_tgr
6343 -- AFTER INSERT OR UPDATE ON asset.copy
6344
6345 ALTER TABLE asset.copy ADD COLUMN cost NUMERIC(8,2);
6346 ALTER TABLE auditor.asset_copy_history ADD COLUMN cost NUMERIC(8,2);
6347
6348 -- Moke mostly parallel changes to action.circulation
6349 -- and action.aged_circulation
6350
6351 ALTER TABLE action.circulation
6352 ADD COLUMN workstation INT
6353     REFERENCES actor.workstation
6354         ON DELETE SET NULL
6355         DEFERRABLE INITIALLY DEFERRED;
6356
6357 ALTER TABLE action.aged_circulation
6358 ADD COLUMN workstation INT;
6359
6360 ALTER TABLE action.circulation
6361 ADD COLUMN parent_circ BIGINT
6362         REFERENCES action.circulation(id)
6363         DEFERRABLE INITIALLY DEFERRED;
6364
6365 CREATE UNIQUE INDEX circ_parent_idx
6366 ON action.circulation( parent_circ )
6367 WHERE parent_circ IS NOT NULL;
6368
6369 ALTER TABLE action.aged_circulation
6370 ADD COLUMN parent_circ BIGINT;
6371
6372 ALTER TABLE action.circulation
6373 ADD COLUMN checkin_workstation INT
6374         REFERENCES actor.workstation(id)
6375         ON DELETE SET NULL
6376         DEFERRABLE INITIALLY DEFERRED;
6377
6378 ALTER TABLE action.aged_circulation
6379 ADD COLUMN checkin_workstation INT;
6380
6381 ALTER TABLE action.circulation
6382 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6383
6384 ALTER TABLE action.aged_circulation
6385 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6386
6387 CREATE INDEX action_circulation_target_copy_idx
6388 ON action.circulation (target_copy);
6389
6390 CREATE INDEX action_aged_circulation_target_copy_idx
6391 ON action.aged_circulation (target_copy);
6392
6393 ALTER TABLE action.circulation
6394 DROP CONSTRAINT circulation_stop_fines_check;
6395
6396 ALTER TABLE action.circulation
6397         ADD CONSTRAINT circulation_stop_fines_check
6398         CHECK (stop_fines IN (
6399         'CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE','CLAIMSNEVERCHECKEDOUT'));
6400
6401 -- Hard due-date functionality
6402 CREATE TABLE config.hard_due_date (
6403         id          SERIAL      PRIMARY KEY,
6404         name        TEXT        NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
6405         ceiling_date    TIMESTAMPTZ NOT NULL,
6406         forceto     BOOL        NOT NULL,
6407         owner       INT         NOT NULL
6408 );
6409
6410 CREATE TABLE config.hard_due_date_values (
6411     id                  SERIAL      PRIMARY KEY,
6412     hard_due_date       INT         NOT NULL REFERENCES config.hard_due_date (id)
6413                                     DEFERRABLE INITIALLY DEFERRED,
6414     ceiling_date        TIMESTAMPTZ NOT NULL,
6415     active_date         TIMESTAMPTZ NOT NULL
6416 );
6417
6418 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN hard_due_date INT REFERENCES config.hard_due_date (id);
6419
6420 CREATE OR REPLACE FUNCTION config.update_hard_due_dates () RETURNS INT AS $func$
6421 DECLARE
6422     temp_value  config.hard_due_date_values%ROWTYPE;
6423     updated     INT := 0;
6424 BEGIN
6425     FOR temp_value IN
6426       SELECT  DISTINCT ON (hard_due_date) *
6427         FROM  config.hard_due_date_values
6428         WHERE active_date <= NOW() -- We've passed (or are at) the rollover time
6429         ORDER BY hard_due_date, active_date DESC -- Latest (nearest to us) active time
6430    LOOP
6431         UPDATE  config.hard_due_date
6432           SET   ceiling_date = temp_value.ceiling_date
6433           WHERE id = temp_value.hard_due_date
6434                 AND ceiling_date <> temp_value.ceiling_date; -- Time is equal if we've already updated the chdd
6435
6436         IF FOUND THEN
6437             updated := updated + 1;
6438         END IF;
6439     END LOOP;
6440
6441     RETURN updated;
6442 END;
6443 $func$ LANGUAGE plpgsql;
6444
6445 -- Correct some long-standing misspellings involving variations of "recur"
6446
6447 ALTER TABLE action.circulation RENAME COLUMN recuring_fine TO recurring_fine;
6448 ALTER TABLE action.circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6449
6450 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine TO recurring_fine;
6451 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6452
6453 ALTER TABLE config.rule_recuring_fine RENAME TO rule_recurring_fine;
6454 ALTER TABLE config.rule_recuring_fine_id_seq RENAME TO rule_recurring_fine_id_seq;
6455
6456 ALTER TABLE config.rule_recurring_fine RENAME COLUMN recurance_interval TO recurrence_interval;
6457
6458 -- Might as well keep the comment in sync as well
6459 COMMENT ON TABLE config.rule_recurring_fine IS $$
6460 /*
6461  * Copyright (C) 2005  Georgia Public Library Service 
6462  * Mike Rylander <mrylander@gmail.com>
6463  *
6464  * Circulation Recurring Fine rules
6465  *
6466  * Each circulation is given a recurring fine amount based on one of
6467  * these rules.  The recurrence_interval should not be any shorter
6468  * than the interval between runs of the fine_processor.pl script
6469  * (which is run from CRON), or you could miss fines.
6470  * 
6471  *
6472  * ****
6473  *
6474  * This program is free software; you can redistribute it and/or
6475  * modify it under the terms of the GNU General Public License
6476  * as published by the Free Software Foundation; either version 2
6477  * of the License, or (at your option) any later version.
6478  *
6479  * This program is distributed in the hope that it will be useful,
6480  * but WITHOUT ANY WARRANTY; without even the implied warranty of
6481  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6482  * GNU General Public License for more details.
6483  */
6484 $$;
6485
6486 -- Extend the name change to some related views:
6487
6488 DROP VIEW IF EXISTS reporter.overdue_circs;
6489
6490 CREATE OR REPLACE VIEW reporter.overdue_circs AS
6491 SELECT  *
6492   FROM  action.circulation
6493     WHERE checkin_time is null
6494                 AND (stop_fines NOT IN ('LOST','CLAIMSRETURNED') OR stop_fines IS NULL)
6495                                 AND due_date < now();
6496
6497 DROP VIEW IF EXISTS stats.fleshed_circulation;
6498
6499 DROP VIEW IF EXISTS stats.fleshed_copy;
6500
6501 CREATE VIEW stats.fleshed_copy AS
6502         SELECT  cp.*,
6503         CAST(cp.create_date AS DATE) AS create_date_day,
6504         CAST(cp.edit_date AS DATE) AS edit_date_day,
6505         DATE_TRUNC('hour', cp.create_date) AS create_date_hour,
6506         DATE_TRUNC('hour', cp.edit_date) AS edit_date_hour,
6507                 cn.label AS call_number_label,
6508                 cn.owning_lib,
6509                 rd.item_lang,
6510                 rd.item_type,
6511                 rd.item_form
6512         FROM    asset.copy cp
6513                 JOIN asset.call_number cn ON (cp.call_number = cn.id)
6514                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
6515
6516 CREATE VIEW stats.fleshed_circulation AS
6517         SELECT  c.*,
6518                 CAST(c.xact_start AS DATE) AS start_date_day,
6519                 CAST(c.xact_finish AS DATE) AS finish_date_day,
6520                 DATE_TRUNC('hour', c.xact_start) AS start_date_hour,
6521                 DATE_TRUNC('hour', c.xact_finish) AS finish_date_hour,
6522                 cp.call_number_label,
6523                 cp.owning_lib,
6524                 cp.item_lang,
6525                 cp.item_type,
6526                 cp.item_form
6527         FROM    action.circulation c
6528                 JOIN stats.fleshed_copy cp ON (cp.id = c.target_copy);
6529
6530 -- Drop a view temporarily in order to alter action.all_circulation, upon
6531 -- which it is dependent.  We will recreate the view later.
6532
6533 DROP VIEW IF EXISTS extend_reporter.full_circ_count;
6534
6535 -- You would think that CREATE OR REPLACE would be enough, but in testing
6536 -- PostgreSQL complained about renaming the columns in the view. So we
6537 -- drop the view first.
6538 DROP VIEW IF EXISTS action.all_circulation;
6539
6540 CREATE OR REPLACE VIEW action.all_circulation AS
6541     SELECT  id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6542         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6543         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6544         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6545         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6546         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6547       FROM  action.aged_circulation
6548             UNION ALL
6549     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,
6550         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,
6551         cn.record AS copy_bib_record, circ.xact_start, circ.xact_finish, circ.target_copy, circ.circ_lib, circ.circ_staff, circ.checkin_staff,
6552         circ.checkin_lib, circ.renewal_remaining, circ.due_date, circ.stop_fines_time, circ.checkin_time, circ.create_time, circ.duration,
6553         circ.fine_interval, circ.recurring_fine, circ.max_fine, circ.phone_renewal, circ.desk_renewal, circ.opac_renewal, circ.duration_rule,
6554         circ.recurring_fine_rule, circ.max_fine_rule, circ.stop_fines, circ.workstation, circ.checkin_workstation, circ.checkin_scan_time,
6555         circ.parent_circ
6556       FROM  action.circulation circ
6557         JOIN asset.copy cp ON (circ.target_copy = cp.id)
6558         JOIN asset.call_number cn ON (cp.call_number = cn.id)
6559         JOIN actor.usr p ON (circ.usr = p.id)
6560         LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
6561         LEFT JOIN actor.usr_address b ON (p.billing_address = a.id);
6562
6563 -- Recreate the temporarily dropped view, having altered the action.all_circulation view:
6564
6565 CREATE OR REPLACE VIEW extend_reporter.full_circ_count AS
6566  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
6567    FROM asset."copy" cp
6568    LEFT JOIN extend_reporter.legacy_circ_count c USING (id)
6569    LEFT JOIN "action".circulation circ ON circ.target_copy = cp.id
6570    LEFT JOIN "action".aged_circulation acirc ON acirc.target_copy = cp.id
6571   GROUP BY cp.id;
6572
6573 CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON action.circulation(target_copy) WHERE checkin_time IS NULL;
6574
6575 ALTER TABLE action.circulation DROP CONSTRAINT action_circulation_target_copy_fkey;
6576
6577 -- Rebuild dependent views
6578
6579 DROP VIEW IF EXISTS action.billable_circulations;
6580
6581 CREATE OR REPLACE VIEW action.billable_circulations AS
6582     SELECT  *
6583       FROM  action.circulation
6584       WHERE xact_finish IS NULL;
6585
6586 DROP VIEW IF EXISTS action.open_circulation;
6587
6588 CREATE OR REPLACE VIEW action.open_circulation AS
6589     SELECT  *
6590       FROM  action.circulation
6591       WHERE checkin_time IS NULL
6592       ORDER BY due_date;
6593
6594 CREATE OR REPLACE FUNCTION action.age_circ_on_delete () RETURNS TRIGGER AS $$
6595 DECLARE
6596 found char := 'N';
6597 BEGIN
6598
6599     -- If there are any renewals for this circulation, don't archive or delete
6600     -- it yet.   We'll do so later, when we archive and delete the renewals.
6601
6602     SELECT 'Y' INTO found
6603     FROM action.circulation
6604     WHERE parent_circ = OLD.id
6605     LIMIT 1;
6606
6607     IF found = 'Y' THEN
6608         RETURN NULL;  -- don't delete
6609         END IF;
6610
6611     -- Archive a copy of the old row to action.aged_circulation
6612
6613     INSERT INTO action.aged_circulation
6614         (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6615         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6616         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6617         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6618         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6619         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ)
6620       SELECT
6621         id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6622         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6623         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6624         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6625         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6626         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6627         FROM action.all_circulation WHERE id = OLD.id;
6628
6629     RETURN OLD;
6630 END;
6631 $$ LANGUAGE 'plpgsql';
6632
6633 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND name = 'title';
6634
6635 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND truncation = 0;
6636
6637 -- Adding circ.holds.target_skip_me OU setting logic to the pre-matchpoint tests
6638
6639 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$
6640 DECLARE
6641     current_requestor_group    permission.grp_tree%ROWTYPE;
6642     requestor_object    actor.usr%ROWTYPE;
6643     user_object        actor.usr%ROWTYPE;
6644     item_object        asset.copy%ROWTYPE;
6645     item_cn_object        asset.call_number%ROWTYPE;
6646     rec_descriptor        metabib.rec_descriptor%ROWTYPE;
6647     current_mp_weight    FLOAT;
6648     matchpoint_weight    FLOAT;
6649     tmp_weight        FLOAT;
6650     current_mp        config.hold_matrix_matchpoint%ROWTYPE;
6651     matchpoint        config.hold_matrix_matchpoint%ROWTYPE;
6652 BEGIN
6653     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6654     SELECT INTO requestor_object * FROM actor.usr WHERE id = match_requestor;
6655     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6656     SELECT INTO item_cn_object * FROM asset.call_number WHERE id = item_object.call_number;
6657     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r WHERE r.record = item_cn_object.record;
6658
6659     PERFORM * FROM config.internal_flag WHERE name = 'circ.holds.usr_not_requestor' AND enabled;
6660
6661     IF NOT FOUND THEN
6662         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = requestor_object.profile;
6663     ELSE
6664         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = user_object.profile;
6665     END IF;
6666
6667     LOOP 
6668         -- for each potential matchpoint for this ou and group ...
6669         FOR current_mp IN
6670             SELECT    m.*
6671               FROM    config.hold_matrix_matchpoint m
6672               WHERE    m.requestor_grp = current_requestor_group.id AND m.active
6673               ORDER BY    CASE WHEN m.circ_modifier    IS NOT NULL THEN 16 ELSE 0 END +
6674                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 16 ELSE 0 END +
6675                     CASE WHEN m.marc_type        IS NOT NULL THEN 8 ELSE 0 END +
6676                     CASE WHEN m.marc_form        IS NOT NULL THEN 4 ELSE 0 END +
6677                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 2 ELSE 0 END +
6678                     CASE WHEN m.ref_flag        IS NOT NULL THEN 1 ELSE 0 END DESC LOOP
6679
6680             current_mp_weight := 5.0;
6681
6682             IF current_mp.circ_modifier IS NOT NULL THEN
6683                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
6684             END IF;
6685
6686             IF current_mp.marc_type IS NOT NULL THEN
6687                 IF item_object.circ_as_type IS NOT NULL THEN
6688                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
6689                 ELSE
6690                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
6691                 END IF;
6692             END IF;
6693
6694             IF current_mp.marc_form IS NOT NULL THEN
6695                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
6696             END IF;
6697
6698             IF current_mp.marc_vr_format IS NOT NULL THEN
6699                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
6700             END IF;
6701
6702             IF current_mp.juvenile_flag IS NOT NULL THEN
6703                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
6704             END IF;
6705
6706             IF current_mp.ref_flag IS NOT NULL THEN
6707                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
6708             END IF;
6709
6710
6711             -- caclulate the rule match weight
6712             IF current_mp.item_owning_ou IS NOT NULL THEN
6713                 CONTINUE WHEN current_mp.item_owning_ou NOT IN (SELECT (actor.org_unit_ancestors(item_cn_object.owning_lib)).id);
6714                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.item_owning_ou, item_cn_object.owning_lib)::FLOAT + 1.0)::FLOAT;
6715                 current_mp_weight := current_mp_weight - tmp_weight;
6716             END IF; 
6717
6718             IF current_mp.item_circ_ou IS NOT NULL THEN
6719                 CONTINUE WHEN current_mp.item_circ_ou NOT IN (SELECT (actor.org_unit_ancestors(item_object.circ_lib)).id);
6720                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.item_circ_ou, item_object.circ_lib)::FLOAT + 1.0)::FLOAT;
6721                 current_mp_weight := current_mp_weight - tmp_weight;
6722             END IF; 
6723
6724             IF current_mp.pickup_ou IS NOT NULL THEN
6725                 CONTINUE WHEN current_mp.pickup_ou NOT IN (SELECT (actor.org_unit_ancestors(pickup_ou)).id);
6726                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.pickup_ou, pickup_ou)::FLOAT + 1.0)::FLOAT;
6727                 current_mp_weight := current_mp_weight - tmp_weight;
6728             END IF; 
6729
6730             IF current_mp.request_ou IS NOT NULL THEN
6731                 CONTINUE WHEN current_mp.request_ou NOT IN (SELECT (actor.org_unit_ancestors(request_ou)).id);
6732                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.request_ou, request_ou)::FLOAT + 1.0)::FLOAT;
6733                 current_mp_weight := current_mp_weight - tmp_weight;
6734             END IF; 
6735
6736             IF current_mp.user_home_ou IS NOT NULL THEN
6737                 CONTINUE WHEN current_mp.user_home_ou NOT IN (SELECT (actor.org_unit_ancestors(user_object.home_ou)).id);
6738                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.user_home_ou, user_object.home_ou)::FLOAT + 1.0)::FLOAT;
6739                 current_mp_weight := current_mp_weight - tmp_weight;
6740             END IF; 
6741
6742             -- set the matchpoint if we found the best one
6743             IF matchpoint_weight IS NULL OR matchpoint_weight > current_mp_weight THEN
6744                 matchpoint = current_mp;
6745                 matchpoint_weight = current_mp_weight;
6746             END IF;
6747
6748         END LOOP;
6749
6750         EXIT WHEN current_requestor_group.parent IS NULL OR matchpoint.id IS NOT NULL;
6751
6752         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = current_requestor_group.parent;
6753     END LOOP;
6754
6755     RETURN matchpoint.id;
6756 END;
6757 $func$ LANGUAGE plpgsql;
6758
6759 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$
6760 DECLARE
6761     matchpoint_id        INT;
6762     user_object        actor.usr%ROWTYPE;
6763     age_protect_object    config.rule_age_hold_protect%ROWTYPE;
6764     standing_penalty    config.standing_penalty%ROWTYPE;
6765     transit_range_ou_type    actor.org_unit_type%ROWTYPE;
6766     transit_source        actor.org_unit%ROWTYPE;
6767     item_object        asset.copy%ROWTYPE;
6768     ou_skip              actor.org_unit_setting%ROWTYPE;
6769     result            action.matrix_test_result;
6770     hold_test        config.hold_matrix_matchpoint%ROWTYPE;
6771     hold_count        INT;
6772     hold_transit_prox    INT;
6773     frozen_hold_count    INT;
6774     context_org_list    INT[];
6775     done            BOOL := FALSE;
6776 BEGIN
6777     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6778     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( pickup_ou );
6779
6780     result.success := TRUE;
6781
6782     -- Fail if we couldn't find a user
6783     IF user_object.id IS NULL THEN
6784         result.fail_part := 'no_user';
6785         result.success := FALSE;
6786         done := TRUE;
6787         RETURN NEXT result;
6788         RETURN;
6789     END IF;
6790
6791     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6792
6793     -- Fail if we couldn't find a copy
6794     IF item_object.id IS NULL THEN
6795         result.fail_part := 'no_item';
6796         result.success := FALSE;
6797         done := TRUE;
6798         RETURN NEXT result;
6799         RETURN;
6800     END IF;
6801
6802     SELECT INTO matchpoint_id action.find_hold_matrix_matchpoint(pickup_ou, request_ou, match_item, match_user, match_requestor);
6803     result.matchpoint := matchpoint_id;
6804
6805     SELECT INTO ou_skip * FROM actor.org_unit_setting WHERE name = 'circ.holds.target_skip_me' AND org_unit = item_object.circ_lib;
6806
6807     -- Fail if the circ_lib for the item has circ.holds.target_skip_me set to true
6808     IF ou_skip.id IS NOT NULL AND ou_skip.value = 'true' THEN
6809         result.fail_part := 'circ.holds.target_skip_me';
6810         result.success := FALSE;
6811         done := TRUE;
6812         RETURN NEXT result;
6813         RETURN;
6814     END IF;
6815
6816     -- Fail if user is barred
6817     IF user_object.barred IS TRUE THEN
6818         result.fail_part := 'actor.usr.barred';
6819         result.success := FALSE;
6820         done := TRUE;
6821         RETURN NEXT result;
6822         RETURN;
6823     END IF;
6824
6825     -- Fail if we couldn't find any matchpoint (requires a default)
6826     IF matchpoint_id IS NULL THEN
6827         result.fail_part := 'no_matchpoint';
6828         result.success := FALSE;
6829         done := TRUE;
6830         RETURN NEXT result;
6831         RETURN;
6832     END IF;
6833
6834     SELECT INTO hold_test * FROM config.hold_matrix_matchpoint WHERE id = matchpoint_id;
6835
6836     IF hold_test.holdable IS FALSE THEN
6837         result.fail_part := 'config.hold_matrix_test.holdable';
6838         result.success := FALSE;
6839         done := TRUE;
6840         RETURN NEXT result;
6841     END IF;
6842
6843     IF hold_test.transit_range IS NOT NULL THEN
6844         SELECT INTO transit_range_ou_type * FROM actor.org_unit_type WHERE id = hold_test.transit_range;
6845         IF hold_test.distance_is_from_owner THEN
6846             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;
6847         ELSE
6848             SELECT INTO transit_source * FROM actor.org_unit WHERE id = item_object.circ_lib;
6849         END IF;
6850
6851         PERFORM * FROM actor.org_unit_descendants( transit_source.id, transit_range_ou_type.depth ) WHERE id = pickup_ou;
6852
6853         IF NOT FOUND THEN
6854             result.fail_part := 'transit_range';
6855             result.success := FALSE;
6856             done := TRUE;
6857             RETURN NEXT result;
6858         END IF;
6859     END IF;
6860  
6861     IF NOT retargetting THEN
6862         FOR standing_penalty IN
6863             SELECT  DISTINCT csp.*
6864               FROM  actor.usr_standing_penalty usp
6865                     JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6866               WHERE usr = match_user
6867                     AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6868                     AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6869                     AND csp.block_list LIKE '%HOLD%' LOOP
6870     
6871             result.fail_part := standing_penalty.name;
6872             result.success := FALSE;
6873             done := TRUE;
6874             RETURN NEXT result;
6875         END LOOP;
6876     
6877         IF hold_test.stop_blocked_user IS TRUE THEN
6878             FOR standing_penalty IN
6879                 SELECT  DISTINCT csp.*
6880                   FROM  actor.usr_standing_penalty usp
6881                         JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6882                   WHERE usr = match_user
6883                         AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6884                         AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6885                         AND csp.block_list LIKE '%CIRC%' LOOP
6886         
6887                 result.fail_part := standing_penalty.name;
6888                 result.success := FALSE;
6889                 done := TRUE;
6890                 RETURN NEXT result;
6891             END LOOP;
6892         END IF;
6893     
6894         IF hold_test.max_holds IS NOT NULL THEN
6895             SELECT    INTO hold_count COUNT(*)
6896               FROM    action.hold_request
6897               WHERE    usr = match_user
6898                 AND fulfillment_time IS NULL
6899                 AND cancel_time IS NULL
6900                 AND CASE WHEN hold_test.include_frozen_holds THEN TRUE ELSE frozen IS FALSE END;
6901     
6902             IF hold_count >= hold_test.max_holds THEN
6903                 result.fail_part := 'config.hold_matrix_test.max_holds';
6904                 result.success := FALSE;
6905                 done := TRUE;
6906                 RETURN NEXT result;
6907             END IF;
6908         END IF;
6909     END IF;
6910
6911     IF item_object.age_protect IS NOT NULL THEN
6912         SELECT INTO age_protect_object * FROM config.rule_age_hold_protect WHERE id = item_object.age_protect;
6913
6914         IF item_object.create_date + age_protect_object.age > NOW() THEN
6915             IF hold_test.distance_is_from_owner THEN
6916                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_cn_object.owning_lib AND to_org = pickup_ou;
6917             ELSE
6918                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_object.circ_lib AND to_org = pickup_ou;
6919             END IF;
6920
6921             IF hold_transit_prox > age_protect_object.prox THEN
6922                 result.fail_part := 'config.rule_age_hold_protect.prox';
6923                 result.success := FALSE;
6924                 done := TRUE;
6925                 RETURN NEXT result;
6926             END IF;
6927         END IF;
6928     END IF;
6929
6930     IF NOT done THEN
6931         RETURN NEXT result;
6932     END IF;
6933
6934     RETURN;
6935 END;
6936 $func$ LANGUAGE plpgsql;
6937
6938 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$
6939     SELECT * FROM action.hold_request_permit_test( $1, $2, $3, $4, $5, FALSE);
6940 $func$ LANGUAGE SQL;
6941
6942 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$
6943     SELECT * FROM action.hold_request_permit_test( $1, $2, $3, $4, $5, TRUE );
6944 $func$ LANGUAGE SQL;
6945
6946 -- New post-delete trigger to propagate deletions to parent(s)
6947
6948 CREATE OR REPLACE FUNCTION action.age_parent_circ_on_delete () RETURNS TRIGGER AS $$
6949 BEGIN
6950
6951     -- Having deleted a renewal, we can delete the original circulation (or a previous
6952     -- renewal, if that's what parent_circ is pointing to).  That deletion will trigger
6953     -- deletion of any prior parents, etc. recursively.
6954
6955     IF OLD.parent_circ IS NOT NULL THEN
6956         DELETE FROM action.circulation
6957         WHERE id = OLD.parent_circ;
6958     END IF;
6959
6960     RETURN OLD;
6961 END;
6962 $$ LANGUAGE 'plpgsql';
6963
6964 CREATE TRIGGER age_parent_circ AFTER DELETE ON action.circulation
6965 FOR EACH ROW EXECUTE PROCEDURE action.age_parent_circ_on_delete ();
6966
6967 -- This only gets inserted if there are no other id > 100 billing types
6968 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;
6969 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101) FROM config.billing_type_id_seq WHERE last_value < 101;
6970
6971 -- Populate xact_type column in the materialized version of billable_xact_summary
6972
6973 CREATE OR REPLACE FUNCTION money.mat_summary_create () RETURNS TRIGGER AS $$
6974 BEGIN
6975         INSERT INTO money.materialized_billable_xact_summary (id, usr, xact_start, xact_finish, total_paid, total_owed, balance_owed, xact_type)
6976                 VALUES ( NEW.id, NEW.usr, NEW.xact_start, NEW.xact_finish, 0.0, 0.0, 0.0, TG_ARGV[0]);
6977         RETURN NEW;
6978 END;
6979 $$ LANGUAGE PLPGSQL;
6980  
6981 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON action.circulation;
6982 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('circulation');
6983  
6984 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON money.grocery;
6985 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON money.grocery FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('grocery');
6986
6987 CREATE RULE money_payment_view_update AS ON UPDATE TO money.payment_view DO INSTEAD 
6988     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;
6989
6990 -- Generate the equivalent of compound subject entries from the existing rows
6991 -- so that we don't have to laboriously reindex them
6992
6993 --INSERT INTO config.metabib_field (field_class, name, format, xpath ) VALUES
6994 --    ( 'subject', 'complete', 'mods32', $$//mods32:mods/mods32:subject//text()$$ );
6995 --
6996 --CREATE INDEX metabib_subject_field_entry_source_idx ON metabib.subject_field_entry (source);
6997 --
6998 --INSERT INTO metabib.subject_field_entry (source, field, value)
6999 --    SELECT source, (
7000 --            SELECT id 
7001 --            FROM config.metabib_field
7002 --            WHERE field_class = 'subject' AND name = 'complete'
7003 --        ), 
7004 --        ARRAY_TO_STRING ( 
7005 --            ARRAY (
7006 --                SELECT value 
7007 --                FROM metabib.subject_field_entry msfe
7008 --                WHERE msfe.source = groupee.source
7009 --                ORDER BY source 
7010 --            ), ' ' 
7011 --        ) AS grouped
7012 --    FROM ( 
7013 --        SELECT source
7014 --        FROM metabib.subject_field_entry
7015 --        GROUP BY source
7016 --    ) AS groupee;
7017
7018 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_del () RETURNS TRIGGER AS $$
7019 DECLARE
7020         prev_billing    money.billing%ROWTYPE;
7021         old_billing     money.billing%ROWTYPE;
7022 BEGIN
7023         SELECT * INTO prev_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1 OFFSET 1;
7024         SELECT * INTO old_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1;
7025
7026         IF OLD.id = old_billing.id THEN
7027                 UPDATE  money.materialized_billable_xact_summary
7028                   SET   last_billing_ts = prev_billing.billing_ts,
7029                         last_billing_note = prev_billing.note,
7030                         last_billing_type = prev_billing.billing_type
7031                   WHERE id = OLD.xact;
7032         END IF;
7033
7034         IF NOT OLD.voided THEN
7035                 UPDATE  money.materialized_billable_xact_summary
7036                   SET   total_owed = total_owed - OLD.amount,
7037                         balance_owed = balance_owed + OLD.amount
7038                   WHERE id = OLD.xact;
7039         END IF;
7040
7041         RETURN OLD;
7042 END;
7043 $$ LANGUAGE PLPGSQL;
7044
7045 -- ARG! need to rid ourselves of the broken table definition ... this mechanism is not ideal, sorry.
7046 DROP TABLE IF EXISTS config.index_normalizer CASCADE;
7047
7048 CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT, TEXT ) RETURNS TEXT AS $func$
7049
7050     use strict;
7051     use Unicode::Normalize;
7052     use Encode;
7053
7054     my $str = decode_utf8(shift);
7055     my $sf = shift;
7056
7057     # Apply NACO normalization to input string; based on
7058     # http://www.loc.gov/catdir/pcc/naco/SCA_PccNormalization_Final_revised.pdf
7059     #
7060     # Note that unlike a strict reading of the NACO normalization rules,
7061     # output is returned as lowercase instead of uppercase for compatibility
7062     # with previous versions of the Evergreen naco_normalize routine.
7063
7064     # Convert to upper-case first; even though final output will be lowercase, doing this will
7065     # ensure that the German eszett (ß) and certain ligatures (ff, fi, ffl, etc.) will be handled correctly.
7066     # If there are any bugs in Perl's implementation of upcasing, they will be passed through here.
7067     $str = uc $str;
7068
7069     # remove non-filing strings
7070     $str =~ s/\x{0098}.*?\x{009C}//g;
7071
7072     $str = NFKD($str);
7073
7074     # additional substitutions - 3.6.
7075     $str =~ s/\x{00C6}/AE/g;
7076     $str =~ s/\x{00DE}/TH/g;
7077     $str =~ s/\x{0152}/OE/g;
7078     $str =~ tr/\x{0110}\x{00D0}\x{00D8}\x{0141}\x{2113}\x{02BB}\x{02BC}]['/DDOLl/d;
7079
7080     # transformations based on Unicode category codes
7081     $str =~ s/[\p{Cc}\p{Cf}\p{Co}\p{Cs}\p{Lm}\p{Mc}\p{Me}\p{Mn}]//g;
7082
7083         if ($sf && $sf =~ /^a/o) {
7084                 my $commapos = index($str, ',');
7085                 if ($commapos > -1) {
7086                         if ($commapos != length($str) - 1) {
7087                 $str =~ s/,/\x07/; # preserve first comma
7088                         }
7089                 }
7090         }
7091
7092     # since we've stripped out the control characters, we can now
7093     # use a few as placeholders temporarily
7094     $str =~ tr/+&@\x{266D}\x{266F}#/\x01\x02\x03\x04\x05\x06/;
7095     $str =~ s/[\p{Pc}\p{Pd}\p{Pe}\p{Pf}\p{Pi}\p{Po}\p{Ps}\p{Sk}\p{Sm}\p{So}\p{Zl}\p{Zp}\p{Zs}]/ /g;
7096     $str =~ tr/\x01\x02\x03\x04\x05\x06\x07/+&@\x{266D}\x{266F}#,/;
7097
7098     # decimal digits
7099     $str =~ tr/\x{0660}-\x{0669}\x{06F0}-\x{06F9}\x{07C0}-\x{07C9}\x{0966}-\x{096F}\x{09E6}-\x{09EF}\x{0A66}-\x{0A6F}\x{0AE6}-\x{0AEF}\x{0B66}-\x{0B6F}\x{0BE6}-\x{0BEF}\x{0C66}-\x{0C6F}\x{0CE6}-\x{0CEF}\x{0D66}-\x{0D6F}\x{0E50}-\x{0E59}\x{0ED0}-\x{0ED9}\x{0F20}-\x{0F29}\x{1040}-\x{1049}\x{1090}-\x{1099}\x{17E0}-\x{17E9}\x{1810}-\x{1819}\x{1946}-\x{194F}\x{19D0}-\x{19D9}\x{1A80}-\x{1A89}\x{1A90}-\x{1A99}\x{1B50}-\x{1B59}\x{1BB0}-\x{1BB9}\x{1C40}-\x{1C49}\x{1C50}-\x{1C59}\x{A620}-\x{A629}\x{A8D0}-\x{A8D9}\x{A900}-\x{A909}\x{A9D0}-\x{A9D9}\x{AA50}-\x{AA59}\x{ABF0}-\x{ABF9}\x{FF10}-\x{FF19}/0-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-9/;
7100
7101     # intentionally skipping step 8 of the NACO algorithm; if the string
7102     # gets normalized away, that's fine.
7103
7104     # leading and trailing spaces
7105     $str =~ s/\s+/ /g;
7106     $str =~ s/^\s+//;
7107     $str =~ s/\s+$//g;
7108
7109     return lc $str;
7110 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
7111
7112 -- Some handy functions, based on existing ones, to provide optional ingest normalization
7113
7114 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
7115         SELECT SUBSTRING($1,$2);
7116 $func$ LANGUAGE SQL STRICT IMMUTABLE;
7117
7118 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
7119         SELECT SUBSTRING($1,1,$2);
7120 $func$ LANGUAGE SQL STRICT IMMUTABLE;
7121
7122 CREATE OR REPLACE FUNCTION public.naco_normalize_keep_comma( TEXT ) RETURNS TEXT AS $func$
7123         SELECT public.naco_normalize($1,'a');
7124 $func$ LANGUAGE SQL STRICT IMMUTABLE;
7125
7126 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
7127         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
7128 $func$ LANGUAGE SQL STRICT IMMUTABLE;
7129
7130 -- And ... a table in which to register them
7131
7132 CREATE TABLE config.index_normalizer (
7133         id              SERIAL  PRIMARY KEY,
7134         name            TEXT    UNIQUE NOT NULL,
7135         description     TEXT,
7136         func            TEXT    NOT NULL,
7137         param_count     INT     NOT NULL DEFAULT 0
7138 );
7139
7140 CREATE TABLE config.metabib_field_index_norm_map (
7141         id      SERIAL  PRIMARY KEY,
7142         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
7143         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
7144         params  TEXT,
7145         pos     INT     NOT NULL DEFAULT 0
7146 );
7147
7148 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7149         'NACO Normalize',
7150         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
7151         'naco_normalize',
7152         0
7153 );
7154
7155 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7156         'Normalize date range',
7157         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
7158         'split_date_range',
7159         1
7160 );
7161
7162 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7163         'NACO Normalize -- retain first comma',
7164         '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.',
7165         'naco_normalize_keep_comma',
7166         0
7167 );
7168
7169 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7170         'Strip Diacritics',
7171         'Convert text to NFD form and remove non-spacing combining marks.',
7172         'remove_diacritics',
7173         0
7174 );
7175
7176 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7177         'Up-case',
7178         'Convert text upper case.',
7179         'uppercase',
7180         0
7181 );
7182
7183 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7184         'Down-case',
7185         'Convert text lower case.',
7186         'lowercase',
7187         0
7188 );
7189
7190 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7191         'Extract Dewey-like number',
7192         'Extract a string of numeric characters ther resembles a DDC number.',
7193         'call_number_dewey',
7194         0
7195 );
7196
7197 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7198         'Left truncation',
7199         'Discard the specified number of characters from the left side of the string.',
7200         'left_trunc',
7201         1
7202 );
7203
7204 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7205         'Right truncation',
7206         'Include only the specified number of characters from the left side of the string.',
7207         'right_trunc',
7208         1
7209 );
7210
7211 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
7212         'First word',
7213         'Include only the first space-separated word of a string.',
7214         'first_word',
7215         0
7216 );
7217
7218 INSERT INTO config.metabib_field_index_norm_map (field,norm)
7219         SELECT  m.id,
7220                 i.id
7221           FROM  config.metabib_field m,
7222                 config.index_normalizer i
7223           WHERE i.func IN ('naco_normalize','split_date_range');
7224
7225 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
7226 DECLARE
7227     normalizer      RECORD;
7228     value           TEXT := '';
7229 BEGIN
7230
7231     value := NEW.value;
7232
7233     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
7234         FOR normalizer IN
7235             SELECT  n.func AS func,
7236                     n.param_count AS param_count,
7237                     m.params AS params
7238               FROM  config.index_normalizer n
7239                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
7240               WHERE field = NEW.field AND m.pos < 0
7241               ORDER BY m.pos LOOP
7242                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
7243                     quote_literal( value ) ||
7244                     CASE
7245                         WHEN normalizer.param_count > 0
7246                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
7247                             ELSE ''
7248                         END ||
7249                     ')' INTO value;
7250
7251         END LOOP;
7252
7253         NEW.value := value;
7254     END IF;
7255
7256     IF NEW.index_vector = ''::tsvector THEN
7257         RETURN NEW;
7258     END IF;
7259
7260     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
7261         FOR normalizer IN
7262             SELECT  n.func AS func,
7263                     n.param_count AS param_count,
7264                     m.params AS params
7265               FROM  config.index_normalizer n
7266                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
7267               WHERE field = NEW.field AND m.pos >= 0
7268               ORDER BY m.pos LOOP
7269                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
7270                     quote_literal( value ) ||
7271                     CASE
7272                         WHEN normalizer.param_count > 0
7273                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
7274                             ELSE ''
7275                         END ||
7276                     ')' INTO value;
7277
7278         END LOOP;
7279     END IF;
7280
7281     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
7282         NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
7283     ELSE
7284         NEW.index_vector = to_tsvector(TG_ARGV[0], value);
7285     END IF;
7286
7287     RETURN NEW;
7288 END;
7289 $$ LANGUAGE PLPGSQL;
7290
7291 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
7292
7293 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
7294
7295 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
7296     SELECT  ARRAY_TO_STRING(
7297                 oils_xpath(
7298                     $1 ||
7299                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
7300                     $2,
7301                     $4
7302                 ),
7303                 $3
7304             );
7305 $func$ LANGUAGE SQL IMMUTABLE;
7306
7307 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
7308     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
7309 $func$ LANGUAGE SQL IMMUTABLE;
7310
7311 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
7312     SELECT oils_xpath_string( $1, $2, '', $3 );
7313 $func$ LANGUAGE SQL IMMUTABLE;
7314
7315 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
7316     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
7317 $func$ LANGUAGE SQL IMMUTABLE;
7318
7319 CREATE TYPE metabib.field_entry_template AS (
7320         field_class     TEXT,
7321         field           INT,
7322         source          BIGINT,
7323         value           TEXT
7324 );
7325
7326 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
7327   use strict;
7328
7329   use XML::LibXSLT;
7330   use XML::LibXML;
7331
7332   my $doc = shift;
7333   my $xslt = shift;
7334
7335   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
7336   # methods of parsing XML documents and stylesheets, in the hopes of broader
7337   # compatibility with distributions
7338   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
7339
7340   # Cache the XML parser, if we do not already have one
7341   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
7342     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
7343
7344   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
7345
7346   # Cache the XSLT processor, if we do not already have one
7347   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
7348     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
7349
7350   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
7351     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
7352
7353   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
7354     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
7355
7356   return $stylesheet->output_string(
7357     $stylesheet->transform(
7358       $parser->parse_string($doc)
7359     )
7360   );
7361
7362 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
7363
7364 -- Add two columns so that the following function will compile.
7365 -- Eventually the label column will be NOT NULL, but not yet.
7366 ALTER TABLE config.metabib_field ADD COLUMN label TEXT;
7367 ALTER TABLE config.metabib_field ADD COLUMN facet_xpath TEXT;
7368
7369 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( rid BIGINT, default_joiner TEXT ) RETURNS SETOF metabib.field_entry_template AS $func$
7370 DECLARE
7371     bib     biblio.record_entry%ROWTYPE;
7372     idx     config.metabib_field%ROWTYPE;
7373     xfrm        config.xml_transform%ROWTYPE;
7374     prev_xfrm   TEXT;
7375     transformed_xml TEXT;
7376     xml_node    TEXT;
7377     xml_node_list   TEXT[];
7378     facet_text  TEXT;
7379     raw_text    TEXT;
7380     curr_text   TEXT;
7381     joiner      TEXT := default_joiner; -- XXX will index defs supply a joiner?
7382     output_row  metabib.field_entry_template%ROWTYPE;
7383 BEGIN
7384
7385     -- Get the record
7386     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7387
7388     -- Loop over the indexing entries
7389     FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP
7390
7391         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
7392
7393         -- See if we can skip the XSLT ... it's expensive
7394         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
7395             -- Can't skip the transform
7396             IF xfrm.xslt <> '---' THEN
7397                 transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt);
7398             ELSE
7399                 transformed_xml := bib.marc;
7400             END IF;
7401
7402             prev_xfrm := xfrm.name;
7403         END IF;
7404
7405         xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7406
7407         raw_text := NULL;
7408         FOR xml_node IN SELECT x FROM explode_array(xml_node_list) AS x LOOP
7409             CONTINUE WHEN xml_node !~ E'^\\s*<';
7410
7411             curr_text := ARRAY_TO_STRING(
7412                 oils_xpath( '//text()',
7413                     REGEXP_REPLACE( -- This escapes all &s not followed by "amp;".  Data ise returned from oils_xpath (above) in UTF-8, not entity encoded
7414                         REGEXP_REPLACE( -- This escapes embeded <s
7415                             xml_node,
7416                             $re$(>[^<]+)(<)([^>]+<)$re$,
7417                             E'\\1&lt;\\3',
7418                             'g'
7419                         ),
7420                         '&(?!amp;)',
7421                         '&amp;',
7422                         'g'
7423                     )
7424                 ),
7425                 ' '
7426             );
7427
7428             CONTINUE WHEN curr_text IS NULL OR curr_text = '';
7429
7430             IF raw_text IS NOT NULL THEN
7431                 raw_text := raw_text || joiner;
7432             END IF;
7433
7434             raw_text := COALESCE(raw_text,'') || curr_text;
7435
7436             -- insert raw node text for faceting
7437             IF idx.facet_field THEN
7438
7439                 IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN
7440                     facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7441                 ELSE
7442                     facet_text := curr_text;
7443                 END IF;
7444
7445                 output_row.field_class = idx.field_class;
7446                 output_row.field = -1 * idx.id;
7447                 output_row.source = rid;
7448                 output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g'));
7449
7450                 RETURN NEXT output_row;
7451             END IF;
7452
7453         END LOOP;
7454
7455         CONTINUE WHEN raw_text IS NULL OR raw_text = '';
7456
7457         -- insert combined node text for searching
7458         IF idx.search_field THEN
7459             output_row.field_class = idx.field_class;
7460             output_row.field = idx.id;
7461             output_row.source = rid;
7462             output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g'));
7463
7464             RETURN NEXT output_row;
7465         END IF;
7466
7467     END LOOP;
7468
7469 END;
7470 $func$ LANGUAGE PLPGSQL;
7471
7472 -- default to a space joiner
7473 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( BIGINT ) RETURNS SETOF metabib.field_entry_template AS $func$
7474         SELECT * FROM biblio.extract_metabib_field_entry($1, ' ');
7475 $func$ LANGUAGE SQL;
7476
7477 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
7478
7479 use MARC::Record;
7480 use MARC::File::XML (BinaryEncoding => 'UTF-8');
7481
7482 my $xml = shift;
7483 my $r = MARC::Record->new_from_xml( $xml );
7484
7485 return_next( { tag => 'LDR', value => $r->leader } );
7486
7487 for my $f ( $r->fields ) {
7488     if ($f->is_control_field) {
7489         return_next({ tag => $f->tag, value => $f->data });
7490     } else {
7491         for my $s ($f->subfields) {
7492             return_next({
7493                 tag      => $f->tag,
7494                 ind1     => $f->indicator(1),
7495                 ind2     => $f->indicator(2),
7496                 subfield => $s->[0],
7497                 value    => $s->[1]
7498             });
7499
7500             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
7501                 my $trim = $f->indicator(2) || 0;
7502                 return_next({
7503                     tag      => 'tnf',
7504                     ind1     => $f->indicator(1),
7505                     ind2     => $f->indicator(2),
7506                     subfield => 'a',
7507                     value    => substr( $s->[1], $trim )
7508                 });
7509             }
7510         }
7511     }
7512 }
7513
7514 return undef;
7515
7516 $func$ LANGUAGE PLPERLU;
7517
7518 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( rid BIGINT ) RETURNS SETOF metabib.full_rec AS $func$
7519 DECLARE
7520     bib biblio.record_entry%ROWTYPE;
7521     output  metabib.full_rec%ROWTYPE;
7522     field   RECORD;
7523 BEGIN
7524     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7525
7526     FOR field IN SELECT * FROM biblio.flatten_marc( bib.marc ) LOOP
7527         output.record := rid;
7528         output.ind1 := field.ind1;
7529         output.ind2 := field.ind2;
7530         output.tag := field.tag;
7531         output.subfield := field.subfield;
7532         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
7533             output.value := naco_normalize(field.value, field.subfield);
7534         ELSE
7535             output.value := field.value;
7536         END IF;
7537
7538         CONTINUE WHEN output.value IS NULL;
7539
7540         RETURN NEXT output;
7541     END LOOP;
7542 END;
7543 $func$ LANGUAGE PLPGSQL;
7544
7545 -- functions to create auditor objects
7546
7547 CREATE FUNCTION auditor.create_auditor_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7548 BEGIN
7549     EXECUTE $$
7550         CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
7551     $$;
7552         RETURN TRUE;
7553 END;
7554 $creator$ LANGUAGE 'plpgsql';
7555
7556 CREATE FUNCTION auditor.create_auditor_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7557 BEGIN
7558     EXECUTE $$
7559         CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history (
7560             audit_id    BIGINT                          PRIMARY KEY,
7561             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
7562             audit_action        TEXT                            NOT NULL,
7563             LIKE $$ || sch || $$.$$ || tbl || $$
7564         );
7565     $$;
7566         RETURN TRUE;
7567 END;
7568 $creator$ LANGUAGE 'plpgsql';
7569
7570 CREATE FUNCTION auditor.create_auditor_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7571 BEGIN
7572     EXECUTE $$
7573         CREATE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ()
7574         RETURNS TRIGGER AS $func$
7575         BEGIN
7576             INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history
7577                 SELECT  nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
7578                     now(),
7579                     SUBSTR(TG_OP,1,1),
7580                     OLD.*;
7581             RETURN NULL;
7582         END;
7583         $func$ LANGUAGE 'plpgsql';
7584     $$;
7585         RETURN TRUE;
7586 END;
7587 $creator$ LANGUAGE 'plpgsql';
7588
7589 CREATE FUNCTION auditor.create_auditor_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7590 BEGIN
7591     EXECUTE $$
7592         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
7593             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
7594             EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ();
7595     $$;
7596         RETURN TRUE;
7597 END;
7598 $creator$ LANGUAGE 'plpgsql';
7599
7600 CREATE FUNCTION auditor.create_auditor_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7601 BEGIN
7602     EXECUTE $$
7603         CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
7604             SELECT      -1, now() as audit_time, '-' as audit_action, *
7605               FROM      $$ || sch || $$.$$ || tbl || $$
7606                 UNION ALL
7607             SELECT      *
7608               FROM      auditor.$$ || sch || $$_$$ || tbl || $$_history;
7609     $$;
7610         RETURN TRUE;
7611 END;
7612 $creator$ LANGUAGE 'plpgsql';
7613
7614 DROP FUNCTION IF EXISTS auditor.create_auditor (TEXT, TEXT);
7615
7616 -- The main event
7617
7618 CREATE FUNCTION auditor.create_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7619 BEGIN
7620     PERFORM auditor.create_auditor_seq(sch, tbl);
7621     PERFORM auditor.create_auditor_history(sch, tbl);
7622     PERFORM auditor.create_auditor_func(sch, tbl);
7623     PERFORM auditor.create_auditor_update_trigger(sch, tbl);
7624     PERFORM auditor.create_auditor_lifecycle(sch, tbl);
7625     RETURN TRUE;
7626 END;
7627 $creator$ LANGUAGE 'plpgsql';
7628
7629 ALTER TABLE action.hold_request ADD COLUMN cut_in_line BOOL;
7630
7631 ALTER TABLE action.hold_request
7632 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
7633
7634 ALTER TABLE action.hold_request
7635 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
7636
7637 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_current_copy_fkey;
7638
7639 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_hold_type_check;
7640
7641 UPDATE config.index_normalizer SET param_count = 0 WHERE func = 'split_date_range';
7642
7643 CREATE INDEX actor_usr_usrgroup_idx ON actor.usr (usrgroup);
7644
7645 -- Add claims_never_checked_out_count to actor.usr, related history
7646
7647 ALTER TABLE actor.usr ADD COLUMN
7648         claims_never_checked_out_count  INT         NOT NULL DEFAULT 0;
7649
7650 ALTER TABLE AUDITOR.actor_usr_history ADD COLUMN 
7651         claims_never_checked_out_count INT;
7652
7653 DROP VIEW IF EXISTS auditor.actor_usr_lifecycle;
7654
7655 SELECT auditor.create_auditor_lifecycle( 'actor', 'usr' );
7656
7657 -----------
7658
7659 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
7660 BEGIN
7661         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
7662                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
7663                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
7664                 END IF;
7665                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
7666                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
7667                 END IF;
7668                 IF NEW.stop_fines = 'LOST' THEN
7669                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
7670                 END IF;
7671         END IF;
7672         RETURN NEW;
7673 END;
7674 $$ LANGUAGE 'plpgsql';
7675
7676 -- Create new table acq.fund_allocation_percent
7677 -- Populate it from acq.fund_allocation
7678 -- Convert all percentages to amounts in acq.fund_allocation
7679
7680 CREATE TABLE acq.fund_allocation_percent
7681 (
7682     id                   SERIAL            PRIMARY KEY,
7683     funding_source       INT               NOT NULL REFERENCES acq.funding_source
7684                                                DEFERRABLE INITIALLY DEFERRED,
7685     org                  INT               NOT NULL REFERENCES actor.org_unit
7686                                                DEFERRABLE INITIALLY DEFERRED,
7687     fund_code            TEXT,
7688     percent              NUMERIC           NOT NULL,
7689     allocator            INTEGER           NOT NULL REFERENCES actor.usr
7690                                                DEFERRABLE INITIALLY DEFERRED,
7691     note                 TEXT,
7692     create_time          TIMESTAMPTZ       NOT NULL DEFAULT now(),
7693     CONSTRAINT logical_key UNIQUE( funding_source, org, fund_code ),
7694     CONSTRAINT percentage_range CHECK( percent >= 0 AND percent <= 100 )
7695 );
7696
7697 -- Trigger function to validate combination of org_unit and fund_code
7698
7699 CREATE OR REPLACE FUNCTION acq.fund_alloc_percent_val()
7700 RETURNS TRIGGER AS $$
7701 --
7702 DECLARE
7703 --
7704 dummy int := 0;
7705 --
7706 BEGIN
7707     SELECT
7708         1
7709     INTO
7710         dummy
7711     FROM
7712         acq.fund
7713     WHERE
7714         org = NEW.org
7715         AND code = NEW.fund_code
7716         LIMIT 1;
7717     --
7718     IF dummy = 1 then
7719         RETURN NEW;
7720     ELSE
7721         RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code;
7722     END IF;
7723 END;
7724 $$ LANGUAGE plpgsql;
7725
7726 CREATE TRIGGER acq_fund_alloc_percent_val_trig
7727     BEFORE INSERT OR UPDATE ON acq.fund_allocation_percent
7728     FOR EACH ROW EXECUTE PROCEDURE acq.fund_alloc_percent_val();
7729
7730 CREATE OR REPLACE FUNCTION acq.fap_limit_100()
7731 RETURNS TRIGGER AS $$
7732 DECLARE
7733 --
7734 total_percent numeric;
7735 --
7736 BEGIN
7737     SELECT
7738         sum( percent )
7739     INTO
7740         total_percent
7741     FROM
7742         acq.fund_allocation_percent AS fap
7743     WHERE
7744         fap.funding_source = NEW.funding_source;
7745     --
7746     IF total_percent > 100 THEN
7747         RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %',
7748             NEW.funding_source;
7749     ELSE
7750         RETURN NEW;
7751     END IF;
7752 END;
7753 $$ LANGUAGE plpgsql;
7754
7755 CREATE TRIGGER acqfap_limit_100_trig
7756     AFTER INSERT OR UPDATE ON acq.fund_allocation_percent
7757     FOR EACH ROW EXECUTE PROCEDURE acq.fap_limit_100();
7758
7759 -- Populate new table from acq.fund_allocation
7760
7761 INSERT INTO acq.fund_allocation_percent
7762 (
7763     funding_source,
7764     org,
7765     fund_code,
7766     percent,
7767     allocator,
7768     note,
7769     create_time
7770 )
7771     SELECT
7772         fa.funding_source,
7773         fund.org,
7774         fund.code,
7775         fa.percent,
7776         fa.allocator,
7777         fa.note,
7778         fa.create_time
7779     FROM
7780         acq.fund_allocation AS fa
7781             INNER JOIN acq.fund AS fund
7782                 ON ( fa.fund = fund.id )
7783     WHERE
7784         fa.percent is not null
7785     ORDER BY
7786         fund.org;
7787
7788 -- Temporary function to convert percentages to amounts in acq.fund_allocation
7789
7790 -- Algorithm to apply to each funding source:
7791
7792 -- 1. Add up the credits.
7793 -- 2. Add up the percentages.
7794 -- 3. Multiply the sum of the percentages times the sum of the credits.  Drop any
7795 --    fractional cents from the result.  This is the total amount to be allocated.
7796 -- 4. For each allocation: multiply the percentage by the total allocation.  Drop any
7797 --    fractional cents to get a preliminary amount.
7798 -- 5. Add up the preliminary amounts for all the allocations.
7799 -- 6. Subtract the results of step 5 from the result of step 3.  The difference is the
7800 --    number of residual cents (resulting from having dropped fractional cents) that
7801 --    must be distributed across the funds in order to make the total of the amounts
7802 --    match the total allocation.
7803 -- 7. Make a second pass through the allocations, in decreasing order of the fractional
7804 --    cents that were dropped from their amounts in step 4.  Add one cent to the amount
7805 --    for each successive fund, until all the residual cents have been exhausted.
7806
7807 -- Result: the sum of the individual allocations now equals the total to be allocated,
7808 -- to the penny.  The individual amounts match the percentages as closely as possible,
7809 -- given the constraint that the total must match.
7810
7811 CREATE OR REPLACE FUNCTION acq.apply_percents()
7812 RETURNS VOID AS $$
7813 declare
7814 --
7815 tot              RECORD;
7816 fund             RECORD;
7817 tot_cents        INTEGER;
7818 src              INTEGER;
7819 id               INTEGER[];
7820 curr_id          INTEGER;
7821 pennies          NUMERIC[];
7822 curr_amount      NUMERIC;
7823 i                INTEGER;
7824 total_of_floors  INTEGER;
7825 total_percent    NUMERIC;
7826 total_allocation INTEGER;
7827 residue          INTEGER;
7828 --
7829 begin
7830         RAISE NOTICE 'Applying percents';
7831         FOR tot IN
7832                 SELECT
7833                         fsrc.funding_source,
7834                         sum( fsrc.amount ) AS total
7835                 FROM
7836                         acq.funding_source_credit AS fsrc
7837                 WHERE fsrc.funding_source IN
7838                         ( SELECT DISTINCT fa.funding_source
7839                           FROM acq.fund_allocation AS fa
7840                           WHERE fa.percent IS NOT NULL )
7841                 GROUP BY
7842                         fsrc.funding_source
7843         LOOP
7844                 tot_cents = floor( tot.total * 100 );
7845                 src = tot.funding_source;
7846                 RAISE NOTICE 'Funding source % total %',
7847                         src, tot_cents;
7848                 i := 0;
7849                 total_of_floors := 0;
7850                 total_percent := 0;
7851                 --
7852                 FOR fund in
7853                         SELECT
7854                                 fa.id,
7855                                 fa.percent,
7856                                 floor( fa.percent * tot_cents / 100 ) as floor_pennies
7857                         FROM
7858                                 acq.fund_allocation AS fa
7859                         WHERE
7860                                 fa.funding_source = src
7861                                 AND fa.percent IS NOT NULL
7862                         ORDER BY
7863                                 mod( fa.percent * tot_cents / 100, 1 ),
7864                                 fa.fund,
7865                                 fa.id
7866                 LOOP
7867                         RAISE NOTICE '   %: %',
7868                                 fund.id,
7869                                 fund.floor_pennies;
7870                         i := i + 1;
7871                         id[i] = fund.id;
7872                         pennies[i] = fund.floor_pennies;
7873                         total_percent := total_percent + fund.percent;
7874                         total_of_floors := total_of_floors + pennies[i];
7875                 END LOOP;
7876                 total_allocation := floor( total_percent * tot_cents /100 );
7877                 RAISE NOTICE 'Total before distributing residue: %', total_of_floors;
7878                 residue := total_allocation - total_of_floors;
7879                 RAISE NOTICE 'Residue: %', residue;
7880                 --
7881                 -- Post the calculated amounts, revising as needed to
7882                 -- distribute the rounding error
7883                 --
7884                 WHILE i > 0 LOOP
7885                         IF residue > 0 THEN
7886                                 pennies[i] = pennies[i] + 1;
7887                                 residue := residue - 1;
7888                         END IF;
7889                         --
7890                         -- Post amount
7891                         --
7892                         curr_id     := id[i];
7893                         curr_amount := trunc( pennies[i] / 100, 2 );
7894                         --
7895                         UPDATE
7896                                 acq.fund_allocation AS fa
7897                         SET
7898                                 amount = curr_amount,
7899                                 percent = NULL
7900                         WHERE
7901                                 fa.id = curr_id;
7902                         --
7903                         RAISE NOTICE '   ID % and amount %',
7904                                 curr_id,
7905                                 curr_amount;
7906                         i = i - 1;
7907                 END LOOP;
7908         END LOOP;
7909 end;
7910 $$ LANGUAGE 'plpgsql';
7911
7912 -- Run the temporary function
7913
7914 select * from acq.apply_percents();
7915
7916 -- Drop the temporary function now that we're done with it
7917
7918 DROP FUNCTION IF EXISTS acq.apply_percents();
7919
7920 -- Eliminate acq.fund_allocation.percent, which has been moved to the acq.fund_allocation_percent table.
7921
7922 -- If the following step fails, it's probably because there are still some non-null percent values in
7923 -- acq.fund_allocation.  They should have all been converted to amounts, and then set to null, by a
7924 -- previous upgrade step based on 0049.schema.acq_funding_allocation_percent.sql.  If there are any
7925 -- non-null values, then either that step didn't run, or it didn't work, or some non-null values
7926 -- slipped in afterwards.
7927
7928 -- To convert any remaining percents to amounts: create, run, and then drop the temporary stored
7929 -- procedure acq.apply_percents() as defined above.
7930
7931 ALTER TABLE acq.fund_allocation
7932 ALTER COLUMN amount SET NOT NULL;
7933
7934 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
7935     SELECT  fund,
7936             SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
7937     FROM acq.fund_allocation a
7938          JOIN acq.fund f ON (a.fund = f.id)
7939          JOIN acq.funding_source s ON (a.funding_source = s.id)
7940     GROUP BY 1;
7941
7942 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
7943     SELECT  funding_source,
7944             SUM(a.amount)::NUMERIC(100,2) AS amount
7945     FROM  acq.fund_allocation a
7946     GROUP BY 1;
7947
7948 ALTER TABLE acq.fund_allocation
7949 DROP COLUMN percent;
7950
7951 CREATE TABLE asset.copy_location_order
7952 (
7953         id              SERIAL           PRIMARY KEY,
7954         location        INT              NOT NULL
7955                                              REFERENCES asset.copy_location
7956                                              ON DELETE CASCADE
7957                                              DEFERRABLE INITIALLY DEFERRED,
7958         org             INT              NOT NULL
7959                                              REFERENCES actor.org_unit
7960                                              ON DELETE CASCADE
7961                                              DEFERRABLE INITIALLY DEFERRED,
7962         position        INT              NOT NULL DEFAULT 0,
7963         CONSTRAINT acplo_once_per_org UNIQUE ( location, org )
7964 );
7965
7966 ALTER TABLE money.credit_card_payment ADD COLUMN cc_processor TEXT;
7967
7968 -- If you ran this before its most recent incarnation:
7969 -- delete from config.upgrade_log where version = '0328';
7970 -- alter table money.credit_card_payment drop column cc_name;
7971
7972 ALTER TABLE money.credit_card_payment ADD COLUMN cc_first_name TEXT;
7973 ALTER TABLE money.credit_card_payment ADD COLUMN cc_last_name TEXT;
7974
7975 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$
7976 DECLARE
7977     current_group    permission.grp_tree%ROWTYPE;
7978     user_object    actor.usr%ROWTYPE;
7979     item_object    asset.copy%ROWTYPE;
7980     cn_object    asset.call_number%ROWTYPE;
7981     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
7982     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
7983     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
7984 BEGIN
7985     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7986     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7987     SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number;
7988     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
7989     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
7990
7991     LOOP 
7992         -- for each potential matchpoint for this ou and group ...
7993         FOR current_mp IN
7994             SELECT  m.*
7995               FROM  config.circ_matrix_matchpoint m
7996                     JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
7997                     LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
7998               WHERE m.grp = current_group.id
7999                     AND m.active
8000                     AND (m.copy_owning_lib IS NULL OR cn_object.owning_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_owning_lib) ))
8001                     AND (m.copy_circ_lib   IS NULL OR item_object.circ_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_circ_lib)   ))
8002               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
8003                     CASE WHEN m.copy_owning_lib IS NOT NULL
8004                         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 )
8005                         ELSE 0
8006                     END +
8007                     CASE WHEN m.copy_circ_lib IS NOT NULL
8008                         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 )
8009                         ELSE 0
8010                     END +
8011                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
8012                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
8013                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
8014                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
8015                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
8016                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
8017                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
8018                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
8019                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
8020
8021             IF current_mp.is_renewal IS NOT NULL THEN
8022                 CONTINUE WHEN current_mp.is_renewal <> renewal;
8023             END IF;
8024
8025             IF current_mp.circ_modifier IS NOT NULL THEN
8026                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
8027             END IF;
8028
8029             IF current_mp.marc_type IS NOT NULL THEN
8030                 IF item_object.circ_as_type IS NOT NULL THEN
8031                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
8032                 ELSE
8033                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
8034                 END IF;
8035             END IF;
8036
8037             IF current_mp.marc_form IS NOT NULL THEN
8038                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
8039             END IF;
8040
8041             IF current_mp.marc_vr_format IS NOT NULL THEN
8042                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
8043             END IF;
8044
8045             IF current_mp.ref_flag IS NOT NULL THEN
8046                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
8047             END IF;
8048
8049             IF current_mp.juvenile_flag IS NOT NULL THEN
8050                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
8051             END IF;
8052
8053             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
8054                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
8055             END IF;
8056
8057             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
8058                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
8059             END IF;
8060
8061
8062             -- everything was undefined or matched
8063             matchpoint = current_mp;
8064
8065             EXIT WHEN matchpoint.id IS NOT NULL;
8066         END LOOP;
8067
8068         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
8069
8070         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
8071     END LOOP;
8072
8073     RETURN matchpoint;
8074 END;
8075 $func$ LANGUAGE plpgsql;
8076
8077 CREATE TYPE action.hold_stats AS (
8078     hold_count              INT,
8079     copy_count              INT,
8080     available_count         INT,
8081     total_copy_ratio        FLOAT,
8082     available_copy_ratio    FLOAT
8083 );
8084
8085 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
8086 DECLARE
8087     output          action.hold_stats%ROWTYPE;
8088     hold_count      INT := 0;
8089     copy_count      INT := 0;
8090     available_count INT := 0;
8091     hold_map_data   RECORD;
8092 BEGIN
8093
8094     output.hold_count := 0;
8095     output.copy_count := 0;
8096     output.available_count := 0;
8097
8098     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
8099       FROM  action.hold_copy_map m
8100             JOIN action.hold_request h ON (m.hold = h.id)
8101       WHERE m.target_copy = copy_id
8102             AND NOT h.frozen;
8103
8104     output.hold_count := hold_count;
8105
8106     IF output.hold_count > 0 THEN
8107         FOR hold_map_data IN
8108             SELECT  DISTINCT m.target_copy,
8109                     acp.status
8110               FROM  action.hold_copy_map m
8111                     JOIN asset.copy acp ON (m.target_copy = acp.id)
8112                     JOIN action.hold_request h ON (m.hold = h.id)
8113               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
8114         LOOP
8115             output.copy_count := output.copy_count + 1;
8116             IF hold_map_data.status IN (0,7,12) THEN
8117                 output.available_count := output.available_count + 1;
8118             END IF;
8119         END LOOP;
8120         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
8121         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
8122
8123     END IF;
8124
8125     RETURN output;
8126
8127 END;
8128 $func$ LANGUAGE PLPGSQL;
8129
8130 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN total_copy_hold_ratio FLOAT;
8131 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN available_copy_hold_ratio FLOAT;
8132
8133 ALTER TABLE config.circ_matrix_matchpoint DROP CONSTRAINT ep_once_per_grp_loc_mod_marc;
8134
8135 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_circ_lib   INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
8136 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_owning_lib INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
8137
8138 ALTER TABLE config.circ_matrix_matchpoint ADD CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (
8139     grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag,
8140     juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal, copy_circ_lib,
8141     copy_owning_lib
8142 );
8143
8144 -- Return the correct fail_part when the item can't be found
8145 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$
8146 DECLARE
8147     user_object        actor.usr%ROWTYPE;
8148     standing_penalty    config.standing_penalty%ROWTYPE;
8149     item_object        asset.copy%ROWTYPE;
8150     item_status_object    config.copy_status%ROWTYPE;
8151     item_location_object    asset.copy_location%ROWTYPE;
8152     result            action.matrix_test_result;
8153     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
8154     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
8155     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
8156     hold_ratio          action.hold_stats%ROWTYPE;
8157     penalty_type         TEXT;
8158     tmp_grp         INT;
8159     items_out        INT;
8160     context_org_list        INT[];
8161     done            BOOL := FALSE;
8162 BEGIN
8163     result.success := TRUE;
8164
8165     -- Fail if the user is BARRED
8166     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8167
8168     -- Fail if we couldn't find the user 
8169     IF user_object.id IS NULL THEN
8170         result.fail_part := 'no_user';
8171         result.success := FALSE;
8172         done := TRUE;
8173         RETURN NEXT result;
8174         RETURN;
8175     END IF;
8176
8177     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
8178
8179     -- Fail if we couldn't find the item 
8180     IF item_object.id IS NULL THEN
8181         result.fail_part := 'no_item';
8182         result.success := FALSE;
8183         done := TRUE;
8184         RETURN NEXT result;
8185         RETURN;
8186     END IF;
8187
8188     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
8189     result.matchpoint := circ_test.id;
8190
8191     -- Fail if we couldn't find a matchpoint
8192     IF result.matchpoint IS NULL THEN
8193         result.fail_part := 'no_matchpoint';
8194         result.success := FALSE;
8195         done := TRUE;
8196         RETURN NEXT result;
8197     END IF;
8198
8199     IF user_object.barred IS TRUE THEN
8200         result.fail_part := 'actor.usr.barred';
8201         result.success := FALSE;
8202         done := TRUE;
8203         RETURN NEXT result;
8204     END IF;
8205
8206     -- Fail if the item can't circulate
8207     IF item_object.circulate IS FALSE THEN
8208         result.fail_part := 'asset.copy.circulate';
8209         result.success := FALSE;
8210         done := TRUE;
8211         RETURN NEXT result;
8212     END IF;
8213
8214     -- Fail if the item isn't in a circulateable status on a non-renewal
8215     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN 
8216         result.fail_part := 'asset.copy.status';
8217         result.success := FALSE;
8218         done := TRUE;
8219         RETURN NEXT result;
8220     ELSIF renewal AND item_object.status <> 1 THEN
8221         result.fail_part := 'asset.copy.status';
8222         result.success := FALSE;
8223         done := TRUE;
8224         RETURN NEXT result;
8225     END IF;
8226
8227     -- Fail if the item can't circulate because of the shelving location
8228     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
8229     IF item_location_object.circulate IS FALSE THEN
8230         result.fail_part := 'asset.copy_location.circulate';
8231         result.success := FALSE;
8232         done := TRUE;
8233         RETURN NEXT result;
8234     END IF;
8235
8236     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
8237
8238     -- Fail if the test is set to hard non-circulating
8239     IF circ_test.circulate IS FALSE THEN
8240         result.fail_part := 'config.circ_matrix_test.circulate';
8241         result.success := FALSE;
8242         done := TRUE;
8243         RETURN NEXT result;
8244     END IF;
8245
8246     -- Fail if the total copy-hold ratio is too low
8247     IF circ_test.total_copy_hold_ratio IS NOT NULL THEN
8248         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
8249         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_test.total_copy_hold_ratio THEN
8250             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
8251             result.success := FALSE;
8252             done := TRUE;
8253             RETURN NEXT result;
8254         END IF;
8255     END IF;
8256
8257     -- Fail if the available copy-hold ratio is too low
8258     IF circ_test.available_copy_hold_ratio IS NOT NULL THEN
8259         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
8260         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_test.available_copy_hold_ratio THEN
8261             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
8262             result.success := FALSE;
8263             done := TRUE;
8264             RETURN NEXT result;
8265         END IF;
8266     END IF;
8267
8268     IF renewal THEN
8269         penalty_type = '%RENEW%';
8270     ELSE
8271         penalty_type = '%CIRC%';
8272     END IF;
8273
8274     FOR standing_penalty IN
8275         SELECT  DISTINCT csp.*
8276           FROM  actor.usr_standing_penalty usp
8277                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
8278           WHERE usr = match_user
8279                 AND usp.org_unit IN ( SELECT * FROM unnest(context_org_list) )
8280                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
8281                 AND csp.block_list LIKE penalty_type LOOP
8282
8283         result.fail_part := standing_penalty.name;
8284         result.success := FALSE;
8285         done := TRUE;
8286         RETURN NEXT result;
8287     END LOOP;
8288
8289     -- Fail if the user has too many items with specific circ_modifiers checked out
8290     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
8291         SELECT  INTO items_out COUNT(*)
8292           FROM  action.circulation circ
8293             JOIN asset.copy cp ON (cp.id = circ.target_copy)
8294           WHERE circ.usr = match_user
8295                AND circ.circ_lib IN ( SELECT * FROM unnest(context_org_list) )
8296             AND circ.checkin_time IS NULL
8297             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
8298             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);
8299         IF items_out >= out_by_circ_mod.items_out THEN
8300             result.fail_part := 'config.circ_matrix_circ_mod_test';
8301             result.success := FALSE;
8302             done := TRUE;
8303             RETURN NEXT result;
8304         END IF;
8305     END LOOP;
8306
8307     -- If we passed everything, return the successful matchpoint id
8308     IF NOT done THEN
8309         RETURN NEXT result;
8310     END IF;
8311
8312     RETURN;
8313 END;
8314 $func$ LANGUAGE plpgsql;
8315
8316 CREATE TABLE config.remote_account (
8317     id          SERIAL  PRIMARY KEY,
8318     label       TEXT    NOT NULL,
8319     host        TEXT    NOT NULL,   -- name or IP, :port optional
8320     username    TEXT,               -- optional, since we could default to $USER
8321     password    TEXT,               -- optional, since we could use SSH keys, or anonymous login.
8322     account     TEXT,               -- aka profile or FTP "account" command
8323     path        TEXT,               -- aka directory
8324     owner       INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
8325     last_activity TIMESTAMP WITH TIME ZONE
8326 );
8327
8328 CREATE TABLE acq.edi_account (      -- similar tables can extend remote_account for other parts of EG
8329     provider    INT     NOT NULL REFERENCES acq.provider          (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
8330     in_dir      TEXT,   -- incoming messages dir (probably different than config.remote_account.path, the outgoing dir)
8331         vendcode    TEXT,
8332         vendacct    TEXT
8333
8334 ) INHERITS (config.remote_account);
8335
8336 ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
8337
8338 CREATE TABLE acq.claim_type (
8339         id             SERIAL           PRIMARY KEY,
8340         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8341                                                  DEFERRABLE INITIALLY DEFERRED,
8342         code           TEXT             NOT NULL,
8343         description    TEXT             NOT NULL,
8344         CONSTRAINT claim_type_once_per_org UNIQUE ( org_unit, code )
8345 );
8346
8347 CREATE TABLE acq.claim (
8348         id             SERIAL           PRIMARY KEY,
8349         type           INT              NOT NULL REFERENCES acq.claim_type
8350                                                  DEFERRABLE INITIALLY DEFERRED,
8351         lineitem_detail BIGINT          NOT NULL REFERENCES acq.lineitem_detail
8352                                                  DEFERRABLE INITIALLY DEFERRED
8353 );
8354
8355 CREATE TABLE acq.claim_policy (
8356         id              SERIAL       PRIMARY KEY,
8357         org_unit        INT          NOT NULL REFERENCES actor.org_unit
8358                                      DEFERRABLE INITIALLY DEFERRED,
8359         name            TEXT         NOT NULL,
8360         description     TEXT         NOT NULL,
8361         CONSTRAINT name_once_per_org UNIQUE (org_unit, name)
8362 );
8363
8364 -- Add a san column for EDI. 
8365 -- See: http://isbn.org/standards/home/isbn/us/san/san-qa.asp
8366
8367 ALTER TABLE acq.provider ADD COLUMN san INT;
8368
8369 ALTER TABLE acq.provider ALTER COLUMN san TYPE TEXT USING lpad(text(san), 7, '0');
8370
8371 -- null edi_default is OK... it has to be, since we have no values in acq.edi_account yet
8372 ALTER TABLE acq.provider ADD COLUMN edi_default INT REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
8373
8374 ALTER TABLE acq.provider
8375         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
8376
8377 ALTER TABLE acq.provider
8378         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
8379
8380 ALTER TABLE acq.provider
8381         ADD COLUMN url TEXT;
8382
8383 ALTER TABLE acq.provider
8384         ADD COLUMN email TEXT;
8385
8386 ALTER TABLE acq.provider
8387         ADD COLUMN phone TEXT;
8388
8389 ALTER TABLE acq.provider
8390         ADD COLUMN fax_phone TEXT;
8391
8392 ALTER TABLE acq.provider
8393         ADD COLUMN default_claim_policy INT
8394                 REFERENCES acq.claim_policy
8395                 DEFERRABLE INITIALLY DEFERRED;
8396
8397 ALTER TABLE action.transit_copy
8398 ADD COLUMN prev_dest INTEGER REFERENCES actor.org_unit( id )
8399                                                          DEFERRABLE INITIALLY DEFERRED;
8400
8401 -- represents a circ chain summary
8402 CREATE TYPE action.circ_chain_summary AS (
8403     num_circs INTEGER,
8404     start_time TIMESTAMP WITH TIME ZONE,
8405     checkout_workstation TEXT,
8406     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
8407     last_stop_fines TEXT,
8408     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
8409     last_renewal_workstation TEXT, -- NULL if no renewals
8410     last_checkin_workstation TEXT,
8411     last_checkin_time TIMESTAMP WITH TIME ZONE,
8412     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
8413 );
8414
8415 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id INTEGER ) RETURNS SETOF action.circulation AS $$
8416 DECLARE
8417     tmp_circ action.circulation%ROWTYPE;
8418     circ_0 action.circulation%ROWTYPE;
8419 BEGIN
8420
8421     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
8422
8423     IF tmp_circ IS NULL THEN
8424         RETURN NEXT tmp_circ;
8425     END IF;
8426     circ_0 := tmp_circ;
8427
8428     -- find the front of the chain
8429     WHILE TRUE LOOP
8430         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
8431         IF tmp_circ IS NULL THEN
8432             EXIT;
8433         END IF;
8434         circ_0 := tmp_circ;
8435     END LOOP;
8436
8437     -- now send the circs to the caller, oldest to newest
8438     tmp_circ := circ_0;
8439     WHILE TRUE LOOP
8440         IF tmp_circ IS NULL THEN
8441             EXIT;
8442         END IF;
8443         RETURN NEXT tmp_circ;
8444         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
8445     END LOOP;
8446
8447 END;
8448 $$ LANGUAGE 'plpgsql';
8449
8450 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id INTEGER ) RETURNS action.circ_chain_summary AS $$
8451
8452 DECLARE
8453
8454     -- first circ in the chain
8455     circ_0 action.circulation%ROWTYPE;
8456
8457     -- last circ in the chain
8458     circ_n action.circulation%ROWTYPE;
8459
8460     -- circ chain under construction
8461     chain action.circ_chain_summary;
8462     tmp_circ action.circulation%ROWTYPE;
8463
8464 BEGIN
8465     
8466     chain.num_circs := 0;
8467     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
8468
8469         IF chain.num_circs = 0 THEN
8470             circ_0 := tmp_circ;
8471         END IF;
8472
8473         chain.num_circs := chain.num_circs + 1;
8474         circ_n := tmp_circ;
8475     END LOOP;
8476
8477     chain.start_time := circ_0.xact_start;
8478     chain.last_stop_fines := circ_n.stop_fines;
8479     chain.last_stop_fines_time := circ_n.stop_fines_time;
8480     chain.last_checkin_time := circ_n.checkin_time;
8481     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
8482     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
8483     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
8484
8485     IF chain.num_circs > 1 THEN
8486         chain.last_renewal_time := circ_n.xact_start;
8487         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
8488     END IF;
8489
8490     RETURN chain;
8491
8492 END;
8493 $$ LANGUAGE 'plpgsql';
8494
8495 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON booking.reservation;
8496 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('reservation');
8497 DROP TRIGGER IF EXISTS mat_summary_change_tgr ON booking.reservation;
8498 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
8499 DROP TRIGGER IF EXISTS mat_summary_remove_tgr ON booking.reservation;
8500 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
8501
8502 ALTER TABLE config.standing_penalty
8503         ADD COLUMN org_depth   INTEGER;
8504
8505 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
8506 DECLARE
8507     user_object         actor.usr%ROWTYPE;
8508     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
8509     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
8510     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
8511     max_fines           permission.grp_penalty_threshold%ROWTYPE;
8512     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
8513     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
8514     tmp_grp             INT;
8515     items_overdue       INT;
8516     items_out           INT;
8517     context_org_list    INT[];
8518     current_fines        NUMERIC(8,2) := 0.0;
8519     tmp_fines            NUMERIC(8,2);
8520     tmp_groc            RECORD;
8521     tmp_circ            RECORD;
8522     tmp_org             actor.org_unit%ROWTYPE;
8523     tmp_penalty         config.standing_penalty%ROWTYPE;
8524     tmp_depth           INTEGER;
8525 BEGIN
8526     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8527
8528     -- Max fines
8529     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8530
8531     -- Fail if the user has a high fine balance
8532     LOOP
8533         tmp_grp := user_object.profile;
8534         LOOP
8535             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
8536
8537             IF max_fines.threshold IS NULL THEN
8538                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8539             ELSE
8540                 EXIT;
8541             END IF;
8542
8543             IF tmp_grp IS NULL THEN
8544                 EXIT;
8545             END IF;
8546         END LOOP;
8547
8548         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8549             EXIT;
8550         END IF;
8551
8552         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8553
8554     END LOOP;
8555
8556     IF max_fines.threshold IS NOT NULL THEN
8557
8558         RETURN QUERY
8559             SELECT  *
8560               FROM  actor.usr_standing_penalty
8561               WHERE usr = match_user
8562                     AND org_unit = max_fines.org_unit
8563                     AND (stop_date IS NULL or stop_date > NOW())
8564                     AND standing_penalty = 1;
8565
8566         SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( max_fines.org_unit );
8567
8568         SELECT  SUM(f.balance_owed) INTO current_fines
8569           FROM  money.materialized_billable_xact_summary f
8570                 JOIN (
8571                     SELECT  r.id
8572                       FROM  booking.reservation r
8573                       WHERE r.usr = match_user
8574                             AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list))
8575                             AND xact_finish IS NULL
8576                                 UNION ALL
8577                     SELECT  g.id
8578                       FROM  money.grocery g
8579                       WHERE g.usr = match_user
8580                             AND g.billing_location IN (SELECT * FROM unnest(context_org_list))
8581                             AND xact_finish IS NULL
8582                                 UNION ALL
8583                     SELECT  circ.id
8584                       FROM  action.circulation circ
8585                       WHERE circ.usr = match_user
8586                             AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list))
8587                             AND xact_finish IS NULL ) l USING (id);
8588
8589         IF current_fines >= max_fines.threshold THEN
8590             new_sp_row.usr := match_user;
8591             new_sp_row.org_unit := max_fines.org_unit;
8592             new_sp_row.standing_penalty := 1;
8593             RETURN NEXT new_sp_row;
8594         END IF;
8595     END IF;
8596
8597     -- Start over for max overdue
8598     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8599
8600     -- Fail if the user has too many overdue items
8601     LOOP
8602         tmp_grp := user_object.profile;
8603         LOOP
8604
8605             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
8606
8607             IF max_overdue.threshold IS NULL THEN
8608                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8609             ELSE
8610                 EXIT;
8611             END IF;
8612
8613             IF tmp_grp IS NULL THEN
8614                 EXIT;
8615             END IF;
8616         END LOOP;
8617
8618         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8619             EXIT;
8620         END IF;
8621
8622         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8623
8624     END LOOP;
8625
8626     IF max_overdue.threshold IS NOT NULL THEN
8627
8628         RETURN QUERY
8629             SELECT  *
8630               FROM  actor.usr_standing_penalty
8631               WHERE usr = match_user
8632                     AND org_unit = max_overdue.org_unit
8633                     AND (stop_date IS NULL or stop_date > NOW())
8634                     AND standing_penalty = 2;
8635
8636         SELECT  INTO items_overdue COUNT(*)
8637           FROM  action.circulation circ
8638                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
8639           WHERE circ.usr = match_user
8640             AND circ.checkin_time IS NULL
8641             AND circ.due_date < NOW()
8642             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
8643
8644         IF items_overdue >= max_overdue.threshold::INT THEN
8645             new_sp_row.usr := match_user;
8646             new_sp_row.org_unit := max_overdue.org_unit;
8647             new_sp_row.standing_penalty := 2;
8648             RETURN NEXT new_sp_row;
8649         END IF;
8650     END IF;
8651
8652     -- Start over for max out
8653     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8654
8655     -- Fail if the user has too many checked out items
8656     LOOP
8657         tmp_grp := user_object.profile;
8658         LOOP
8659             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
8660
8661             IF max_items_out.threshold IS NULL THEN
8662                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8663             ELSE
8664                 EXIT;
8665             END IF;
8666
8667             IF tmp_grp IS NULL THEN
8668                 EXIT;
8669             END IF;
8670         END LOOP;
8671
8672         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8673             EXIT;
8674         END IF;
8675
8676         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8677
8678     END LOOP;
8679
8680
8681     -- Fail if the user has too many items checked out
8682     IF max_items_out.threshold IS NOT NULL THEN
8683
8684         RETURN QUERY
8685             SELECT  *
8686               FROM  actor.usr_standing_penalty
8687               WHERE usr = match_user
8688                     AND org_unit = max_items_out.org_unit
8689                     AND (stop_date IS NULL or stop_date > NOW())
8690                     AND standing_penalty = 3;
8691
8692         SELECT  INTO items_out COUNT(*)
8693           FROM  action.circulation circ
8694                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
8695           WHERE circ.usr = match_user
8696                 AND circ.checkin_time IS NULL
8697                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
8698
8699            IF items_out >= max_items_out.threshold::INT THEN
8700             new_sp_row.usr := match_user;
8701             new_sp_row.org_unit := max_items_out.org_unit;
8702             new_sp_row.standing_penalty := 3;
8703             RETURN NEXT new_sp_row;
8704            END IF;
8705     END IF;
8706
8707     -- Start over for collections warning
8708     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8709
8710     -- Fail if the user has a collections-level fine balance
8711     LOOP
8712         tmp_grp := user_object.profile;
8713         LOOP
8714             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
8715
8716             IF max_fines.threshold IS NULL THEN
8717                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8718             ELSE
8719                 EXIT;
8720             END IF;
8721
8722             IF tmp_grp IS NULL THEN
8723                 EXIT;
8724             END IF;
8725         END LOOP;
8726
8727         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8728             EXIT;
8729         END IF;
8730
8731         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8732
8733     END LOOP;
8734
8735     IF max_fines.threshold IS NOT NULL THEN
8736
8737         RETURN QUERY
8738             SELECT  *
8739               FROM  actor.usr_standing_penalty
8740               WHERE usr = match_user
8741                     AND org_unit = max_fines.org_unit
8742                     AND (stop_date IS NULL or stop_date > NOW())
8743                     AND standing_penalty = 4;
8744
8745         SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( max_fines.org_unit );
8746
8747         SELECT  SUM(f.balance_owed) INTO current_fines
8748           FROM  money.materialized_billable_xact_summary f
8749                 JOIN (
8750                     SELECT  r.id
8751                       FROM  booking.reservation r
8752                       WHERE r.usr = match_user
8753                             AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list))
8754                             AND r.xact_finish IS NULL
8755                                 UNION ALL
8756                     SELECT  g.id
8757                       FROM  money.grocery g
8758                       WHERE g.usr = match_user
8759                             AND g.billing_location IN (SELECT * FROM unnest(context_org_list))
8760                             AND g.xact_finish IS NULL
8761                                 UNION ALL
8762                     SELECT  circ.id
8763                       FROM  action.circulation circ
8764                       WHERE circ.usr = match_user
8765                             AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list))
8766                             AND circ.xact_finish IS NULL ) l USING (id);
8767
8768         IF current_fines >= max_fines.threshold THEN
8769             new_sp_row.usr := match_user;
8770             new_sp_row.org_unit := max_fines.org_unit;
8771             new_sp_row.standing_penalty := 4;
8772             RETURN NEXT new_sp_row;
8773         END IF;
8774     END IF;
8775
8776     -- Start over for in collections
8777     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8778
8779     -- Remove the in-collections penalty if the user has paid down enough
8780     -- This penalty is different, because this code is not responsible for creating 
8781     -- new in-collections penalties, only for removing them
8782     LOOP
8783         tmp_grp := user_object.profile;
8784         LOOP
8785             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
8786
8787             IF max_fines.threshold IS NULL THEN
8788                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8789             ELSE
8790                 EXIT;
8791             END IF;
8792
8793             IF tmp_grp IS NULL THEN
8794                 EXIT;
8795             END IF;
8796         END LOOP;
8797
8798         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8799             EXIT;
8800         END IF;
8801
8802         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8803
8804     END LOOP;
8805
8806     IF max_fines.threshold IS NOT NULL THEN
8807
8808         SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( max_fines.org_unit );
8809
8810         -- first, see if the user had paid down to the threshold
8811         SELECT  SUM(f.balance_owed) INTO current_fines
8812           FROM  money.materialized_billable_xact_summary f
8813                 JOIN (
8814                     SELECT  r.id
8815                       FROM  booking.reservation r
8816                       WHERE r.usr = match_user
8817                             AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list))
8818                             AND r.xact_finish IS NULL
8819                                 UNION ALL
8820                     SELECT  g.id
8821                       FROM  money.grocery g
8822                       WHERE g.usr = match_user
8823                             AND g.billing_location IN (SELECT * FROM unnest(context_org_list))
8824                             AND g.xact_finish IS NULL
8825                                 UNION ALL
8826                     SELECT  circ.id
8827                       FROM  action.circulation circ
8828                       WHERE circ.usr = match_user
8829                             AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list))
8830                             AND circ.xact_finish IS NULL ) l USING (id);
8831
8832         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
8833             -- patron has paid down enough
8834
8835             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
8836
8837             IF tmp_penalty.org_depth IS NOT NULL THEN
8838
8839                 -- since this code is not responsible for applying the penalty, it can't 
8840                 -- guarantee the current context org will match the org at which the penalty 
8841                 --- was applied.  search up the org tree until we hit the configured penalty depth
8842                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8843                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8844
8845                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
8846
8847                     RETURN QUERY
8848                         SELECT  *
8849                           FROM  actor.usr_standing_penalty
8850                           WHERE usr = match_user
8851                                 AND org_unit = tmp_org.id
8852                                 AND (stop_date IS NULL or stop_date > NOW())
8853                                 AND standing_penalty = 30;
8854
8855                     IF tmp_org.parent_ou IS NULL THEN
8856                         EXIT;
8857                     END IF;
8858
8859                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8860                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8861                 END LOOP;
8862
8863             ELSE
8864
8865                 -- no penalty depth is defined, look for exact matches
8866
8867                 RETURN QUERY
8868                     SELECT  *
8869                       FROM  actor.usr_standing_penalty
8870                       WHERE usr = match_user
8871                             AND org_unit = max_fines.org_unit
8872                             AND (stop_date IS NULL or stop_date > NOW())
8873                             AND standing_penalty = 30;
8874             END IF;
8875     
8876         END IF;
8877
8878     END IF;
8879
8880     RETURN;
8881 END;
8882 $func$ LANGUAGE plpgsql;
8883
8884 -- Create a default row in acq.fiscal_calendar
8885 -- Add a column in actor.org_unit to point to it
8886
8887 INSERT INTO acq.fiscal_calendar ( id, name ) VALUES ( 1, 'Default' );
8888
8889 ALTER TABLE actor.org_unit
8890 ADD COLUMN fiscal_calendar INT NOT NULL
8891         REFERENCES acq.fiscal_calendar( id )
8892         DEFERRABLE INITIALLY DEFERRED
8893         DEFAULT 1;
8894
8895 ALTER TABLE auditor.actor_org_unit_history
8896         ADD COLUMN fiscal_calendar INT;
8897
8898 DROP VIEW IF EXISTS auditor.actor_org_unit_lifecycle;
8899
8900 SELECT auditor.create_auditor_lifecycle( 'actor', 'org_unit' );
8901
8902 ALTER TABLE acq.funding_source_credit
8903 ADD COLUMN deadline_date TIMESTAMPTZ;
8904
8905 ALTER TABLE acq.funding_source_credit
8906 ADD COLUMN effective_date TIMESTAMPTZ NOT NULL DEFAULT now();
8907
8908 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
8909
8910 CREATE TABLE acq.fund_transfer (
8911         id               SERIAL         PRIMARY KEY,
8912         src_fund         INT            NOT NULL REFERENCES acq.fund( id )
8913                                         DEFERRABLE INITIALLY DEFERRED,
8914         src_amount       NUMERIC        NOT NULL,
8915         dest_fund        INT            REFERENCES acq.fund( id )
8916                                         DEFERRABLE INITIALLY DEFERRED,
8917         dest_amount      NUMERIC,
8918         transfer_time    TIMESTAMPTZ    NOT NULL DEFAULT now(),
8919         transfer_user    INT            NOT NULL REFERENCES actor.usr( id )
8920                                         DEFERRABLE INITIALLY DEFERRED,
8921         note             TEXT,
8922     funding_source_credit INTEGER   NOT NULL
8923                                         REFERENCES acq.funding_source_credit(id)
8924                                         DEFERRABLE INITIALLY DEFERRED
8925 );
8926
8927 CREATE INDEX acqftr_usr_idx
8928 ON acq.fund_transfer( transfer_user );
8929
8930 COMMENT ON TABLE acq.fund_transfer IS $$
8931 /*
8932  * Copyright (C) 2009  Georgia Public Library Service
8933  * Scott McKellar <scott@esilibrary.com>
8934  *
8935  * Fund Transfer
8936  *
8937  * Each row represents the transfer of money from a source fund
8938  * to a destination fund.  There should be corresponding entries
8939  * in acq.fund_allocation.  The purpose of acq.fund_transfer is
8940  * to record how much money moved from which fund to which other
8941  * fund.
8942  * 
8943  * The presence of two amount fields, rather than one, reflects
8944  * the possibility that the two funds are denominated in different
8945  * currencies.  If they use the same currency type, the two
8946  * amounts should be the same.
8947  *
8948  * ****
8949  *
8950  * This program is free software; you can redistribute it and/or
8951  * modify it under the terms of the GNU General Public License
8952  * as published by the Free Software Foundation; either version 2
8953  * of the License, or (at your option) any later version.
8954  *
8955  * This program is distributed in the hope that it will be useful,
8956  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8957  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8958  * GNU General Public License for more details.
8959  */
8960 $$;
8961
8962 CREATE TABLE acq.claim_event_type (
8963         id             SERIAL           PRIMARY KEY,
8964         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8965                                                  DEFERRABLE INITIALLY DEFERRED,
8966         code           TEXT             NOT NULL,
8967         description    TEXT             NOT NULL,
8968         library_initiated BOOL          NOT NULL DEFAULT FALSE,
8969         CONSTRAINT event_type_once_per_org UNIQUE ( org_unit, code )
8970 );
8971
8972 CREATE TABLE acq.claim_event (
8973         id             BIGSERIAL        PRIMARY KEY,
8974         type           INT              NOT NULL REFERENCES acq.claim_event_type
8975                                                  DEFERRABLE INITIALLY DEFERRED,
8976         claim          SERIAL           NOT NULL REFERENCES acq.claim
8977                                                  DEFERRABLE INITIALLY DEFERRED,
8978         event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
8979         creator        INT              NOT NULL REFERENCES actor.usr
8980                                                  DEFERRABLE INITIALLY DEFERRED,
8981         note           TEXT
8982 );
8983
8984 CREATE INDEX claim_event_claim_date_idx ON acq.claim_event( claim, event_date );
8985
8986 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
8987         src_usr  IN INTEGER,
8988         dest_usr IN INTEGER
8989 ) RETURNS VOID AS $$
8990 DECLARE
8991         suffix TEXT;
8992         renamable_row RECORD;
8993 BEGIN
8994
8995         UPDATE actor.usr SET
8996                 active = FALSE,
8997                 card = NULL,
8998                 mailing_address = NULL,
8999                 billing_address = NULL
9000         WHERE id = src_usr;
9001
9002         -- acq.*
9003         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
9004         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
9005         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
9006         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
9007         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
9008         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
9009         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
9010
9011         -- Update with a rename to avoid collisions
9012         FOR renamable_row in
9013                 SELECT id, name
9014                 FROM   acq.picklist
9015                 WHERE  owner = src_usr
9016         LOOP
9017                 suffix := ' (' || src_usr || ')';
9018                 LOOP
9019                         BEGIN
9020                                 UPDATE  acq.picklist
9021                                 SET     owner = dest_usr, name = name || suffix
9022                                 WHERE   id = renamable_row.id;
9023                         EXCEPTION WHEN unique_violation THEN
9024                                 suffix := suffix || ' ';
9025                                 CONTINUE;
9026                         END;
9027                         EXIT;
9028                 END LOOP;
9029         END LOOP;
9030
9031         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
9032         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
9033         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
9034         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
9035         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
9036         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
9037         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
9038         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
9039
9040         -- action.*
9041         DELETE FROM action.circulation WHERE usr = src_usr;
9042         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
9043         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
9044         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
9045         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
9046         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
9047         DELETE FROM action.hold_request WHERE usr = src_usr;
9048         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
9049         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
9050         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
9051         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
9052         DELETE FROM action.survey_response WHERE usr = src_usr;
9053         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
9054
9055         -- actor.*
9056         DELETE FROM actor.card WHERE usr = src_usr;
9057         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
9058
9059         -- The following update is intended to avoid transient violations of a foreign
9060         -- key constraint, whereby actor.usr_address references itself.  It may not be
9061         -- necessary, but it does no harm.
9062         UPDATE actor.usr_address SET replaces = NULL
9063                 WHERE usr = src_usr AND replaces IS NOT NULL;
9064         DELETE FROM actor.usr_address WHERE usr = src_usr;
9065         DELETE FROM actor.usr_note WHERE usr = src_usr;
9066         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
9067         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
9068         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
9069         DELETE FROM actor.usr_setting WHERE usr = src_usr;
9070         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
9071         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
9072
9073         -- asset.*
9074         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
9075         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
9076         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
9077         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
9078         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
9079         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
9080
9081         -- auditor.*
9082         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
9083         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
9084         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
9085         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
9086         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
9087         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
9088         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
9089         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
9090
9091         -- biblio.*
9092         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
9093         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
9094         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
9095         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
9096
9097         -- container.*
9098         -- Update buckets with a rename to avoid collisions
9099         FOR renamable_row in
9100                 SELECT id, name
9101                 FROM   container.biblio_record_entry_bucket
9102                 WHERE  owner = src_usr
9103         LOOP
9104                 suffix := ' (' || src_usr || ')';
9105                 LOOP
9106                         BEGIN
9107                                 UPDATE  container.biblio_record_entry_bucket
9108                                 SET     owner = dest_usr, name = name || suffix
9109                                 WHERE   id = renamable_row.id;
9110                         EXCEPTION WHEN unique_violation THEN
9111                                 suffix := suffix || ' ';
9112                                 CONTINUE;
9113                         END;
9114                         EXIT;
9115                 END LOOP;
9116         END LOOP;
9117
9118         FOR renamable_row in
9119                 SELECT id, name
9120                 FROM   container.call_number_bucket
9121                 WHERE  owner = src_usr
9122         LOOP
9123                 suffix := ' (' || src_usr || ')';
9124                 LOOP
9125                         BEGIN
9126                                 UPDATE  container.call_number_bucket
9127                                 SET     owner = dest_usr, name = name || suffix
9128                                 WHERE   id = renamable_row.id;
9129                         EXCEPTION WHEN unique_violation THEN
9130                                 suffix := suffix || ' ';
9131                                 CONTINUE;
9132                         END;
9133                         EXIT;
9134                 END LOOP;
9135         END LOOP;
9136
9137         FOR renamable_row in
9138                 SELECT id, name
9139                 FROM   container.copy_bucket
9140                 WHERE  owner = src_usr
9141         LOOP
9142                 suffix := ' (' || src_usr || ')';
9143                 LOOP
9144                         BEGIN
9145                                 UPDATE  container.copy_bucket
9146                                 SET     owner = dest_usr, name = name || suffix
9147                                 WHERE   id = renamable_row.id;
9148                         EXCEPTION WHEN unique_violation THEN
9149                                 suffix := suffix || ' ';
9150                                 CONTINUE;
9151                         END;
9152                         EXIT;
9153                 END LOOP;
9154         END LOOP;
9155
9156         FOR renamable_row in
9157                 SELECT id, name
9158                 FROM   container.user_bucket
9159                 WHERE  owner = src_usr
9160         LOOP
9161                 suffix := ' (' || src_usr || ')';
9162                 LOOP
9163                         BEGIN
9164                                 UPDATE  container.user_bucket
9165                                 SET     owner = dest_usr, name = name || suffix
9166                                 WHERE   id = renamable_row.id;
9167                         EXCEPTION WHEN unique_violation THEN
9168                                 suffix := suffix || ' ';
9169                                 CONTINUE;
9170                         END;
9171                         EXIT;
9172                 END LOOP;
9173         END LOOP;
9174
9175         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
9176
9177         -- money.*
9178         DELETE FROM money.billable_xact WHERE usr = src_usr;
9179         DELETE FROM money.collections_tracker WHERE usr = src_usr;
9180         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
9181
9182         -- permission.*
9183         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
9184         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
9185         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
9186         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
9187
9188         -- reporter.*
9189         -- Update with a rename to avoid collisions
9190         BEGIN
9191                 FOR renamable_row in
9192                         SELECT id, name
9193                         FROM   reporter.output_folder
9194                         WHERE  owner = src_usr
9195                 LOOP
9196                         suffix := ' (' || src_usr || ')';
9197                         LOOP
9198                                 BEGIN
9199                                         UPDATE  reporter.output_folder
9200                                         SET     owner = dest_usr, name = name || suffix
9201                                         WHERE   id = renamable_row.id;
9202                                 EXCEPTION WHEN unique_violation THEN
9203                                         suffix := suffix || ' ';
9204                                         CONTINUE;
9205                                 END;
9206                                 EXIT;
9207                         END LOOP;
9208                 END LOOP;
9209         EXCEPTION WHEN undefined_table THEN
9210                 -- do nothing
9211         END;
9212
9213         BEGIN
9214                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
9215         EXCEPTION WHEN undefined_table THEN
9216                 -- do nothing
9217         END;
9218
9219         -- Update with a rename to avoid collisions
9220         BEGIN
9221                 FOR renamable_row in
9222                         SELECT id, name
9223                         FROM   reporter.report_folder
9224                         WHERE  owner = src_usr
9225                 LOOP
9226                         suffix := ' (' || src_usr || ')';
9227                         LOOP
9228                                 BEGIN
9229                                         UPDATE  reporter.report_folder
9230                                         SET     owner = dest_usr, name = name || suffix
9231                                         WHERE   id = renamable_row.id;
9232                                 EXCEPTION WHEN unique_violation THEN
9233                                         suffix := suffix || ' ';
9234                                         CONTINUE;
9235                                 END;
9236                                 EXIT;
9237                         END LOOP;
9238                 END LOOP;
9239         EXCEPTION WHEN undefined_table THEN
9240                 -- do nothing
9241         END;
9242
9243         BEGIN
9244                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
9245         EXCEPTION WHEN undefined_table THEN
9246                 -- do nothing
9247         END;
9248
9249         BEGIN
9250                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
9251         EXCEPTION WHEN undefined_table THEN
9252                 -- do nothing
9253         END;
9254
9255         -- Update with a rename to avoid collisions
9256         BEGIN
9257                 FOR renamable_row in
9258                         SELECT id, name
9259                         FROM   reporter.template_folder
9260                         WHERE  owner = src_usr
9261                 LOOP
9262                         suffix := ' (' || src_usr || ')';
9263                         LOOP
9264                                 BEGIN
9265                                         UPDATE  reporter.template_folder
9266                                         SET     owner = dest_usr, name = name || suffix
9267                                         WHERE   id = renamable_row.id;
9268                                 EXCEPTION WHEN unique_violation THEN
9269                                         suffix := suffix || ' ';
9270                                         CONTINUE;
9271                                 END;
9272                                 EXIT;
9273                         END LOOP;
9274                 END LOOP;
9275         EXCEPTION WHEN undefined_table THEN
9276         -- do nothing
9277         END;
9278
9279         -- vandelay.*
9280         -- Update with a rename to avoid collisions
9281         FOR renamable_row in
9282                 SELECT id, name
9283                 FROM   vandelay.queue
9284                 WHERE  owner = src_usr
9285         LOOP
9286                 suffix := ' (' || src_usr || ')';
9287                 LOOP
9288                         BEGIN
9289                                 UPDATE  vandelay.queue
9290                                 SET     owner = dest_usr, name = name || suffix
9291                                 WHERE   id = renamable_row.id;
9292                         EXCEPTION WHEN unique_violation THEN
9293                                 suffix := suffix || ' ';
9294                                 CONTINUE;
9295                         END;
9296                         EXIT;
9297                 END LOOP;
9298         END LOOP;
9299
9300 END;
9301 $$ LANGUAGE plpgsql;
9302
9303 COMMENT ON FUNCTION actor.usr_purge_data(INT, INT) IS $$
9304 /**
9305  * Finds rows dependent on a given row in actor.usr and either deletes them
9306  * or reassigns them to a different user.
9307  */
9308 $$;
9309
9310 CREATE OR REPLACE FUNCTION actor.usr_delete(
9311         src_usr  IN INTEGER,
9312         dest_usr IN INTEGER
9313 ) RETURNS VOID AS $$
9314 DECLARE
9315         old_profile actor.usr.profile%type;
9316         old_home_ou actor.usr.home_ou%type;
9317         new_profile actor.usr.profile%type;
9318         new_home_ou actor.usr.home_ou%type;
9319         new_name    text;
9320         new_dob     actor.usr.dob%type;
9321 BEGIN
9322         SELECT
9323                 id || '-PURGED-' || now(),
9324                 profile,
9325                 home_ou,
9326                 dob
9327         INTO
9328                 new_name,
9329                 old_profile,
9330                 old_home_ou,
9331                 new_dob
9332         FROM
9333                 actor.usr
9334         WHERE
9335                 id = src_usr;
9336         --
9337         -- Quit if no such user
9338         --
9339         IF old_profile IS NULL THEN
9340                 RETURN;
9341         END IF;
9342         --
9343         perform actor.usr_purge_data( src_usr, dest_usr );
9344         --
9345         -- Find the root grp_tree and the root org_unit.  This would be simpler if we 
9346         -- could assume that there is only one root.  Theoretically, someday, maybe,
9347         -- there could be multiple roots, so we take extra trouble to get the right ones.
9348         --
9349         SELECT
9350                 id
9351         INTO
9352                 new_profile
9353         FROM
9354                 permission.grp_ancestors( old_profile )
9355         WHERE
9356                 parent is null;
9357         --
9358         SELECT
9359                 id
9360         INTO
9361                 new_home_ou
9362         FROM
9363                 actor.org_unit_ancestors( old_home_ou )
9364         WHERE
9365                 parent_ou is null;
9366         --
9367         -- Truncate date of birth
9368         --
9369         IF new_dob IS NOT NULL THEN
9370                 new_dob := date_trunc( 'year', new_dob );
9371         END IF;
9372         --
9373         UPDATE
9374                 actor.usr
9375                 SET
9376                         card = NULL,
9377                         profile = new_profile,
9378                         usrname = new_name,
9379                         email = NULL,
9380                         passwd = random()::text,
9381                         standing = DEFAULT,
9382                         ident_type = 
9383                         (
9384                                 SELECT MIN( id )
9385                                 FROM config.identification_type
9386                         ),
9387                         ident_value = NULL,
9388                         ident_type2 = NULL,
9389                         ident_value2 = NULL,
9390                         net_access_level = DEFAULT,
9391                         photo_url = NULL,
9392                         prefix = NULL,
9393                         first_given_name = new_name,
9394                         second_given_name = NULL,
9395                         family_name = new_name,
9396                         suffix = NULL,
9397                         alias = NULL,
9398                         day_phone = NULL,
9399                         evening_phone = NULL,
9400                         other_phone = NULL,
9401                         mailing_address = NULL,
9402                         billing_address = NULL,
9403                         home_ou = new_home_ou,
9404                         dob = new_dob,
9405                         active = FALSE,
9406                         master_account = DEFAULT, 
9407                         super_user = DEFAULT,
9408                         barred = FALSE,
9409                         deleted = TRUE,
9410                         juvenile = DEFAULT,
9411                         usrgroup = 0,
9412                         claims_returned_count = DEFAULT,
9413                         credit_forward_balance = DEFAULT,
9414                         last_xact_id = DEFAULT,
9415                         alert_message = NULL,
9416                         create_date = now(),
9417                         expire_date = now()
9418         WHERE
9419                 id = src_usr;
9420 END;
9421 $$ LANGUAGE plpgsql;
9422
9423 COMMENT ON FUNCTION actor.usr_delete(INT, INT) IS $$
9424 /**
9425  * Logically deletes a user.  Removes personally identifiable information,
9426  * and purges associated data in other tables.
9427  */
9428 $$;
9429
9430 -- INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
9431
9432 ALTER TABLE acq.fund
9433 ADD COLUMN rollover BOOL NOT NULL DEFAULT FALSE;
9434
9435 ALTER TABLE acq.fund
9436         ADD COLUMN propagate BOOLEAN NOT NULL DEFAULT TRUE;
9437
9438 -- A fund can't roll over if it doesn't propagate from one year to the next
9439
9440 ALTER TABLE acq.fund
9441         ADD CONSTRAINT acq_fund_rollover_implies_propagate CHECK
9442         ( propagate OR NOT rollover );
9443
9444 ALTER TABLE acq.fund
9445         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
9446
9447 ALTER TABLE acq.fund
9448     ADD COLUMN balance_warning_percent INT;
9449
9450 ALTER TABLE acq.fund
9451     ADD COLUMN balance_stop_percent INT;
9452
9453 CREATE VIEW acq.ordered_funding_source_credit AS
9454         SELECT
9455                 CASE WHEN deadline_date IS NULL THEN
9456                         2
9457                 ELSE
9458                         1
9459                 END AS sort_priority,
9460                 CASE WHEN deadline_date IS NULL THEN
9461                         effective_date
9462                 ELSE
9463                         deadline_date
9464                 END AS sort_date,
9465                 id,
9466                 funding_source,
9467                 amount,
9468                 note
9469         FROM
9470                 acq.funding_source_credit;
9471
9472 COMMENT ON VIEW acq.ordered_funding_source_credit IS $$
9473 /*
9474  * Copyright (C) 2009  Georgia Public Library Service
9475  * Scott McKellar <scott@gmail.com>
9476  *
9477  * The acq.ordered_funding_source_credit view is a prioritized
9478  * ordering of funding source credits.  When ordered by the first
9479  * three columns, this view defines the order in which the various
9480  * credits are to be tapped for spending, subject to the allocations
9481  * in the acq.fund_allocation table.
9482  *
9483  * The first column reflects the principle that we should spend
9484  * money with deadlines before spending money without deadlines.
9485  *
9486  * The second column reflects the principle that we should spend the
9487  * oldest money first.  For money with deadlines, that means that we
9488  * spend first from the credit with the earliest deadline.  For
9489  * money without deadlines, we spend first from the credit with the
9490  * earliest effective date.  
9491  *
9492  * The third column is a tie breaker to ensure a consistent
9493  * ordering.
9494  *
9495  * ****
9496  *
9497  * This program is free software; you can redistribute it and/or
9498  * modify it under the terms of the GNU General Public License
9499  * as published by the Free Software Foundation; either version 2
9500  * of the License, or (at your option) any later version.
9501  *
9502  * This program is distributed in the hope that it will be useful,
9503  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9504  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9505  * GNU General Public License for more details.
9506  */
9507 $$;
9508
9509 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
9510     SELECT  m.*, COALESCE(c.circ_lib, g.billing_location, r.pickup_lib) AS billing_location
9511       FROM  money.materialized_billable_xact_summary m
9512             LEFT JOIN action.circulation c ON (c.id = m.id)
9513             LEFT JOIN money.grocery g ON (g.id = m.id)
9514             LEFT JOIN booking.reservation r ON (r.id = m.id);
9515
9516 CREATE TABLE config.marc21_rec_type_map (
9517     code        TEXT    PRIMARY KEY,
9518     type_val    TEXT    NOT NULL,
9519     blvl_val    TEXT    NOT NULL
9520 );
9521
9522 CREATE TABLE config.marc21_ff_pos_map (
9523     id          SERIAL  PRIMARY KEY,
9524     fixed_field TEXT    NOT NULL,
9525     tag         TEXT    NOT NULL,
9526     rec_type    TEXT    NOT NULL,
9527     start_pos   INT     NOT NULL,
9528     length      INT     NOT NULL,
9529     default_val TEXT    NOT NULL DEFAULT ' '
9530 );
9531
9532 CREATE TABLE config.marc21_physical_characteristic_type_map (
9533     ptype_key   TEXT    PRIMARY KEY,
9534     label       TEXT    NOT NULL -- I18N
9535 );
9536
9537 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
9538     id          SERIAL  PRIMARY KEY,
9539     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
9540     subfield    TEXT    NOT NULL,
9541     start_pos   INT     NOT NULL,
9542     length      INT     NOT NULL,
9543     label       TEXT    NOT NULL -- I18N
9544 );
9545
9546 CREATE TABLE config.marc21_physical_characteristic_value_map (
9547     id              SERIAL  PRIMARY KEY,
9548     value           TEXT    NOT NULL,
9549     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
9550     label           TEXT    NOT NULL -- I18N
9551 );
9552
9553 ----------------------------------
9554 -- MARC21 record structure data --
9555 ----------------------------------
9556
9557 -- Record type map
9558 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
9559 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
9560 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
9561 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
9562 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
9563 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
9564 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
9565 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
9566
9567 ------ Physical Characteristics
9568
9569 -- Map
9570 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
9571 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
9572 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
9573 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
9574 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
9575 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
9576 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
9577 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');
9578 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
9579 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9580 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
9581 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9582 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
9583 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');
9584 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9585 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
9586 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9587 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9588 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9589 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9590 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9591 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9592 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9593 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9594 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');
9595 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');
9596 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');
9597 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');
9598 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9599 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other photographic medium');
9600 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9601 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
9602 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9603 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');
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','g','6','1','Production/reproduction details');
9607 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');
9608 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
9609 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');
9610 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
9611 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9612 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9613 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
9614 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9615 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9616 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9617 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');
9618
9619 -- Electronic Resource
9620 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
9621 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
9622 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');
9623 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');
9624 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');
9625 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');
9626 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');
9627 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');
9628 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');
9629 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');
9630 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
9631 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9632 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9633 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
9634 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');
9635 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');
9636 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9637 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');
9638 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9639 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');
9640 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9641 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9642 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
9643 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.');
9644 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.');
9645 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.');
9646 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.');
9647 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.');
9648 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');
9649 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.');
9650 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9651 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.');
9652 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9653 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound');
9654 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)');
9655 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
9656 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9657 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
9658 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9659 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
9660 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');
9661 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
9662 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');
9663 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');
9664 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9665 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
9666 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
9667 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');
9668 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
9669 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9670 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
9671 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');
9672 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');
9673 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');
9674 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)');
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 ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9677 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9678 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression');
9679 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
9680 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
9681 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
9682 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9683 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9684 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
9685 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
9686 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');
9687 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
9688 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
9689 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9690
9691 -- Globe
9692 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
9693 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
9694 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');
9695 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');
9696 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');
9697 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');
9698 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9699 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9700 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color');
9701 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');
9702 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9703 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
9704 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9705 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9706 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9707 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9708 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9709 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9710 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9711 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9712 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9713 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9714 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
9715 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9716 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');
9717 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9718 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9719
9720 -- Tactile Material
9721 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
9722 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
9723 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
9724 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'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'),'Combination');
9726 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');
9727 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9728 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9729 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
9730 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');
9731 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');
9732 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');
9733 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');
9734 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');
9735 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');
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','e','4','1','Level of contraction');
9740 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
9741 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
9742 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9743 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');
9744 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9745 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9746 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
9747 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');
9748 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');
9749 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');
9750 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
9751 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');
9752 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');
9753 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');
9754 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');
9755 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');
9756 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');
9757 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
9758 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');
9759 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');
9760 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9761 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9762 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
9763 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');
9764 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');
9765 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9766 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9767 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9768
9769 -- Projected Graphic
9770 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
9771 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
9772 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');
9773 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
9774 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');
9775 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');
9776 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
9777 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
9778 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9779 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
9780 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');
9781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9782 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');
9783 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9784 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');
9785 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9786 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9787 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
9788 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9789 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9790 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');
9791 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');
9792 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');
9793 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9794 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9795 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9796 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');
9797 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');
9798 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');
9799 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9800 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
9801 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');
9802 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');
9803 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');
9804 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');
9805 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');
9806 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');
9807 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');
9808 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9809 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9810 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9811 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9812 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
9813 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.');
9814 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.');
9815 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.');
9816 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.');
9817 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.');
9818 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.');
9819 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.');
9820 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.)');
9821 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.)');
9822 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.)');
9823 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.)');
9824 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9825 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.)');
9826 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.)');
9827 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.)');
9828 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.)');
9829 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9830 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material');
9831 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
9832 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9833 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9834 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
9835 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');
9836 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');
9837 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');
9838 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9839 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9840
9841 -- Microform
9842 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
9843 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
9844 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');
9845 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');
9846 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');
9847 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');
9848 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
9849 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');
9850 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
9851 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9852 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9853 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative');
9854 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9855 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9856 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9857 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9858 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
9859 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.');
9860 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.');
9861 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.');
9862 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
9863 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.');
9864 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.)');
9865 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.)');
9866 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.)');
9867 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.)');
9868 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9869 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9870 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');
9871 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)');
9872 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)');
9873 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)');
9874 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)');
9875 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-)');
9876 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9877 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');
9878 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
9879 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');
9880 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
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 ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9883 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9884 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
9885 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');
9886 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
9887 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
9888 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9889 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');
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_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9892 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
9893 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');
9894 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');
9895 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');
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 generation');
9897 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9898 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
9899 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');
9900 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');
9901 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');
9902 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');
9903 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');
9904 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');
9905 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');
9906 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');
9907 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');
9908 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9909 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9910
9911 -- Non-projected Graphic
9912 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
9913 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
9914 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
9915 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
9916 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
9917 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');
9918 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
9919 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
9920 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
9921 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
9922 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');
9923 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
9924 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');
9925 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9926 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9927 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
9928 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');
9929 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');
9930 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9931 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');
9932 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9933 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9934 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9935 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
9936 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9937 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');
9938 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');
9939 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9940 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9941 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9942 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9943 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9944 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');
9945 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9946 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9947 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9948 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9949 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9950 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9951 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9952 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9953 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material');
9954 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9955 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');
9956 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');
9957 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9958 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9959 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9960 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9961 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9962 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');
9963 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9964 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9965 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9966 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9967 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9968 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9969 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9970 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9971
9972 -- Motion Picture
9973 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
9974 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
9975 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');
9976 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');
9977 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');
9978 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
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','d','3','1','Color');
9981 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');
9982 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9983 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');
9984 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9985 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9986 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9987 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
9988 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');
9989 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)');
9990 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
9991 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)');
9992 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');
9993 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');
9994 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9995 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9996 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');
9997 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');
9998 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');
9999 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10000 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
10001 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');
10002 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');
10003 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');
10004 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');
10005 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');
10006 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');
10007 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');
10008 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
10009 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10010 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10011 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10012 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
10013 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.');
10014 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.');
10015 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.');
10016 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.');
10017 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.');
10018 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.');
10019 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.');
10020 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10021 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10022 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels');
10023 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10024 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10025 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
10026 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multichannel, surround or quadraphonic');
10027 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10028 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10029 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10030 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements');
10031 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');
10032 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
10033 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
10034 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
10035 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');
10036 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');
10037 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');
10038 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');
10039 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10040
10041 -- Remote-sensing Image
10042 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
10043 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
10044 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10045 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude 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'),'Surface');
10047 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
10048 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
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_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10052 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor');
10053 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');
10054 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');
10055 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
10056 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
10057 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10058 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
10059 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%');
10060 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%');
10061 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%');
10062 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%');
10063 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%');
10064 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%');
10065 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%');
10066 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%');
10067 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%');
10068 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%');
10069 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');
10070 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10071 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
10072 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
10073 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');
10074 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');
10075 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');
10076 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');
10077 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');
10078 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');
10079 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');
10080 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');
10081 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');
10082 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10083 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10084 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
10085 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
10086 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');
10087 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');
10088 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');
10089 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');
10090 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10091 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10092 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
10093 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
10094 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
10095 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10096 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10097 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
10098 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');
10099 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');
10100 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');
10101 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');
10102 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');
10103 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)');
10104 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');
10105 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
10106 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');
10107 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)');
10108 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)');
10109 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)');
10110 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');
10111 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');
10112 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');
10113 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');
10114 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');
10115 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');
10116 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');
10117 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');
10118 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');
10119 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');
10120 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');
10121 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');
10122 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');
10123 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');
10124 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');
10125 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');
10126 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');
10127 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');
10128 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');
10129 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');
10130 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');
10131 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)');
10132 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');
10133 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
10134 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
10135 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');
10136 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');
10137 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10138 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10139
10140 -- Sound Recording
10141 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
10142 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
10143 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');
10144 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
10145 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');
10146 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');
10147 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
10148 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');
10149 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');
10150 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10151 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');
10152 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10153 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
10154 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');
10155 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');
10156 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');
10157 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');
10158 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');
10159 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');
10160 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');
10161 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');
10162 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');
10163 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');
10164 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');
10165 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');
10166 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');
10167 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');
10168 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10169 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10170 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels');
10171 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10172 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
10173 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10174 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10175 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10176 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch');
10177 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');
10178 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
10179 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Coarse/standard');
10180 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10181 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10182 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions');
10183 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.');
10184 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.');
10185 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.');
10186 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.');
10187 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.');
10188 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.');
10189 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.)');
10190 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.');
10191 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');
10192 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.');
10193 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.');
10194 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10195 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10196 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
10197 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.');
10198 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.');
10199 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');
10200 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.');
10201 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.');
10202 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10203 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10204 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
10205 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');
10206 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');
10207 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');
10208 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');
10209 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');
10210 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');
10211 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');
10212 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10213 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10214 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
10215 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');
10216 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');
10217 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');
10218 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');
10219 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');
10220 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');
10221 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');
10222 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');
10223 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');
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 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
10227 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');
10228 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');
10229 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');
10230 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');
10231 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10232 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10233
10234 -- Videorecording
10235 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
10236 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
10237 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
10238 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10239 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
10240 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
10241 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
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','d','3','1','Color');
10244 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');
10245 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
10246 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10247 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');
10248 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10249 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10250 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
10251 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
10252 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
10253 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');
10254 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
10255 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');
10256 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
10257 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
10258 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
10259 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
10260 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');
10261 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');
10262 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');
10263 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');
10264 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.');
10265 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.');
10266 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10267 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
10268 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10269 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');
10270 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');
10271 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');
10272 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10273 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
10274 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');
10275 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');
10276 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');
10277 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');
10278 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');
10279 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');
10280 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');
10281 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
10282 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10283 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10284 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10285 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
10286 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.');
10287 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.');
10288 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.');
10289 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.');
10290 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.');
10291 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.');
10292 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10293 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10294 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
10295 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10296 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10297 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');
10298 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');
10299 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10300 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10301 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10302
10303 -- Fixed Field position data -- 0-based!
10304 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
10305 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
10306 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
10307 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
10308 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
10309 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
10310 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
10311 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
10312 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
10313 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
10314 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
10315 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
10316 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
10317 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
10318 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
10319 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
10320 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
10321 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
10322 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
10323 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
10324 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
10325 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
10326 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
10327 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
10328 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
10329 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
10330 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
10331 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
10332 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
10333 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
10334 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
10335 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
10336 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
10337 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
10338 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
10339 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
10340 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
10341 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
10342 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
10343 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
10344 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
10345 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
10346 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
10347 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
10348 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
10349 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
10350 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
10351 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
10352 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
10353 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
10354 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
10355 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
10356 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
10357 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
10358 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
10359 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
10360 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
10361 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
10362 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
10363 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
10364 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
10365 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
10366 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
10367 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
10368 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
10369 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
10370 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
10371 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
10372 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
10373 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
10374 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
10375 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
10376 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
10377 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
10378 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
10379 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
10380 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
10381 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
10382 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
10383 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
10384 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
10385 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
10386 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
10387 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
10388 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
10389 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
10390 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
10391 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
10392 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
10393 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
10394 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
10395 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
10396 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
10397 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
10398 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
10399 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
10400 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
10401 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
10402 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
10403 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
10404 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
10405 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
10406 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
10407 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
10408 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
10409 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
10410 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
10411 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
10412 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
10413 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
10414 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
10415 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
10416 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
10417 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
10418 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
10419 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
10420 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
10421 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
10422 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
10423 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
10424 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
10425 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
10426 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
10427 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
10428 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
10429 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
10430 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
10431 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
10432 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
10433 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
10434 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
10435 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
10436 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
10437 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
10438 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');
10439 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');
10440 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
10441 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
10442 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
10443 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
10444 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
10445 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
10446 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
10447 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
10448 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
10449 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
10450
10451 CREATE OR REPLACE FUNCTION biblio.marc21_record_type( rid BIGINT ) RETURNS config.marc21_rec_type_map AS $func$
10452 DECLARE
10453         ldr         RECORD;
10454         tval        TEXT;
10455         tval_rec    RECORD;
10456         bval        TEXT;
10457         bval_rec    RECORD;
10458     retval      config.marc21_rec_type_map%ROWTYPE;
10459 BEGIN
10460     SELECT * INTO ldr FROM metabib.full_rec WHERE record = rid AND tag = 'LDR' LIMIT 1;
10461
10462     IF ldr.id IS NULL THEN
10463         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10464         RETURN retval;
10465     END IF;
10466
10467     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10468     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10469
10470
10471     tval := SUBSTRING( ldr.value, tval_rec.start_pos + 1, tval_rec.length );
10472     bval := SUBSTRING( ldr.value, bval_rec.start_pos + 1, bval_rec.length );
10473
10474     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr.value;
10475
10476     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10477
10478
10479     IF retval.code IS NULL THEN
10480         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10481     END IF;
10482
10483     RETURN retval;
10484 END;
10485 $func$ LANGUAGE PLPGSQL;
10486
10487 CREATE OR REPLACE FUNCTION biblio.marc21_extract_fixed_field( rid BIGINT, ff TEXT ) RETURNS TEXT AS $func$
10488 DECLARE
10489     rtype       TEXT;
10490     ff_pos      RECORD;
10491     tag_data    RECORD;
10492     val         TEXT;
10493 BEGIN
10494     rtype := (biblio.marc21_record_type( rid )).code;
10495     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
10496         FOR tag_data IN SELECT * FROM metabib.full_rec WHERE tag = UPPER(ff_pos.tag) AND record = rid LOOP
10497             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
10498             RETURN val;
10499         END LOOP;
10500         val := REPEAT( ff_pos.default_val, ff_pos.length );
10501         RETURN val;
10502     END LOOP;
10503
10504     RETURN NULL;
10505 END;
10506 $func$ LANGUAGE PLPGSQL;
10507
10508 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
10509 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
10510 DECLARE
10511     rowid   INT := 0;
10512     _007    RECORD;
10513     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
10514     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
10515     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
10516     retval  biblio.marc21_physical_characteristics%ROWTYPE;
10517 BEGIN
10518
10519     SELECT * INTO _007 FROM metabib.full_rec WHERE record = rid AND tag = '007' LIMIT 1;
10520
10521     IF _007.id IS NOT NULL THEN
10522         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007.value, 1, 1 );
10523
10524         IF ptype.ptype_key IS NOT NULL THEN
10525             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
10526                 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 );
10527
10528                 IF pval.id IS NOT NULL THEN
10529                     rowid := rowid + 1;
10530                     retval.id := rowid;
10531                     retval.record := rid;
10532                     retval.ptype := ptype.ptype_key;
10533                     retval.subfield := psf.id;
10534                     retval.value := pval.id;
10535                     RETURN NEXT retval;
10536                 END IF;
10537
10538             END LOOP;
10539         END IF;
10540     END IF;
10541
10542     RETURN;
10543 END;
10544 $func$ LANGUAGE PLPGSQL;
10545
10546 DROP VIEW IF EXISTS money.open_usr_circulation_summary;
10547 DROP VIEW IF EXISTS money.open_usr_summary;
10548 DROP VIEW IF EXISTS money.open_billable_xact_summary;
10549
10550 -- The view should supply defaults for numeric (amount) columns
10551 CREATE OR REPLACE VIEW money.billable_xact_summary AS
10552     SELECT  xact.id,
10553         xact.usr,
10554         xact.xact_start,
10555         xact.xact_finish,
10556         COALESCE(credit.amount, 0.0::numeric) AS total_paid,
10557         credit.payment_ts AS last_payment_ts,
10558         credit.note AS last_payment_note,
10559         credit.payment_type AS last_payment_type,
10560         COALESCE(debit.amount, 0.0::numeric) AS total_owed,
10561         debit.billing_ts AS last_billing_ts,
10562         debit.note AS last_billing_note,
10563         debit.billing_type AS last_billing_type,
10564         COALESCE(debit.amount, 0.0::numeric) - COALESCE(credit.amount, 0.0::numeric) AS balance_owed,
10565         p.relname AS xact_type
10566       FROM  money.billable_xact xact
10567         JOIN pg_class p ON xact.tableoid = p.oid
10568         LEFT JOIN (
10569             SELECT  billing.xact,
10570                 sum(billing.amount) AS amount,
10571                 max(billing.billing_ts) AS billing_ts,
10572                 last(billing.note) AS note,
10573                 last(billing.billing_type) AS billing_type
10574               FROM  money.billing
10575               WHERE billing.voided IS FALSE
10576               GROUP BY billing.xact
10577             ) debit ON xact.id = debit.xact
10578         LEFT JOIN (
10579             SELECT  payment_view.xact,
10580                 sum(payment_view.amount) AS amount,
10581                 max(payment_view.payment_ts) AS payment_ts,
10582                 last(payment_view.note) AS note,
10583                 last(payment_view.payment_type) AS payment_type
10584               FROM  money.payment_view
10585               WHERE payment_view.voided IS FALSE
10586               GROUP BY payment_view.xact
10587             ) credit ON xact.id = credit.xact
10588       ORDER BY debit.billing_ts, credit.payment_ts;
10589
10590 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
10591     SELECT * FROM money.billable_xact_summary_location_view
10592     WHERE xact_finish IS NULL;
10593
10594 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
10595     SELECT 
10596         usr,
10597         SUM(total_paid) AS total_paid,
10598         SUM(total_owed) AS total_owed,
10599         SUM(balance_owed) AS balance_owed
10600     FROM  money.materialized_billable_xact_summary
10601     WHERE xact_type = 'circulation' AND xact_finish IS NULL
10602     GROUP BY usr;
10603
10604 CREATE OR REPLACE VIEW money.usr_summary AS
10605     SELECT 
10606         usr, 
10607         sum(total_paid) AS total_paid, 
10608         sum(total_owed) AS total_owed, 
10609         sum(balance_owed) AS balance_owed
10610     FROM money.materialized_billable_xact_summary
10611     GROUP BY usr;
10612
10613 CREATE OR REPLACE VIEW money.open_usr_summary AS
10614     SELECT 
10615         usr, 
10616         sum(total_paid) AS total_paid, 
10617         sum(total_owed) AS total_owed, 
10618         sum(balance_owed) AS balance_owed
10619     FROM money.materialized_billable_xact_summary
10620     WHERE xact_finish IS NULL
10621     GROUP BY usr;
10622
10623 -- 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;
10624
10625 CREATE TABLE config.biblio_fingerprint (
10626         id                      SERIAL  PRIMARY KEY,
10627         name            TEXT    NOT NULL, 
10628         xpath           TEXT    NOT NULL,
10629     first_word  BOOL    NOT NULL DEFAULT FALSE,
10630         format          TEXT    NOT NULL DEFAULT 'marcxml'
10631 );
10632
10633 INSERT INTO config.biblio_fingerprint (name, xpath, format)
10634     VALUES (
10635         'Title',
10636         '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' ||
10637             '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' ||
10638             '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' ||
10639             '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' ||
10640             '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]',
10641         'marcxml'
10642     );
10643
10644 INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word)
10645     VALUES (
10646         'Author',
10647         '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|'
10648             '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|'
10649             '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|'
10650             '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|'
10651             '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]',
10652         'marcxml',
10653         TRUE
10654     );
10655
10656 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$
10657 DECLARE
10658     qual        INT;
10659     ldr         TEXT;
10660     tval        TEXT;
10661     tval_rec    RECORD;
10662     bval        TEXT;
10663     bval_rec    RECORD;
10664     type_map    RECORD;
10665     ff_pos      RECORD;
10666     ff_tag_data TEXT;
10667 BEGIN
10668
10669     IF marc IS NULL OR marc = '' THEN
10670         RETURN NULL;
10671     END IF;
10672
10673     -- First, the count of tags
10674     qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1);
10675
10676     -- now go through a bunch of pain to get the record type
10677     IF best_type IS NOT NULL THEN
10678         ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1];
10679
10680         IF ldr IS NOT NULL THEN
10681             SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10682             SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10683
10684
10685             tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
10686             bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
10687
10688             -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
10689
10690             SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10691
10692             IF type_map.code IS NOT NULL THEN
10693                 IF best_type = type_map.code THEN
10694                     qual := qual + qual / 2;
10695                 END IF;
10696
10697                 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
10698                     ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length);
10699                     IF ff_tag_data = best_lang THEN
10700                             qual := qual + 100;
10701                     END IF;
10702                 END LOOP;
10703             END IF;
10704         END IF;
10705     END IF;
10706
10707     -- Now look for some quality metrics
10708     -- DCL record?
10709     IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN
10710         qual := qual + 10;
10711     END IF;
10712
10713     -- From OCLC?
10714     IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN
10715         qual := qual + 10;
10716     END IF;
10717
10718     RETURN qual;
10719
10720 END;
10721 $func$ LANGUAGE PLPGSQL;
10722
10723 CREATE OR REPLACE FUNCTION biblio.extract_fingerprint ( marc text ) RETURNS TEXT AS $func$
10724 DECLARE
10725     idx     config.biblio_fingerprint%ROWTYPE;
10726     xfrm        config.xml_transform%ROWTYPE;
10727     prev_xfrm   TEXT;
10728     transformed_xml TEXT;
10729     xml_node    TEXT;
10730     xml_node_list   TEXT[];
10731     raw_text    TEXT;
10732     output_text TEXT := '';
10733 BEGIN
10734
10735     IF marc IS NULL OR marc = '' THEN
10736         RETURN NULL;
10737     END IF;
10738
10739     -- Loop over the indexing entries
10740     FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP
10741
10742         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
10743
10744         -- See if we can skip the XSLT ... it's expensive
10745         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
10746             -- Can't skip the transform
10747             IF xfrm.xslt <> '---' THEN
10748                 transformed_xml := oils_xslt_process(marc,xfrm.xslt);
10749             ELSE
10750                 transformed_xml := marc;
10751             END IF;
10752
10753             prev_xfrm := xfrm.name;
10754         END IF;
10755
10756         raw_text := COALESCE(
10757             naco_normalize(
10758                 ARRAY_TO_STRING(
10759                     oils_xpath(
10760                         '//text()',
10761                         (oils_xpath(
10762                             idx.xpath,
10763                             transformed_xml,
10764                             ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]
10765                         ))[1]
10766                     ),
10767                     ''
10768                 )
10769             ),
10770             ''
10771         );
10772
10773         raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E'');
10774         raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain!
10775
10776         IF idx.first_word IS TRUE THEN
10777             raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1');
10778         END IF;
10779
10780         output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g');
10781
10782     END LOOP;
10783
10784     RETURN output_text;
10785
10786 END;
10787 $func$ LANGUAGE PLPGSQL;
10788
10789 -- BEFORE UPDATE OR INSERT trigger for biblio.record_entry
10790 CREATE OR REPLACE FUNCTION biblio.fingerprint_trigger () RETURNS TRIGGER AS $func$
10791 BEGIN
10792
10793     -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS')
10794
10795     IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we?
10796         RETURN NEW;
10797     END IF;
10798
10799     NEW.fingerprint := biblio.extract_fingerprint(NEW.marc);
10800     NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]);
10801
10802     RETURN NEW;
10803
10804 END;
10805 $func$ LANGUAGE PLPGSQL;
10806
10807 CREATE TABLE config.internal_flag (
10808     name    TEXT    PRIMARY KEY,
10809     value   TEXT,
10810     enabled BOOL    NOT NULL DEFAULT FALSE
10811 );
10812 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert');
10813 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc');
10814 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.skip_located_uri');
10815 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri');
10816 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec');
10817 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor');
10818 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry');
10819 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_authority_linking');
10820 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_update');
10821 INSERT INTO config.internal_flag (name) VALUES ('ingest.assume_inserts_only');
10822
10823 CREATE TABLE authority.bib_linking (
10824     id          BIGSERIAL   PRIMARY KEY,
10825     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
10826     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
10827 );
10828 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
10829 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
10830
10831 CREATE OR REPLACE FUNCTION public.remove_paren_substring( TEXT ) RETURNS TEXT AS $func$
10832     SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g');
10833 $func$ LANGUAGE SQL STRICT IMMUTABLE;
10834
10835 CREATE OR REPLACE FUNCTION biblio.map_authority_linking (bibid BIGINT, marc TEXT) RETURNS BIGINT AS $func$
10836     DELETE FROM authority.bib_linking WHERE bib = $1;
10837     INSERT INTO authority.bib_linking (bib, authority)
10838         SELECT  y.bib,
10839                 y.authority
10840           FROM (    SELECT  DISTINCT $1 AS bib,
10841                             BTRIM(remove_paren_substring(txt))::BIGINT AS authority
10842                       FROM  explode_array(oils_xpath('//*[@code="0"]/text()',$2)) x(txt)
10843                       WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$
10844                 ) y JOIN authority.record_entry r ON r.id = y.authority;
10845     SELECT $1;
10846 $func$ LANGUAGE SQL;
10847
10848 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_rec_descriptor( bib_id BIGINT ) RETURNS VOID AS $func$
10849 BEGIN
10850     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10851     IF NOT FOUND THEN
10852         DELETE FROM metabib.rec_descriptor WHERE record = bib_id;
10853     END IF;
10854     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)
10855         SELECT  bib_id,
10856                 biblio.marc21_extract_fixed_field( bib_id, 'Type' ),
10857                 biblio.marc21_extract_fixed_field( bib_id, 'Form' ),
10858                 biblio.marc21_extract_fixed_field( bib_id, 'BLvl' ),
10859                 biblio.marc21_extract_fixed_field( bib_id, 'Ctrl' ),
10860                 biblio.marc21_extract_fixed_field( bib_id, 'ELvl' ),
10861                 biblio.marc21_extract_fixed_field( bib_id, 'Audn' ),
10862                 biblio.marc21_extract_fixed_field( bib_id, 'LitF' ),
10863                 biblio.marc21_extract_fixed_field( bib_id, 'TMat' ),
10864                 biblio.marc21_extract_fixed_field( bib_id, 'Desc' ),
10865                 biblio.marc21_extract_fixed_field( bib_id, 'DtSt' ),
10866                 biblio.marc21_extract_fixed_field( bib_id, 'Lang' ),
10867                 (   SELECT  v.value
10868                       FROM  biblio.marc21_physical_characteristics( bib_id) p
10869                             JOIN config.marc21_physical_characteristic_subfield_map s ON (s.id = p.subfield)
10870                             JOIN config.marc21_physical_characteristic_value_map v ON (v.id = p.value)
10871                       WHERE p.ptype = 'v' AND s.subfield = 'e'    ),
10872                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date1'), ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
10873                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date2'), ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
10874
10875     RETURN;
10876 END;
10877 $func$ LANGUAGE PLPGSQL;
10878
10879 CREATE TABLE config.metabib_class (
10880     name    TEXT    PRIMARY KEY,
10881     label   TEXT    NOT NULL UNIQUE
10882 );
10883
10884 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
10885 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
10886 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
10887 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
10888 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
10889
10890 CREATE TABLE metabib.facet_entry (
10891         id              BIGSERIAL       PRIMARY KEY,
10892         source          BIGINT          NOT NULL,
10893         field           INT             NOT NULL,
10894         value           TEXT            NOT NULL
10895 );
10896
10897 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_field_entries( bib_id BIGINT ) RETURNS VOID AS $func$
10898 DECLARE
10899     fclass          RECORD;
10900     ind_data        metabib.field_entry_template%ROWTYPE;
10901 BEGIN
10902     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10903     IF NOT FOUND THEN
10904         FOR fclass IN SELECT * FROM config.metabib_class LOOP
10905             -- RAISE NOTICE 'Emptying out %', fclass.name;
10906             EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id;
10907         END LOOP;
10908         DELETE FROM metabib.facet_entry WHERE source = bib_id;
10909     END IF;
10910
10911     FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP
10912         IF ind_data.field < 0 THEN
10913             ind_data.field = -1 * ind_data.field;
10914             INSERT INTO metabib.facet_entry (field, source, value)
10915                 VALUES (ind_data.field, ind_data.source, ind_data.value);
10916         ELSE
10917             EXECUTE $$
10918                 INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value)
10919                     VALUES ($$ ||
10920                         quote_literal(ind_data.field) || $$, $$ ||
10921                         quote_literal(ind_data.source) || $$, $$ ||
10922                         quote_literal(ind_data.value) ||
10923                     $$);$$;
10924         END IF;
10925
10926     END LOOP;
10927
10928     RETURN;
10929 END;
10930 $func$ LANGUAGE PLPGSQL;
10931
10932 CREATE OR REPLACE FUNCTION biblio.extract_located_uris( bib_id BIGINT, marcxml TEXT, editor_id INT ) RETURNS VOID AS $func$
10933 DECLARE
10934     uris            TEXT[];
10935     uri_xml         TEXT;
10936     uri_label       TEXT;
10937     uri_href        TEXT;
10938     uri_use         TEXT;
10939     uri_owner       TEXT;
10940     uri_owner_id    INT;
10941     uri_id          INT;
10942     uri_cn_id       INT;
10943     uri_map_id      INT;
10944 BEGIN
10945
10946     uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml);
10947     IF ARRAY_UPPER(uris,1) > 0 THEN
10948         FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP
10949             -- First we pull info out of the 856
10950             uri_xml     := uris[i];
10951
10952             uri_href    := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1];
10953             CONTINUE WHEN uri_href IS NULL;
10954
10955             uri_label   := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10956             CONTINUE WHEN uri_label IS NULL;
10957
10958             uri_owner   := (oils_xpath('//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10959             CONTINUE WHEN uri_owner IS NULL;
10960
10961             uri_use     := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10962
10963             uri_owner := REGEXP_REPLACE(uri_owner, $re$^.*?\((\w+)\).*$$re$, E'\\1');
10964
10965             SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner;
10966             CONTINUE WHEN NOT FOUND;
10967
10968             -- now we look for a matching uri
10969             SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10970             IF NOT FOUND THEN -- create one
10971                 INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use);
10972                 SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10973             END IF;
10974
10975             -- we need a call number to link through
10976             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;
10977             IF NOT FOUND THEN
10978                 INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label)
10979                     VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##');
10980                 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;
10981             END IF;
10982
10983             -- now, link them if they're not already
10984             SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id;
10985             IF NOT FOUND THEN
10986                 INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id);
10987             END IF;
10988
10989         END LOOP;
10990     END IF;
10991
10992     RETURN;
10993 END;
10994 $func$ LANGUAGE PLPGSQL;
10995
10996 CREATE OR REPLACE FUNCTION metabib.remap_metarecord_for_bib( bib_id BIGINT, fp TEXT ) RETURNS BIGINT AS $func$
10997 DECLARE
10998     source_count    INT;
10999     old_mr          BIGINT;
11000     tmp_mr          metabib.metarecord%ROWTYPE;
11001     deleted_mrs     BIGINT[];
11002 BEGIN
11003
11004     DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; -- Rid ourselves of the search-estimate-killing linkage
11005
11006     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
11007
11008         IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN -- Find the first fingerprint-matching
11009             old_mr := tmp_mr.id;
11010         ELSE
11011             SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id;
11012             IF source_count = 0 THEN -- No other records
11013                 deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id);
11014                 DELETE FROM metabib.metarecord WHERE id = tmp_mr.id;
11015             END IF;
11016         END IF;
11017
11018     END LOOP;
11019
11020     IF old_mr IS NULL THEN -- we found no suitable, preexisting MR based on old source maps
11021         SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint?
11022         IF old_mr IS NULL THEN -- nope, create one and grab its id
11023             INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id );
11024             SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp;
11025         ELSE -- indeed there is. update it with a null cache and recalcualated master record
11026             UPDATE  metabib.metarecord
11027               SET   mods = NULL,
11028                     master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
11029               WHERE id = old_mr;
11030         END IF;
11031     ELSE -- there was one we already attached to, update its mods cache and master_record
11032         UPDATE  metabib.metarecord
11033           SET   mods = NULL,
11034                 master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
11035           WHERE id = old_mr;
11036     END IF;
11037
11038     INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping
11039
11040     IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN
11041         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
11042     END IF;
11043
11044     RETURN old_mr;
11045
11046 END;
11047 $func$ LANGUAGE PLPGSQL;
11048
11049 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_full_rec( bib_id BIGINT ) RETURNS VOID AS $func$
11050 BEGIN
11051     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
11052     IF NOT FOUND THEN
11053         DELETE FROM metabib.real_full_rec WHERE record = bib_id;
11054     END IF;
11055     INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value)
11056         SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id );
11057
11058     RETURN;
11059 END;
11060 $func$ LANGUAGE PLPGSQL;
11061
11062 -- AFTER UPDATE OR INSERT trigger for biblio.record_entry
11063 CREATE OR REPLACE FUNCTION biblio.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
11064 BEGIN
11065
11066     IF NEW.deleted IS TRUE THEN -- If this bib is deleted
11067         DELETE FROM metabib.metarecord_source_map WHERE source = NEW.id; -- Rid ourselves of the search-estimate-killing linkage
11068         DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible
11069         RETURN NEW; -- and we're done
11070     END IF;
11071
11072     IF TG_OP = 'UPDATE' THEN -- re-ingest?
11073         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
11074
11075         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
11076             RETURN NEW;
11077         END IF;
11078         -- Propagate these updates to any linked bib records
11079         PERFORM authority.propagate_changes(NEW.id) FROM authority.record_entry WHERE id = NEW.id;
11080     END IF;
11081
11082     -- Record authority linking
11083     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
11084     IF NOT FOUND THEN
11085         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
11086     END IF;
11087
11088     -- Flatten and insert the mfr data
11089     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
11090     IF NOT FOUND THEN
11091         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
11092         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
11093         IF NOT FOUND THEN
11094             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
11095         END IF;
11096     END IF;
11097
11098     -- Gather and insert the field entry data
11099     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
11100
11101     -- Located URI magic
11102     IF TG_OP = 'INSERT' THEN
11103         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11104         IF NOT FOUND THEN
11105             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11106         END IF;
11107     ELSE
11108         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11109         IF NOT FOUND THEN
11110             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11111         END IF;
11112     END IF;
11113
11114     -- (re)map metarecord-bib linking
11115     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
11116         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
11117         IF NOT FOUND THEN
11118             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11119         END IF;
11120     ELSE -- we're doing an update, and we're not deleted, remap
11121         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_update' AND enabled;
11122         IF NOT FOUND THEN
11123             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11124         END IF;
11125     END IF;
11126
11127     RETURN NEW;
11128 END;
11129 $func$ LANGUAGE PLPGSQL;
11130
11131 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
11132 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 ();
11133
11134 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
11135 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
11136
11137 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT ) RETURNS SETOF RECORD AS $func$
11138 DECLARE
11139     xpath_list  TEXT[];
11140     select_list TEXT[];
11141     where_list  TEXT[];
11142     q           TEXT;
11143     out_record  RECORD;
11144     empty_test  RECORD;
11145 BEGIN
11146     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
11147  
11148     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
11149  
11150     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
11151         IF xpath_list[i] = 'null()' THEN
11152             select_list := ARRAY_APPEND( select_list, 'NULL::TEXT AS c_' || i );
11153         ELSE
11154             select_list := ARRAY_APPEND(
11155                 select_list,
11156                 $sel$
11157                 EXPLODE_ARRAY(
11158                     COALESCE(
11159                         NULLIF(
11160                             oils_xpath(
11161                                 $sel$ ||
11162                                     quote_literal(
11163                                         CASE
11164                                             WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
11165                                             ELSE xpath_list[i] || '//text()'
11166                                         END
11167                                     ) ||
11168                                 $sel$,
11169                                 $sel$ || document_field || $sel$
11170                             ),
11171                            '{}'::TEXT[]
11172                         ),
11173                         '{NULL}'::TEXT[]
11174                     )
11175                 ) AS c_$sel$ || i
11176             );
11177             where_list := ARRAY_APPEND(
11178                 where_list,
11179                 'c_' || i || ' IS NOT NULL'
11180             );
11181         END IF;
11182     END LOOP;
11183  
11184     q := $q$
11185 SELECT * FROM (
11186     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
11187 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' OR ' );
11188     -- RAISE NOTICE 'query: %', q;
11189  
11190     FOR out_record IN EXECUTE q LOOP
11191         RETURN NEXT out_record;
11192     END LOOP;
11193  
11194     RETURN;
11195 END;
11196 $func$ LANGUAGE PLPGSQL IMMUTABLE;
11197
11198 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
11199 DECLARE
11200
11201     owning_lib      TEXT;
11202     circ_lib        TEXT;
11203     call_number     TEXT;
11204     copy_number     TEXT;
11205     status          TEXT;
11206     location        TEXT;
11207     circulate       TEXT;
11208     deposit         TEXT;
11209     deposit_amount  TEXT;
11210     ref             TEXT;
11211     holdable        TEXT;
11212     price           TEXT;
11213     barcode         TEXT;
11214     circ_modifier   TEXT;
11215     circ_as_type    TEXT;
11216     alert_message   TEXT;
11217     opac_visible    TEXT;
11218     pub_note        TEXT;
11219     priv_note       TEXT;
11220
11221     attr_def        RECORD;
11222     tmp_attr_set    RECORD;
11223     attr_set        vandelay.import_item%ROWTYPE;
11224
11225     xpath           TEXT;
11226
11227 BEGIN
11228
11229     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
11230
11231     IF FOUND THEN
11232
11233         attr_set.definition := attr_def.id; 
11234     
11235         -- Build the combined XPath
11236     
11237         owning_lib :=
11238             CASE
11239                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
11240                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
11241                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
11242             END;
11243     
11244         circ_lib :=
11245             CASE
11246                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
11247                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
11248                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
11249             END;
11250     
11251         call_number :=
11252             CASE
11253                 WHEN attr_def.call_number IS NULL THEN 'null()'
11254                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
11255                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
11256             END;
11257     
11258         copy_number :=
11259             CASE
11260                 WHEN attr_def.copy_number IS NULL THEN 'null()'
11261                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
11262                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
11263             END;
11264     
11265         status :=
11266             CASE
11267                 WHEN attr_def.status IS NULL THEN 'null()'
11268                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
11269                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
11270             END;
11271     
11272         location :=
11273             CASE
11274                 WHEN attr_def.location IS NULL THEN 'null()'
11275                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
11276                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
11277             END;
11278     
11279         circulate :=
11280             CASE
11281                 WHEN attr_def.circulate IS NULL THEN 'null()'
11282                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
11283                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
11284             END;
11285     
11286         deposit :=
11287             CASE
11288                 WHEN attr_def.deposit IS NULL THEN 'null()'
11289                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
11290                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
11291             END;
11292     
11293         deposit_amount :=
11294             CASE
11295                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
11296                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
11297                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
11298             END;
11299     
11300         ref :=
11301             CASE
11302                 WHEN attr_def.ref IS NULL THEN 'null()'
11303                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
11304                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
11305             END;
11306     
11307         holdable :=
11308             CASE
11309                 WHEN attr_def.holdable IS NULL THEN 'null()'
11310                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
11311                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
11312             END;
11313     
11314         price :=
11315             CASE
11316                 WHEN attr_def.price IS NULL THEN 'null()'
11317                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
11318                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
11319             END;
11320     
11321         barcode :=
11322             CASE
11323                 WHEN attr_def.barcode IS NULL THEN 'null()'
11324                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
11325                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
11326             END;
11327     
11328         circ_modifier :=
11329             CASE
11330                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
11331                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
11332                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
11333             END;
11334     
11335         circ_as_type :=
11336             CASE
11337                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
11338                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
11339                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
11340             END;
11341     
11342         alert_message :=
11343             CASE
11344                 WHEN attr_def.alert_message IS NULL THEN 'null()'
11345                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
11346                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
11347             END;
11348     
11349         opac_visible :=
11350             CASE
11351                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
11352                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
11353                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
11354             END;
11355
11356         pub_note :=
11357             CASE
11358                 WHEN attr_def.pub_note IS NULL THEN 'null()'
11359                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
11360                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
11361             END;
11362         priv_note :=
11363             CASE
11364                 WHEN attr_def.priv_note IS NULL THEN 'null()'
11365                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
11366                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
11367             END;
11368     
11369     
11370         xpath := 
11371             owning_lib      || '|' || 
11372             circ_lib        || '|' || 
11373             call_number     || '|' || 
11374             copy_number     || '|' || 
11375             status          || '|' || 
11376             location        || '|' || 
11377             circulate       || '|' || 
11378             deposit         || '|' || 
11379             deposit_amount  || '|' || 
11380             ref             || '|' || 
11381             holdable        || '|' || 
11382             price           || '|' || 
11383             barcode         || '|' || 
11384             circ_modifier   || '|' || 
11385             circ_as_type    || '|' || 
11386             alert_message   || '|' || 
11387             pub_note        || '|' || 
11388             priv_note       || '|' || 
11389             opac_visible;
11390
11391         -- RAISE NOTICE 'XPath: %', xpath;
11392         
11393         FOR tmp_attr_set IN
11394                 SELECT  *
11395                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
11396                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
11397                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
11398                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
11399         LOOP
11400     
11401             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
11402             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
11403
11404             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
11405             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
11406     
11407             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
11408             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
11409             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
11410     
11411             SELECT  id INTO attr_set.location
11412               FROM  asset.copy_location
11413               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
11414                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
11415     
11416             attr_set.circulate      :=
11417                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
11418                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
11419
11420             attr_set.deposit        :=
11421                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
11422                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
11423
11424             attr_set.holdable       :=
11425                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
11426                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
11427
11428             attr_set.opac_visible   :=
11429                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
11430                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
11431
11432             attr_set.ref            :=
11433                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
11434                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
11435     
11436             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
11437             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
11438             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
11439     
11440             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
11441             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
11442             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
11443             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
11444             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11445             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
11446             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
11447             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11448     
11449             RETURN NEXT attr_set;
11450     
11451         END LOOP;
11452     
11453     END IF;
11454
11455     RETURN;
11456
11457 END;
11458 $$ LANGUAGE PLPGSQL;
11459
11460 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
11461 DECLARE
11462     attr_def    BIGINT;
11463     item_data   vandelay.import_item%ROWTYPE;
11464 BEGIN
11465
11466     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
11467
11468     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
11469         INSERT INTO vandelay.import_item (
11470             record,
11471             definition,
11472             owning_lib,
11473             circ_lib,
11474             call_number,
11475             copy_number,
11476             status,
11477             location,
11478             circulate,
11479             deposit,
11480             deposit_amount,
11481             ref,
11482             holdable,
11483             price,
11484             barcode,
11485             circ_modifier,
11486             circ_as_type,
11487             alert_message,
11488             pub_note,
11489             priv_note,
11490             opac_visible
11491         ) VALUES (
11492             NEW.id,
11493             item_data.definition,
11494             item_data.owning_lib,
11495             item_data.circ_lib,
11496             item_data.call_number,
11497             item_data.copy_number,
11498             item_data.status,
11499             item_data.location,
11500             item_data.circulate,
11501             item_data.deposit,
11502             item_data.deposit_amount,
11503             item_data.ref,
11504             item_data.holdable,
11505             item_data.price,
11506             item_data.barcode,
11507             item_data.circ_modifier,
11508             item_data.circ_as_type,
11509             item_data.alert_message,
11510             item_data.pub_note,
11511             item_data.priv_note,
11512             item_data.opac_visible
11513         );
11514     END LOOP;
11515
11516     RETURN NULL;
11517 END;
11518 $func$ LANGUAGE PLPGSQL;
11519
11520 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11521 BEGIN
11522     EXECUTE $$
11523         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11524     $$;
11525         RETURN TRUE;
11526 END;
11527 $creator$ LANGUAGE 'plpgsql';
11528
11529 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11530 BEGIN
11531     EXECUTE $$
11532         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11533             audit_id    BIGINT                          PRIMARY KEY,
11534             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11535             audit_action        TEXT                            NOT NULL,
11536             LIKE $$ || sch || $$.$$ || tbl || $$
11537         );
11538     $$;
11539         RETURN TRUE;
11540 END;
11541 $creator$ LANGUAGE 'plpgsql';
11542
11543 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11544 BEGIN
11545     EXECUTE $$
11546         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11547         RETURNS TRIGGER AS $func$
11548         BEGIN
11549             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11550                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11551                     now(),
11552                     SUBSTR(TG_OP,1,1),
11553                     OLD.*;
11554             RETURN NULL;
11555         END;
11556         $func$ LANGUAGE 'plpgsql';
11557     $$;
11558         RETURN TRUE;
11559 END;
11560 $creator$ LANGUAGE 'plpgsql';
11561
11562 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11563 BEGIN
11564     EXECUTE $$
11565         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11566             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11567             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11568     $$;
11569         RETURN TRUE;
11570 END;
11571 $creator$ LANGUAGE 'plpgsql';
11572
11573 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11574 BEGIN
11575     EXECUTE $$
11576         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11577             SELECT      -1, now() as audit_time, '-' as audit_action, *
11578               FROM      $$ || sch || $$.$$ || tbl || $$
11579                 UNION ALL
11580             SELECT      *
11581               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11582     $$;
11583         RETURN TRUE;
11584 END;
11585 $creator$ LANGUAGE 'plpgsql';
11586
11587 -- The main event
11588
11589 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11590 BEGIN
11591     PERFORM acq.create_acq_seq(sch, tbl);
11592     PERFORM acq.create_acq_history(sch, tbl);
11593     PERFORM acq.create_acq_func(sch, tbl);
11594     PERFORM acq.create_acq_update_trigger(sch, tbl);
11595     PERFORM acq.create_acq_lifecycle(sch, tbl);
11596     RETURN TRUE;
11597 END;
11598 $creator$ LANGUAGE 'plpgsql';
11599
11600 ALTER TABLE acq.lineitem DROP COLUMN item_count;
11601
11602 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11603     SELECT  fund.id AS fund,
11604             fund_debit.encumbrance AS encumbrance,
11605             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11606       FROM acq.fund AS fund
11607                         LEFT JOIN acq.fund_debit AS fund_debit
11608                                 ON ( fund.id = fund_debit.fund )
11609       GROUP BY 1,2;
11610
11611 CREATE TABLE acq.debit_attribution (
11612         id                     INT         NOT NULL PRIMARY KEY,
11613         fund_debit             INT         NOT NULL
11614                                            REFERENCES acq.fund_debit
11615                                            DEFERRABLE INITIALLY DEFERRED,
11616     debit_amount           NUMERIC     NOT NULL,
11617         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11618                                            DEFERRABLE INITIALLY DEFERRED,
11619     credit_amount          NUMERIC
11620 );
11621
11622 CREATE INDEX acq_attribution_debit_idx
11623         ON acq.debit_attribution( fund_debit );
11624
11625 CREATE INDEX acq_attribution_credit_idx
11626         ON acq.debit_attribution( funding_source_credit );
11627
11628 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11629 /*
11630 Function to attribute expenditures and encumbrances to funding source credits,
11631 and thereby to funding sources.
11632
11633 Read the debits in chonological order, attributing each one to one or
11634 more funding source credits.  Constraints:
11635
11636 1. Don't attribute more to a credit than the amount of the credit.
11637
11638 2. For a given fund, don't attribute more to a funding source than the
11639 source has allocated to that fund.
11640
11641 3. Attribute debits to credits with deadlines before attributing them to
11642 credits without deadlines.  Otherwise attribute to the earliest credits
11643 first, based on the deadline date when present, or on the effective date
11644 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11645 This ordering is defined by an ORDER BY clause on the view
11646 acq.ordered_funding_source_credit.
11647
11648 Start by truncating the table acq.debit_attribution.  Then insert a row
11649 into that table for each attribution.  If a debit cannot be fully
11650 attributed, insert a row for the unattributable balance, with the 
11651 funding_source_credit and credit_amount columns NULL.
11652 */
11653 DECLARE
11654         curr_fund_source_bal RECORD;
11655         seqno                INT;     -- sequence num for credits applicable to a fund
11656         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11657         fc                   RECORD;  -- used for loading t_fund_credit table
11658         sc                   RECORD;  -- used for loading t_fund_credit table
11659         --
11660         -- Used exclusively in the main loop:
11661         --
11662         deb                 RECORD;   -- current row from acq.fund_debit table
11663         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11664         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11665         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11666         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11667         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11668         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11669         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11670         attrib_count        INT;      -- populates id of acq.debit_attribution
11671 BEGIN
11672         --
11673         -- Load a temporary table.  For each combination of fund and funding source,
11674         -- load an entry with the total amount allocated to that fund by that source.
11675         -- This sum may reflect transfers as well as original allocations.  We will
11676         -- reduce this balance whenever we attribute debits to it.
11677         --
11678         CREATE TEMP TABLE t_fund_source_bal
11679         ON COMMIT DROP AS
11680                 SELECT
11681                         fund AS fund,
11682                         funding_source AS source,
11683                         sum( amount ) AS balance
11684                 FROM
11685                         acq.fund_allocation
11686                 GROUP BY
11687                         fund,
11688                         funding_source
11689                 HAVING
11690                         sum( amount ) > 0;
11691         --
11692         CREATE INDEX t_fund_source_bal_idx
11693                 ON t_fund_source_bal( fund, source );
11694         -------------------------------------------------------------------------------
11695         --
11696         -- Load another temporary table.  For each fund, load zero or more
11697         -- funding source credits from which that fund can get money.
11698         --
11699         CREATE TEMP TABLE t_fund_credit (
11700                 fund        INT,
11701                 seq         INT,
11702                 credit      INT
11703         ) ON COMMIT DROP;
11704         --
11705         FOR fc IN
11706                 SELECT DISTINCT fund
11707                 FROM acq.fund_allocation
11708                 ORDER BY fund
11709         LOOP                  -- Loop over the funds
11710                 seqno := 1;
11711                 FOR sc IN
11712                         SELECT
11713                                 ofsc.id
11714                         FROM
11715                                 acq.ordered_funding_source_credit AS ofsc
11716                         WHERE
11717                                 ofsc.funding_source IN
11718                                 (
11719                                         SELECT funding_source
11720                                         FROM acq.fund_allocation
11721                                         WHERE fund = fc.fund
11722                                 )
11723                 ORDER BY
11724                     ofsc.sort_priority,
11725                     ofsc.sort_date,
11726                     ofsc.id
11727                 LOOP                        -- Add each credit to the list
11728                         INSERT INTO t_fund_credit (
11729                                 fund,
11730                                 seq,
11731                                 credit
11732                         ) VALUES (
11733                                 fc.fund,
11734                                 seqno,
11735                                 sc.id
11736                         );
11737                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11738                         seqno := seqno + 1;
11739                 END LOOP;     -- Loop over credits for a given fund
11740         END LOOP;         -- Loop over funds
11741         --
11742         CREATE INDEX t_fund_credit_idx
11743                 ON t_fund_credit( fund, seq );
11744         -------------------------------------------------------------------------------
11745         --
11746         -- Load yet another temporary table.  This one is a list of funding source
11747         -- credits, with their balances.  We shall reduce those balances as we
11748         -- attribute debits to them.
11749         --
11750         CREATE TEMP TABLE t_credit
11751         ON COMMIT DROP AS
11752         SELECT
11753             fsc.id AS credit,
11754             fsc.funding_source AS source,
11755             fsc.amount AS balance,
11756             fs.currency_type AS currency_type
11757         FROM
11758             acq.funding_source_credit AS fsc,
11759             acq.funding_source fs
11760         WHERE
11761             fsc.funding_source = fs.id
11762                         AND fsc.amount > 0;
11763         --
11764         CREATE INDEX t_credit_idx
11765                 ON t_credit( credit );
11766         --
11767         -------------------------------------------------------------------------------
11768         --
11769         -- Now that we have loaded the lookup tables: loop through the debits,
11770         -- attributing each one to one or more funding source credits.
11771         -- 
11772         truncate table acq.debit_attribution;
11773         --
11774         attrib_count := 0;
11775         FOR deb in
11776                 SELECT
11777                         fd.id,
11778                         fd.fund,
11779                         fd.amount,
11780                         f.currency_type,
11781                         fd.encumbrance
11782                 FROM
11783                         acq.fund_debit fd,
11784                         acq.fund f
11785                 WHERE
11786                         fd.fund = f.id
11787                 ORDER BY
11788                         fd.id
11789         LOOP
11790                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11791                 --
11792                 debit_balance := deb.amount;
11793                 --
11794                 -- Loop over the funding source credits that are eligible
11795                 -- to pay for this debit
11796                 --
11797                 FOR fund_credit IN
11798                         SELECT
11799                                 credit
11800                         FROM
11801                                 t_fund_credit
11802                         WHERE
11803                                 fund = deb.fund
11804                         ORDER BY
11805                                 seq
11806                 LOOP
11807                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11808                         --
11809                         -- Look up the balance for this credit.  If it's zero, then
11810                         -- it's not useful, so treat it as if you didn't find it.
11811                         -- (Actually there shouldn't be any zero balances in the table,
11812                         -- but we check just to make sure.)
11813                         --
11814                         SELECT *
11815                         INTO curr_credit_bal
11816                         FROM t_credit
11817                         WHERE
11818                                 credit = fund_credit.credit
11819                                 AND balance > 0;
11820                         --
11821                         IF curr_credit_bal IS NULL THEN
11822                                 --
11823                                 -- This credit is exhausted; try the next one.
11824                                 --
11825                                 CONTINUE;
11826                         END IF;
11827                         --
11828                         --
11829                         -- At this point we have an applicable credit with some money left.
11830                         -- Now see if the relevant funding_source has any money left.
11831                         --
11832                         -- Look up the balance of the allocation for this combination of
11833                         -- fund and source.  If you find such an entry, but it has a zero
11834                         -- balance, then it's not useful, so treat it as unfound.
11835                         -- (Actually there shouldn't be any zero balances in the table,
11836                         -- but we check just to make sure.)
11837                         --
11838                         SELECT *
11839                         INTO curr_fund_source_bal
11840                         FROM t_fund_source_bal
11841                         WHERE
11842                                 fund = deb.fund
11843                                 AND source = curr_credit_bal.source
11844                                 AND balance > 0;
11845                         --
11846                         IF curr_fund_source_bal IS NULL THEN
11847                                 --
11848                                 -- This fund/source doesn't exist or is already exhausted,
11849                                 -- so we can't use this credit.  Go on to the next one.
11850                                 --
11851                                 CONTINUE;
11852                         END IF;
11853                         --
11854                         -- Convert the available balances to the currency of the fund
11855                         --
11856                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11857                                 curr_credit_bal.currency_type, deb.currency_type );
11858                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11859                                 curr_credit_bal.currency_type, deb.currency_type );
11860                         --
11861                         -- Determine how much we can attribute to this credit: the minimum
11862                         -- of the debit amount, the fund/source balance, and the
11863                         -- credit balance
11864                         --
11865                         --RAISE NOTICE '   deb bal %', debit_balance;
11866                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11867                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11868                         --
11869                         conv_attr_amount := NULL;
11870                         attr_amount := debit_balance;
11871                         --
11872                         IF attr_amount > conv_alloc_balance THEN
11873                                 attr_amount := conv_alloc_balance;
11874                                 conv_attr_amount := curr_fund_source_bal.balance;
11875                         END IF;
11876                         IF attr_amount > conv_cred_balance THEN
11877                                 attr_amount := conv_cred_balance;
11878                                 conv_attr_amount := curr_credit_bal.balance;
11879                         END IF;
11880                         --
11881                         -- If we're attributing all of one of the balances, then that's how
11882                         -- much we will deduct from the balances, and we already captured
11883                         -- that amount above.  Otherwise we must convert the amount of the
11884                         -- attribution from the currency of the fund back to the currency of
11885                         -- the funding source.
11886                         --
11887                         IF conv_attr_amount IS NULL THEN
11888                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11889                                         deb.currency_type, curr_credit_bal.currency_type );
11890                         END IF;
11891                         --
11892                         -- Insert a row to record the attribution
11893                         --
11894                         attrib_count := attrib_count + 1;
11895                         INSERT INTO acq.debit_attribution (
11896                                 id,
11897                                 fund_debit,
11898                                 debit_amount,
11899                                 funding_source_credit,
11900                                 credit_amount
11901                         ) VALUES (
11902                                 attrib_count,
11903                                 deb.id,
11904                                 attr_amount,
11905                                 curr_credit_bal.credit,
11906                                 conv_attr_amount
11907                         );
11908                         --
11909                         -- Subtract the attributed amount from the various balances
11910                         --
11911                         debit_balance := debit_balance - attr_amount;
11912                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11913                         --
11914                         IF curr_fund_source_bal.balance <= 0 THEN
11915                                 --
11916                                 -- This allocation is exhausted.  Delete it so
11917                                 -- that we don't waste time looking at it again.
11918                                 --
11919                                 DELETE FROM t_fund_source_bal
11920                                 WHERE
11921                                         fund = curr_fund_source_bal.fund
11922                                         AND source = curr_fund_source_bal.source;
11923                         ELSE
11924                                 UPDATE t_fund_source_bal
11925                                 SET balance = balance - conv_attr_amount
11926                                 WHERE
11927                                         fund = curr_fund_source_bal.fund
11928                                         AND source = curr_fund_source_bal.source;
11929                         END IF;
11930                         --
11931                         IF curr_credit_bal.balance <= 0 THEN
11932                                 --
11933                                 -- This funding source credit is exhausted.  Delete it
11934                                 -- so that we don't waste time looking at it again.
11935                                 --
11936                                 --DELETE FROM t_credit
11937                                 --WHERE
11938                                 --      credit = curr_credit_bal.credit;
11939                                 --
11940                                 DELETE FROM t_fund_credit
11941                                 WHERE
11942                                         credit = curr_credit_bal.credit;
11943                         ELSE
11944                                 UPDATE t_credit
11945                                 SET balance = curr_credit_bal.balance
11946                                 WHERE
11947                                         credit = curr_credit_bal.credit;
11948                         END IF;
11949                         --
11950                         -- Are we done with this debit yet?
11951                         --
11952                         IF debit_balance <= 0 THEN
11953                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11954                         END IF;
11955                 END LOOP;       -- End loop over credits
11956                 --
11957                 IF debit_balance <> 0 THEN
11958                         --
11959                         -- We weren't able to attribute this debit, or at least not
11960                         -- all of it.  Insert a row for the unattributed balance.
11961                         --
11962                         attrib_count := attrib_count + 1;
11963                         INSERT INTO acq.debit_attribution (
11964                                 id,
11965                                 fund_debit,
11966                                 debit_amount,
11967                                 funding_source_credit,
11968                                 credit_amount
11969                         ) VALUES (
11970                                 attrib_count,
11971                                 deb.id,
11972                                 debit_balance,
11973                                 NULL,
11974                                 NULL
11975                         );
11976                 END IF;
11977         END LOOP;   -- End of loop over debits
11978 END;
11979 $$ LANGUAGE 'plpgsql';
11980
11981 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11982 DECLARE
11983     query TEXT;
11984     output TEXT;
11985 BEGIN
11986     query := $q$
11987         SELECT  regexp_replace(
11988                     oils_xpath_string(
11989                         $q$ || quote_literal($3) || $q$,
11990                         marc,
11991                         ' '
11992                     ),
11993                     $q$ || quote_literal($4) || $q$,
11994                     '',
11995                     'g')
11996           FROM  $q$ || $1 || $q$
11997           WHERE id = $q$ || $2;
11998
11999     EXECUTE query INTO output;
12000
12001     -- RAISE NOTICE 'query: %, output; %', query, output;
12002
12003     RETURN output;
12004 END;
12005 $$ LANGUAGE PLPGSQL IMMUTABLE;
12006
12007 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
12008     SELECT extract_marc_field($1,$2,$3,'');
12009 $$ LANGUAGE SQL IMMUTABLE;
12010
12011 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
12012 DECLARE
12013     moved_objects INT := 0;
12014     source_cn     asset.call_number%ROWTYPE;
12015     target_cn     asset.call_number%ROWTYPE;
12016     metarec       metabib.metarecord%ROWTYPE;
12017     hold          action.hold_request%ROWTYPE;
12018     ser_rec       serial.record_entry%ROWTYPE;
12019     uri_count     INT := 0;
12020     counter       INT := 0;
12021     uri_datafield TEXT;
12022     uri_text      TEXT := '';
12023 BEGIN
12024
12025     -- move any 856 entries on records that have at least one MARC-mapped URI entry
12026     SELECT  INTO uri_count COUNT(*)
12027       FROM  asset.uri_call_number_map m
12028             JOIN asset.call_number cn ON (m.call_number = cn.id)
12029       WHERE cn.record = source_record;
12030
12031     IF uri_count > 0 THEN
12032
12033         SELECT  COUNT(*) INTO counter
12034           FROM  oils_xpath_table(
12035                     'id',
12036                     'marc',
12037                     'biblio.record_entry',
12038                     '//*[@tag="856"]',
12039                     'id=' || source_record
12040                 ) as t(i int,c text);
12041
12042         FOR i IN 1 .. counter LOOP
12043             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
12044                         ' tag="856"' || 
12045                         ' ind1="' || FIRST(ind1) || '"'  || 
12046                         ' ind2="' || FIRST(ind2) || '">' || 
12047                         array_to_string(
12048                             array_accum(
12049                                 '<subfield code="' || subfield || '">' ||
12050                                 regexp_replace(
12051                                     regexp_replace(
12052                                         regexp_replace(data,'&','&amp;','g'),
12053                                         '>', '&gt;', 'g'
12054                                     ),
12055                                     '<', '&lt;', 'g'
12056                                 ) || '</subfield>'
12057                             ), ''
12058                         ) || '</datafield>' INTO uri_datafield
12059               FROM  oils_xpath_table(
12060                         'id',
12061                         'marc',
12062                         'biblio.record_entry',
12063                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
12064                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
12065                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
12066                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
12067                         'id=' || source_record
12068                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
12069
12070             uri_text := uri_text || uri_datafield;
12071         END LOOP;
12072
12073         IF uri_text <> '' THEN
12074             UPDATE  biblio.record_entry
12075               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
12076               WHERE id = target_record;
12077         END IF;
12078
12079     END IF;
12080
12081     -- Find and move metarecords to the target record
12082     SELECT  INTO metarec *
12083       FROM  metabib.metarecord
12084       WHERE master_record = source_record;
12085
12086     IF FOUND THEN
12087         UPDATE  metabib.metarecord
12088           SET   master_record = target_record,
12089             mods = NULL
12090           WHERE id = metarec.id;
12091
12092         moved_objects := moved_objects + 1;
12093     END IF;
12094
12095     -- Find call numbers attached to the source ...
12096     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
12097
12098         SELECT  INTO target_cn *
12099           FROM  asset.call_number
12100           WHERE label = source_cn.label
12101             AND owning_lib = source_cn.owning_lib
12102             AND record = target_record;
12103
12104         -- ... and if there's a conflicting one on the target ...
12105         IF FOUND THEN
12106
12107             -- ... move the copies to that, and ...
12108             UPDATE  asset.copy
12109               SET   call_number = target_cn.id
12110               WHERE call_number = source_cn.id;
12111
12112             -- ... move V holds to the move-target call number
12113             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
12114
12115                 UPDATE  action.hold_request
12116                   SET   target = target_cn.id
12117                   WHERE id = hold.id;
12118
12119                 moved_objects := moved_objects + 1;
12120             END LOOP;
12121
12122         -- ... if not ...
12123         ELSE
12124             -- ... just move the call number to the target record
12125             UPDATE  asset.call_number
12126               SET   record = target_record
12127               WHERE id = source_cn.id;
12128         END IF;
12129
12130         moved_objects := moved_objects + 1;
12131     END LOOP;
12132
12133     -- Find T holds targeting the source record ...
12134     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
12135
12136         -- ... and move them to the target record
12137         UPDATE  action.hold_request
12138           SET   target = target_record
12139           WHERE id = hold.id;
12140
12141         moved_objects := moved_objects + 1;
12142     END LOOP;
12143
12144     -- Find serial records targeting the source record ...
12145     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
12146         -- ... and move them to the target record
12147         UPDATE  serial.record_entry
12148           SET   record = target_record
12149           WHERE id = ser_rec.id;
12150
12151         moved_objects := moved_objects + 1;
12152     END LOOP;
12153
12154     -- Finally, "delete" the source record
12155     DELETE FROM biblio.record_entry WHERE id = source_record;
12156
12157     -- That's all, folks!
12158     RETURN moved_objects;
12159 END;
12160 $func$ LANGUAGE plpgsql;
12161
12162 CREATE OR REPLACE FUNCTION acq.transfer_fund(
12163         old_fund   IN INT,
12164         old_amount IN NUMERIC,     -- in currency of old fund
12165         new_fund   IN INT,
12166         new_amount IN NUMERIC,     -- in currency of new fund
12167         user_id    IN INT,
12168         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
12169         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
12170 ) RETURNS VOID AS $$
12171 /* -------------------------------------------------------------------------------
12172
12173 Function to transfer money from one fund to another.
12174
12175 A transfer is represented as a pair of entries in acq.fund_allocation, with a
12176 negative amount for the old (losing) fund and a positive amount for the new
12177 (gaining) fund.  In some cases there may be more than one such pair of entries
12178 in order to pull the money from different funding sources, or more specifically
12179 from different funding source credits.  For each such pair there is also an
12180 entry in acq.fund_transfer.
12181
12182 Since funding_source is a non-nullable column in acq.fund_allocation, we must
12183 choose a funding source for the transferred money to come from.  This choice
12184 must meet two constraints, so far as possible:
12185
12186 1. The amount transferred from a given funding source must not exceed the
12187 amount allocated to the old fund by the funding source.  To that end we
12188 compare the amount being transferred to the amount allocated.
12189
12190 2. We shouldn't transfer money that has already been spent or encumbered, as
12191 defined by the funding attribution process.  We attribute expenses to the
12192 oldest funding source credits first.  In order to avoid transferring that
12193 attributed money, we reverse the priority, transferring from the newest funding
12194 source credits first.  There can be no guarantee that this approach will
12195 avoid overcommitting a fund, but no other approach can do any better.
12196
12197 In this context the age of a funding source credit is defined by the
12198 deadline_date for credits with deadline_dates, and by the effective_date for
12199 credits without deadline_dates, with the proviso that credits with deadline_dates
12200 are all considered "older" than those without.
12201
12202 ----------
12203
12204 In the signature for this function, there is one last parameter commented out,
12205 named "funding_source_in".  Correspondingly, the WHERE clause for the query
12206 driving the main loop has an OR clause commented out, which references the
12207 funding_source_in parameter.
12208
12209 If these lines are uncommented, this function will allow the user optionally to
12210 restrict a fund transfer to a specified funding source.  If the source
12211 parameter is left NULL, then there will be no such restriction.
12212
12213 ------------------------------------------------------------------------------- */ 
12214 DECLARE
12215         same_currency      BOOLEAN;
12216         currency_ratio     NUMERIC;
12217         old_fund_currency  TEXT;
12218         old_remaining      NUMERIC;  -- in currency of old fund
12219         new_fund_currency  TEXT;
12220         new_fund_active    BOOLEAN;
12221         new_remaining      NUMERIC;  -- in currency of new fund
12222         curr_old_amt       NUMERIC;  -- in currency of old fund
12223         curr_new_amt       NUMERIC;  -- in currency of new fund
12224         source_addition    NUMERIC;  -- in currency of funding source
12225         source_deduction   NUMERIC;  -- in currency of funding source
12226         orig_allocated_amt NUMERIC;  -- in currency of funding source
12227         allocated_amt      NUMERIC;  -- in currency of fund
12228         source             RECORD;
12229 BEGIN
12230         --
12231         -- Sanity checks
12232         --
12233         IF old_fund IS NULL THEN
12234                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
12235         END IF;
12236         --
12237         IF old_amount IS NULL THEN
12238                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
12239         END IF;
12240         --
12241         -- The new fund and its amount must be both NULL or both not NULL.
12242         --
12243         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
12244                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
12245         END IF;
12246         --
12247         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
12248                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
12249         END IF;
12250         --
12251         IF user_id IS NULL THEN
12252                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
12253         END IF;
12254         --
12255         -- Initialize the amounts to be transferred, each denominated
12256         -- in the currency of its respective fund.  They will be
12257         -- reduced on each iteration of the loop.
12258         --
12259         old_remaining := old_amount;
12260         new_remaining := new_amount;
12261         --
12262         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
12263         --      old_amount, old_fund, new_amount, new_fund;
12264         --
12265         -- Get the currency types of the old and new funds.
12266         --
12267         SELECT
12268                 currency_type
12269         INTO
12270                 old_fund_currency
12271         FROM
12272                 acq.fund
12273         WHERE
12274                 id = old_fund;
12275         --
12276         IF old_fund_currency IS NULL THEN
12277                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
12278         END IF;
12279         --
12280         IF new_fund IS NOT NULL THEN
12281                 SELECT
12282                         currency_type,
12283                         active
12284                 INTO
12285                         new_fund_currency,
12286                         new_fund_active
12287                 FROM
12288                         acq.fund
12289                 WHERE
12290                         id = new_fund;
12291                 --
12292                 IF new_fund_currency IS NULL THEN
12293                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
12294                 ELSIF NOT new_fund_active THEN
12295                         --
12296                         -- No point in putting money into a fund from whence you can't spend it
12297                         --
12298                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
12299                 END IF;
12300                 --
12301                 IF new_amount = old_amount THEN
12302                         same_currency := true;
12303                         currency_ratio := 1;
12304                 ELSE
12305                         --
12306                         -- We'll have to translate currency between funds.  We presume that
12307                         -- the calling code has already applied an appropriate exchange rate,
12308                         -- so we'll apply the same conversion to each sub-transfer.
12309                         --
12310                         same_currency := false;
12311                         currency_ratio := new_amount / old_amount;
12312                 END IF;
12313         END IF;
12314         --
12315         -- Identify the funding source(s) from which we want to transfer the money.
12316         -- The principle is that we want to transfer the newest money first, because
12317         -- we spend the oldest money first.  The priority for spending is defined
12318         -- by a sort of the view acq.ordered_funding_source_credit.
12319         --
12320         FOR source in
12321                 SELECT
12322                         ofsc.id,
12323                         ofsc.funding_source,
12324                         ofsc.amount,
12325                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
12326                                 AS converted_amt,
12327                         fs.currency_type
12328                 FROM
12329                         acq.ordered_funding_source_credit AS ofsc,
12330                         acq.funding_source fs
12331                 WHERE
12332                         ofsc.funding_source = fs.id
12333                         and ofsc.funding_source IN
12334                         (
12335                                 SELECT funding_source
12336                                 FROM acq.fund_allocation
12337                                 WHERE fund = old_fund
12338                         )
12339                         -- and
12340                         -- (
12341                         --      ofsc.funding_source = funding_source_in
12342                         --      OR funding_source_in IS NULL
12343                         -- )
12344                 ORDER BY
12345                         ofsc.sort_priority desc,
12346                         ofsc.sort_date desc,
12347                         ofsc.id desc
12348         LOOP
12349                 --
12350                 -- Determine how much money the old fund got from this funding source,
12351                 -- denominated in the currency types of the source and of the fund.
12352                 -- This result may reflect transfers from previous iterations.
12353                 --
12354                 SELECT
12355                         COALESCE( sum( amount ), 0 ),
12356                         COALESCE( sum( amount )
12357                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
12358                 INTO
12359                         orig_allocated_amt,     -- in currency of the source
12360                         allocated_amt           -- in currency of the old fund
12361                 FROM
12362                         acq.fund_allocation
12363                 WHERE
12364                         fund = old_fund
12365                         and funding_source = source.funding_source;
12366                 --      
12367                 -- Determine how much to transfer from this credit, in the currency
12368                 -- of the fund.   Begin with the amount remaining to be attributed:
12369                 --
12370                 curr_old_amt := old_remaining;
12371                 --
12372                 -- Can't attribute more than was allocated from the fund:
12373                 --
12374                 IF curr_old_amt > allocated_amt THEN
12375                         curr_old_amt := allocated_amt;
12376                 END IF;
12377                 --
12378                 -- Can't attribute more than the amount of the current credit:
12379                 --
12380                 IF curr_old_amt > source.converted_amt THEN
12381                         curr_old_amt := source.converted_amt;
12382                 END IF;
12383                 --
12384                 curr_old_amt := trunc( curr_old_amt, 2 );
12385                 --
12386                 old_remaining := old_remaining - curr_old_amt;
12387                 --
12388                 -- Determine the amount to be deducted, if any,
12389                 -- from the old allocation.
12390                 --
12391                 IF old_remaining > 0 THEN
12392                         --
12393                         -- In this case we're using the whole allocation, so use that
12394                         -- amount directly instead of applying a currency translation
12395                         -- and thereby inviting round-off errors.
12396                         --
12397                         source_deduction := - orig_allocated_amt;
12398                 ELSE 
12399                         source_deduction := trunc(
12400                                 ( - curr_old_amt ) *
12401                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
12402                                 2 );
12403                 END IF;
12404                 --
12405                 IF source_deduction <> 0 THEN
12406                         --
12407                         -- Insert negative allocation for old fund in fund_allocation,
12408                         -- converted into the currency of the funding source
12409                         --
12410                         INSERT INTO acq.fund_allocation (
12411                                 funding_source,
12412                                 fund,
12413                                 amount,
12414                                 allocator,
12415                                 note
12416                         ) VALUES (
12417                                 source.funding_source,
12418                                 old_fund,
12419                                 source_deduction,
12420                                 user_id,
12421                                 'Transfer to fund ' || new_fund
12422                         );
12423                 END IF;
12424                 --
12425                 IF new_fund IS NOT NULL THEN
12426                         --
12427                         -- Determine how much to add to the new fund, in
12428                         -- its currency, and how much remains to be added:
12429                         --
12430                         IF same_currency THEN
12431                                 curr_new_amt := curr_old_amt;
12432                         ELSE
12433                                 IF old_remaining = 0 THEN
12434                                         --
12435                                         -- This is the last iteration, so nothing should be left
12436                                         --
12437                                         curr_new_amt := new_remaining;
12438                                         new_remaining := 0;
12439                                 ELSE
12440                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
12441                                         new_remaining := new_remaining - curr_new_amt;
12442                                 END IF;
12443                         END IF;
12444                         --
12445                         -- Determine how much to add, if any,
12446                         -- to the new fund's allocation.
12447                         --
12448                         IF old_remaining > 0 THEN
12449                                 --
12450                                 -- In this case we're using the whole allocation, so use that amount
12451                                 -- amount directly instead of applying a currency translation and
12452                                 -- thereby inviting round-off errors.
12453                                 --
12454                                 source_addition := orig_allocated_amt;
12455                         ELSIF source.currency_type = old_fund_currency THEN
12456                                 --
12457                                 -- In this case we don't need a round trip currency translation,
12458                                 -- thereby inviting round-off errors:
12459                                 --
12460                                 source_addition := curr_old_amt;
12461                         ELSE 
12462                                 source_addition := trunc(
12463                                         curr_new_amt *
12464                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
12465                                         2 );
12466                         END IF;
12467                         --
12468                         IF source_addition <> 0 THEN
12469                                 --
12470                                 -- Insert positive allocation for new fund in fund_allocation,
12471                                 -- converted to the currency of the founding source
12472                                 --
12473                                 INSERT INTO acq.fund_allocation (
12474                                         funding_source,
12475                                         fund,
12476                                         amount,
12477                                         allocator,
12478                                         note
12479                                 ) VALUES (
12480                                         source.funding_source,
12481                                         new_fund,
12482                                         source_addition,
12483                                         user_id,
12484                                         'Transfer from fund ' || old_fund
12485                                 );
12486                         END IF;
12487                 END IF;
12488                 --
12489                 IF trunc( curr_old_amt, 2 ) <> 0
12490                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12491                         --
12492                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12493                         --
12494                         INSERT INTO acq.fund_transfer (
12495                                 src_fund,
12496                                 src_amount,
12497                                 dest_fund,
12498                                 dest_amount,
12499                                 transfer_user,
12500                                 note,
12501                                 funding_source_credit
12502                         ) VALUES (
12503                                 old_fund,
12504                                 trunc( curr_old_amt, 2 ),
12505                                 new_fund,
12506                                 trunc( curr_new_amt, 2 ),
12507                                 user_id,
12508                                 xfer_note,
12509                                 source.id
12510                         );
12511                 END IF;
12512                 --
12513                 if old_remaining <= 0 THEN
12514                         EXIT;                   -- Nothing more to be transferred
12515                 END IF;
12516         END LOOP;
12517 END;
12518 $$ LANGUAGE plpgsql;
12519
12520 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12521         old_year INTEGER,
12522         user_id INTEGER,
12523         org_unit_id INTEGER
12524 ) RETURNS VOID AS $$
12525 DECLARE
12526 --
12527 new_id      INT;
12528 old_fund    RECORD;
12529 org_found   BOOLEAN;
12530 --
12531 BEGIN
12532         --
12533         -- Sanity checks
12534         --
12535         IF old_year IS NULL THEN
12536                 RAISE EXCEPTION 'Input year argument is NULL';
12537         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12538                 RAISE EXCEPTION 'Input year is out of range';
12539         END IF;
12540         --
12541         IF user_id IS NULL THEN
12542                 RAISE EXCEPTION 'Input user id argument is NULL';
12543         END IF;
12544         --
12545         IF org_unit_id IS NULL THEN
12546                 RAISE EXCEPTION 'Org unit id argument is NULL';
12547         ELSE
12548                 SELECT TRUE INTO org_found
12549                 FROM actor.org_unit
12550                 WHERE id = org_unit_id;
12551                 --
12552                 IF org_found IS NULL THEN
12553                         RAISE EXCEPTION 'Org unit id is invalid';
12554                 END IF;
12555         END IF;
12556         --
12557         -- Loop over the applicable funds
12558         --
12559         FOR old_fund in SELECT * FROM acq.fund
12560         WHERE
12561                 year = old_year
12562                 AND propagate
12563                 AND org = org_unit_id
12564         LOOP
12565                 BEGIN
12566                         INSERT INTO acq.fund (
12567                                 org,
12568                                 name,
12569                                 year,
12570                                 currency_type,
12571                                 code,
12572                                 rollover,
12573                                 propagate,
12574                                 balance_warning_percent,
12575                                 balance_stop_percent
12576                         ) VALUES (
12577                                 old_fund.org,
12578                                 old_fund.name,
12579                                 old_year + 1,
12580                                 old_fund.currency_type,
12581                                 old_fund.code,
12582                                 old_fund.rollover,
12583                                 true,
12584                                 old_fund.balance_warning_percent,
12585                                 old_fund.balance_stop_percent
12586                         )
12587                         RETURNING id INTO new_id;
12588                 EXCEPTION
12589                         WHEN unique_violation THEN
12590                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12591                                 CONTINUE;
12592                 END;
12593                 --RAISE NOTICE 'Propagating fund % to fund %',
12594                 --      old_fund.code, new_id;
12595         END LOOP;
12596 END;
12597 $$ LANGUAGE plpgsql;
12598
12599 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12600         old_year INTEGER,
12601         user_id INTEGER,
12602         org_unit_id INTEGER
12603 ) RETURNS VOID AS $$
12604 DECLARE
12605 --
12606 new_id      INT;
12607 old_fund    RECORD;
12608 org_found   BOOLEAN;
12609 --
12610 BEGIN
12611         --
12612         -- Sanity checks
12613         --
12614         IF old_year IS NULL THEN
12615                 RAISE EXCEPTION 'Input year argument is NULL';
12616         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12617                 RAISE EXCEPTION 'Input year is out of range';
12618         END IF;
12619         --
12620         IF user_id IS NULL THEN
12621                 RAISE EXCEPTION 'Input user id argument is NULL';
12622         END IF;
12623         --
12624         IF org_unit_id IS NULL THEN
12625                 RAISE EXCEPTION 'Org unit id argument is NULL';
12626         ELSE
12627                 SELECT TRUE INTO org_found
12628                 FROM actor.org_unit
12629                 WHERE id = org_unit_id;
12630                 --
12631                 IF org_found IS NULL THEN
12632                         RAISE EXCEPTION 'Org unit id is invalid';
12633                 END IF;
12634         END IF;
12635         --
12636         -- Loop over the applicable funds
12637         --
12638         FOR old_fund in SELECT * FROM acq.fund
12639         WHERE
12640                 year = old_year
12641                 AND propagate
12642                 AND org in (
12643                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12644                 )
12645         LOOP
12646                 BEGIN
12647                         INSERT INTO acq.fund (
12648                                 org,
12649                                 name,
12650                                 year,
12651                                 currency_type,
12652                                 code,
12653                                 rollover,
12654                                 propagate,
12655                                 balance_warning_percent,
12656                                 balance_stop_percent
12657                         ) VALUES (
12658                                 old_fund.org,
12659                                 old_fund.name,
12660                                 old_year + 1,
12661                                 old_fund.currency_type,
12662                                 old_fund.code,
12663                                 old_fund.rollover,
12664                                 true,
12665                                 old_fund.balance_warning_percent,
12666                                 old_fund.balance_stop_percent
12667                         )
12668                         RETURNING id INTO new_id;
12669                 EXCEPTION
12670                         WHEN unique_violation THEN
12671                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12672                                 CONTINUE;
12673                 END;
12674                 --RAISE NOTICE 'Propagating fund % to fund %',
12675                 --      old_fund.code, new_id;
12676         END LOOP;
12677 END;
12678 $$ LANGUAGE plpgsql;
12679
12680 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12681         old_year INTEGER,
12682         user_id INTEGER,
12683         org_unit_id INTEGER
12684 ) RETURNS VOID AS $$
12685 DECLARE
12686 --
12687 new_fund    INT;
12688 new_year    INT := old_year + 1;
12689 org_found   BOOL;
12690 xfer_amount NUMERIC;
12691 roll_fund   RECORD;
12692 deb         RECORD;
12693 detail      RECORD;
12694 --
12695 BEGIN
12696         --
12697         -- Sanity checks
12698         --
12699         IF old_year IS NULL THEN
12700                 RAISE EXCEPTION 'Input year argument is NULL';
12701     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12702         RAISE EXCEPTION 'Input year is out of range';
12703         END IF;
12704         --
12705         IF user_id IS NULL THEN
12706                 RAISE EXCEPTION 'Input user id argument is NULL';
12707         END IF;
12708         --
12709         IF org_unit_id IS NULL THEN
12710                 RAISE EXCEPTION 'Org unit id argument is NULL';
12711         ELSE
12712                 --
12713                 -- Validate the org unit
12714                 --
12715                 SELECT TRUE
12716                 INTO org_found
12717                 FROM actor.org_unit
12718                 WHERE id = org_unit_id;
12719                 --
12720                 IF org_found IS NULL THEN
12721                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12722                 END IF;
12723         END IF;
12724         --
12725         -- Loop over the propagable funds to identify the details
12726         -- from the old fund plus the id of the new one, if it exists.
12727         --
12728         FOR roll_fund in
12729         SELECT
12730             oldf.id AS old_fund,
12731             oldf.org,
12732             oldf.name,
12733             oldf.currency_type,
12734             oldf.code,
12735                 oldf.rollover,
12736             newf.id AS new_fund_id
12737         FROM
12738         acq.fund AS oldf
12739         LEFT JOIN acq.fund AS newf
12740                 ON ( oldf.code = newf.code )
12741         WHERE
12742                     oldf.org = org_unit_id
12743                 and oldf.year = old_year
12744                 and oldf.propagate
12745         and newf.year = new_year
12746         LOOP
12747                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12748                 --
12749                 IF roll_fund.new_fund_id IS NULL THEN
12750                         --
12751                         -- The old fund hasn't been propagated yet.  Propagate it now.
12752                         --
12753                         INSERT INTO acq.fund (
12754                                 org,
12755                                 name,
12756                                 year,
12757                                 currency_type,
12758                                 code,
12759                                 rollover,
12760                                 propagate,
12761                                 balance_warning_percent,
12762                                 balance_stop_percent
12763                         ) VALUES (
12764                                 roll_fund.org,
12765                                 roll_fund.name,
12766                                 new_year,
12767                                 roll_fund.currency_type,
12768                                 roll_fund.code,
12769                                 true,
12770                                 true,
12771                                 roll_fund.balance_warning_percent,
12772                                 roll_fund.balance_stop_percent
12773                         )
12774                         RETURNING id INTO new_fund;
12775                 ELSE
12776                         new_fund = roll_fund.new_fund_id;
12777                 END IF;
12778                 --
12779                 -- Determine the amount to transfer
12780                 --
12781                 SELECT amount
12782                 INTO xfer_amount
12783                 FROM acq.fund_spent_balance
12784                 WHERE fund = roll_fund.old_fund;
12785                 --
12786                 IF xfer_amount <> 0 THEN
12787                         IF roll_fund.rollover THEN
12788                                 --
12789                                 -- Transfer balance from old fund to new
12790                                 --
12791                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12792                                 --
12793                                 PERFORM acq.transfer_fund(
12794                                         roll_fund.old_fund,
12795                                         xfer_amount,
12796                                         new_fund,
12797                                         xfer_amount,
12798                                         user_id,
12799                                         'Rollover'
12800                                 );
12801                         ELSE
12802                                 --
12803                                 -- Transfer balance from old fund to the void
12804                                 --
12805                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12806                                 --
12807                                 PERFORM acq.transfer_fund(
12808                                         roll_fund.old_fund,
12809                                         xfer_amount,
12810                                         NULL,
12811                                         NULL,
12812                                         user_id,
12813                                         'Rollover'
12814                                 );
12815                         END IF;
12816                 END IF;
12817                 --
12818                 IF roll_fund.rollover THEN
12819                         --
12820                         -- Move any lineitems from the old fund to the new one
12821                         -- where the associated debit is an encumbrance.
12822                         --
12823                         -- Any other tables tying expenditure details to funds should
12824                         -- receive similar treatment.  At this writing there are none.
12825                         --
12826                         UPDATE acq.lineitem_detail
12827                         SET fund = new_fund
12828                         WHERE
12829                         fund = roll_fund.old_fund -- this condition may be redundant
12830                         AND fund_debit in
12831                         (
12832                                 SELECT id
12833                                 FROM acq.fund_debit
12834                                 WHERE
12835                                 fund = roll_fund.old_fund
12836                                 AND encumbrance
12837                         );
12838                         --
12839                         -- Move encumbrance debits from the old fund to the new fund
12840                         --
12841                         UPDATE acq.fund_debit
12842                         SET fund = new_fund
12843                         wHERE
12844                                 fund = roll_fund.old_fund
12845                                 AND encumbrance;
12846                 END IF;
12847                 --
12848                 -- Mark old fund as inactive, now that we've closed it
12849                 --
12850                 UPDATE acq.fund
12851                 SET active = FALSE
12852                 WHERE id = roll_fund.old_fund;
12853         END LOOP;
12854 END;
12855 $$ LANGUAGE plpgsql;
12856
12857 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12858         old_year INTEGER,
12859         user_id INTEGER,
12860         org_unit_id INTEGER
12861 ) RETURNS VOID AS $$
12862 DECLARE
12863 --
12864 new_fund    INT;
12865 new_year    INT := old_year + 1;
12866 org_found   BOOL;
12867 xfer_amount NUMERIC;
12868 roll_fund   RECORD;
12869 deb         RECORD;
12870 detail      RECORD;
12871 --
12872 BEGIN
12873         --
12874         -- Sanity checks
12875         --
12876         IF old_year IS NULL THEN
12877                 RAISE EXCEPTION 'Input year argument is NULL';
12878     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12879         RAISE EXCEPTION 'Input year is out of range';
12880         END IF;
12881         --
12882         IF user_id IS NULL THEN
12883                 RAISE EXCEPTION 'Input user id argument is NULL';
12884         END IF;
12885         --
12886         IF org_unit_id IS NULL THEN
12887                 RAISE EXCEPTION 'Org unit id argument is NULL';
12888         ELSE
12889                 --
12890                 -- Validate the org unit
12891                 --
12892                 SELECT TRUE
12893                 INTO org_found
12894                 FROM actor.org_unit
12895                 WHERE id = org_unit_id;
12896                 --
12897                 IF org_found IS NULL THEN
12898                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12899                 END IF;
12900         END IF;
12901         --
12902         -- Loop over the propagable funds to identify the details
12903         -- from the old fund plus the id of the new one, if it exists.
12904         --
12905         FOR roll_fund in
12906         SELECT
12907             oldf.id AS old_fund,
12908             oldf.org,
12909             oldf.name,
12910             oldf.currency_type,
12911             oldf.code,
12912                 oldf.rollover,
12913             newf.id AS new_fund_id
12914         FROM
12915         acq.fund AS oldf
12916         LEFT JOIN acq.fund AS newf
12917                 ON ( oldf.code = newf.code )
12918         WHERE
12919                     oldf.year = old_year
12920                 AND oldf.propagate
12921         AND newf.year = new_year
12922                 AND oldf.org in (
12923                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12924                 )
12925         LOOP
12926                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12927                 --
12928                 IF roll_fund.new_fund_id IS NULL THEN
12929                         --
12930                         -- The old fund hasn't been propagated yet.  Propagate it now.
12931                         --
12932                         INSERT INTO acq.fund (
12933                                 org,
12934                                 name,
12935                                 year,
12936                                 currency_type,
12937                                 code,
12938                                 rollover,
12939                                 propagate,
12940                                 balance_warning_percent,
12941                                 balance_stop_percent
12942                         ) VALUES (
12943                                 roll_fund.org,
12944                                 roll_fund.name,
12945                                 new_year,
12946                                 roll_fund.currency_type,
12947                                 roll_fund.code,
12948                                 true,
12949                                 true,
12950                                 roll_fund.balance_warning_percent,
12951                                 roll_fund.balance_stop_percent
12952                         )
12953                         RETURNING id INTO new_fund;
12954                 ELSE
12955                         new_fund = roll_fund.new_fund_id;
12956                 END IF;
12957                 --
12958                 -- Determine the amount to transfer
12959                 --
12960                 SELECT amount
12961                 INTO xfer_amount
12962                 FROM acq.fund_spent_balance
12963                 WHERE fund = roll_fund.old_fund;
12964                 --
12965                 IF xfer_amount <> 0 THEN
12966                         IF roll_fund.rollover THEN
12967                                 --
12968                                 -- Transfer balance from old fund to new
12969                                 --
12970                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12971                                 --
12972                                 PERFORM acq.transfer_fund(
12973                                         roll_fund.old_fund,
12974                                         xfer_amount,
12975                                         new_fund,
12976                                         xfer_amount,
12977                                         user_id,
12978                                         'Rollover'
12979                                 );
12980                         ELSE
12981                                 --
12982                                 -- Transfer balance from old fund to the void
12983                                 --
12984                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12985                                 --
12986                                 PERFORM acq.transfer_fund(
12987                                         roll_fund.old_fund,
12988                                         xfer_amount,
12989                                         NULL,
12990                                         NULL,
12991                                         user_id,
12992                                         'Rollover'
12993                                 );
12994                         END IF;
12995                 END IF;
12996                 --
12997                 IF roll_fund.rollover THEN
12998                         --
12999                         -- Move any lineitems from the old fund to the new one
13000                         -- where the associated debit is an encumbrance.
13001                         --
13002                         -- Any other tables tying expenditure details to funds should
13003                         -- receive similar treatment.  At this writing there are none.
13004                         --
13005                         UPDATE acq.lineitem_detail
13006                         SET fund = new_fund
13007                         WHERE
13008                         fund = roll_fund.old_fund -- this condition may be redundant
13009                         AND fund_debit in
13010                         (
13011                                 SELECT id
13012                                 FROM acq.fund_debit
13013                                 WHERE
13014                                 fund = roll_fund.old_fund
13015                                 AND encumbrance
13016                         );
13017                         --
13018                         -- Move encumbrance debits from the old fund to the new fund
13019                         --
13020                         UPDATE acq.fund_debit
13021                         SET fund = new_fund
13022                         wHERE
13023                                 fund = roll_fund.old_fund
13024                                 AND encumbrance;
13025                 END IF;
13026                 --
13027                 -- Mark old fund as inactive, now that we've closed it
13028                 --
13029                 UPDATE acq.fund
13030                 SET active = FALSE
13031                 WHERE id = roll_fund.old_fund;
13032         END LOOP;
13033 END;
13034 $$ LANGUAGE plpgsql;
13035
13036 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
13037     SELECT regexp_replace($1, ',', '', 'g');
13038 $$ LANGUAGE SQL STRICT IMMUTABLE;
13039
13040 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
13041     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
13042 $$ LANGUAGE SQL STRICT IMMUTABLE;
13043
13044 CREATE TABLE acq.distribution_formula_application (
13045     id BIGSERIAL PRIMARY KEY,
13046     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
13047     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
13048     formula INT NOT NULL
13049         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
13050     lineitem INT NOT NULL
13051         REFERENCES acq.lineitem( id )
13052                 ON DELETE CASCADE
13053                 DEFERRABLE INITIALLY DEFERRED
13054 );
13055
13056 CREATE INDEX acqdfa_df_idx
13057     ON acq.distribution_formula_application(formula);
13058 CREATE INDEX acqdfa_li_idx
13059     ON acq.distribution_formula_application(lineitem);
13060 CREATE INDEX acqdfa_creator_idx
13061     ON acq.distribution_formula_application(creator);
13062
13063 CREATE TABLE acq.user_request_type (
13064     id      SERIAL  PRIMARY KEY,
13065     label   TEXT    NOT NULL UNIQUE -- i18n-ize
13066 );
13067
13068 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
13069 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
13070 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
13071 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
13072 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
13073
13074 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
13075
13076 CREATE TABLE acq.cancel_reason (
13077         id            SERIAL            PRIMARY KEY,
13078         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
13079                                         DEFERRABLE INITIALLY DEFERRED,
13080         label         TEXT              NOT NULL,
13081         description   TEXT              NOT NULL,
13082         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
13083         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
13084 );
13085
13086 -- Reserve ids 1-999 for stock reasons
13087 -- Reserve ids 1000-1999 for EDI reasons
13088 -- 2000+ are available for staff to create
13089
13090 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
13091
13092 CREATE TABLE acq.user_request (
13093     id                  SERIAL  PRIMARY KEY,
13094     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
13095     hold                BOOL    NOT NULL DEFAULT TRUE,
13096
13097     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
13098     holdable_formats    TEXT,           -- nullable, for use in hold creation
13099     phone_notify        TEXT,
13100     email_notify        BOOL    NOT NULL DEFAULT TRUE,
13101     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
13102     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
13103     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
13104     need_before         TIMESTAMPTZ,    -- don't create holds after this
13105     max_fee             TEXT,
13106
13107     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
13108     isxn                TEXT,
13109     title               TEXT,
13110     volume              TEXT,
13111     author              TEXT,
13112     article_title       TEXT,
13113     article_pages       TEXT,
13114     publisher           TEXT,
13115     location            TEXT,
13116     pubdate             TEXT,
13117     mentioned           TEXT,
13118     other_info          TEXT,
13119         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
13120                                              DEFERRABLE INITIALLY DEFERRED
13121 );
13122
13123 CREATE TABLE acq.lineitem_alert_text (
13124         id               SERIAL         PRIMARY KEY,
13125         code             TEXT           NOT NULL,
13126         description      TEXT,
13127         owning_lib       INT            NOT NULL
13128                                         REFERENCES actor.org_unit(id)
13129                                         DEFERRABLE INITIALLY DEFERRED,
13130         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
13131 );
13132
13133 ALTER TABLE acq.lineitem_note
13134         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
13135                                          DEFERRABLE INITIALLY DEFERRED;
13136
13137 -- add ON DELETE CASCADE clause
13138
13139 ALTER TABLE acq.lineitem_note
13140         DROP CONSTRAINT lineitem_note_lineitem_fkey;
13141
13142 ALTER TABLE acq.lineitem_note
13143         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13144                 ON DELETE CASCADE
13145                 DEFERRABLE INITIALLY DEFERRED;
13146
13147 ALTER TABLE acq.lineitem_note
13148         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13149
13150 CREATE TABLE acq.invoice_method (
13151     code    TEXT    PRIMARY KEY,
13152     name    TEXT    NOT NULL -- i18n-ize
13153 );
13154 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
13155 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
13156
13157 CREATE TABLE acq.invoice_payment_method (
13158         code      TEXT     PRIMARY KEY,
13159         name      TEXT     NOT NULL
13160 );
13161
13162 CREATE TABLE acq.invoice (
13163     id             SERIAL      PRIMARY KEY,
13164     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
13165     provider       INT         NOT NULL REFERENCES acq.provider (id),
13166     shipper        INT         NOT NULL REFERENCES acq.provider (id),
13167     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
13168     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
13169     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
13170     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
13171         payment_auth   TEXT,
13172         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
13173                                    DEFERRABLE INITIALLY DEFERRED,
13174         note           TEXT,
13175     complete       BOOL        NOT NULL DEFAULT FALSE,
13176     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
13177 );
13178
13179 CREATE TABLE acq.invoice_entry (
13180     id              SERIAL      PRIMARY KEY,
13181     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
13182     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13183     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
13184     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
13185     phys_item_count INT, -- and how many did staff count
13186     note            TEXT,
13187     billed_per_item BOOL,
13188     cost_billed     NUMERIC(8,2),
13189     actual_cost     NUMERIC(8,2),
13190         amount_paid     NUMERIC (8,2)
13191 );
13192
13193 CREATE TABLE acq.invoice_item_type (
13194     code    TEXT    PRIMARY KEY,
13195     name    TEXT    NOT NULL, -- i18n-ize
13196         prorate BOOL    NOT NULL DEFAULT FALSE
13197 );
13198
13199 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
13200 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
13201 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
13202 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
13203 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
13204 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
13205
13206 CREATE TABLE acq.po_item (
13207         id              SERIAL      PRIMARY KEY,
13208         purchase_order  INT         REFERENCES acq.purchase_order (id)
13209                                     ON UPDATE CASCADE ON DELETE SET NULL
13210                                     DEFERRABLE INITIALLY DEFERRED,
13211         fund_debit      INT         REFERENCES acq.fund_debit (id)
13212                                     DEFERRABLE INITIALLY DEFERRED,
13213         inv_item_type   TEXT        NOT NULL
13214                                     REFERENCES acq.invoice_item_type (code)
13215                                     DEFERRABLE INITIALLY DEFERRED,
13216         title           TEXT,
13217         author          TEXT,
13218         note            TEXT,
13219         estimated_cost  NUMERIC(8,2),
13220         fund            INT         REFERENCES acq.fund (id)
13221                                     DEFERRABLE INITIALLY DEFERRED,
13222         target          BIGINT
13223 );
13224
13225 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
13226     id              SERIAL      PRIMARY KEY,
13227     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
13228     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13229     fund_debit      INT         REFERENCES acq.fund_debit (id),
13230     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
13231     title           TEXT,
13232     author          TEXT,
13233     note            TEXT,
13234     cost_billed     NUMERIC(8,2),
13235     actual_cost     NUMERIC(8,2),
13236     fund            INT         REFERENCES acq.fund (id)
13237                                 DEFERRABLE INITIALLY DEFERRED,
13238     amount_paid     NUMERIC (8,2),
13239     po_item         INT         REFERENCES acq.po_item (id)
13240                                 DEFERRABLE INITIALLY DEFERRED,
13241     target          BIGINT
13242 );
13243
13244 CREATE TABLE acq.edi_message (
13245     id               SERIAL          PRIMARY KEY,
13246     account          INTEGER         REFERENCES acq.edi_account(id)
13247                                      DEFERRABLE INITIALLY DEFERRED,
13248     remote_file      TEXT,
13249     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
13250     translate_time   TIMESTAMPTZ,
13251     process_time     TIMESTAMPTZ,
13252     error_time       TIMESTAMPTZ,
13253     status           TEXT            NOT NULL DEFAULT 'new'
13254                                      CONSTRAINT status_value CHECK
13255                                      ( status IN (
13256                                         'new',          -- needs to be translated
13257                                         'translated',   -- needs to be processed
13258                                         'trans_error',  -- error in translation step
13259                                         'processed',    -- needs to have remote_file deleted
13260                                         'proc_error',   -- error in processing step
13261                                         'delete_error', -- error in deletion
13262                                         'retry',        -- need to retry
13263                                         'complete'      -- done
13264                                      )),
13265     edi              TEXT,
13266     jedi             TEXT,
13267     error            TEXT,
13268     purchase_order   INT             REFERENCES acq.purchase_order
13269                                      DEFERRABLE INITIALLY DEFERRED,
13270     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
13271                                      CHECK ( message_type IN (
13272                                         'ORDERS',
13273                                         'ORDRSP',
13274                                         'INVOIC',
13275                                         'OSTENQ',
13276                                         'OSTRPT'
13277                                      ))
13278 );
13279
13280 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
13281
13282 ALTER TABLE acq.provider_address
13283         ADD COLUMN fax_phone TEXT;
13284
13285 ALTER TABLE acq.provider_contact_address
13286         ADD COLUMN fax_phone TEXT;
13287
13288 CREATE TABLE acq.provider_note (
13289     id      SERIAL              PRIMARY KEY,
13290     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
13291     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13292     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13293     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13294     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13295     value       TEXT            NOT NULL
13296 );
13297 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
13298 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
13299 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
13300
13301 -- For each fund: the total allocation from all sources, in the
13302 -- currency of the fund (or 0 if there are no allocations)
13303
13304 CREATE VIEW acq.all_fund_allocation_total AS
13305 SELECT
13306     f.id AS fund,
13307     COALESCE( SUM( a.amount * acq.exchange_ratio(
13308         s.currency_type, f.currency_type))::numeric(100,2), 0 )
13309     AS amount
13310 FROM
13311     acq.fund f
13312         LEFT JOIN acq.fund_allocation a
13313             ON a.fund = f.id
13314         LEFT JOIN acq.funding_source s
13315             ON a.funding_source = s.id
13316 GROUP BY
13317     f.id;
13318
13319 -- For every fund: the total encumbrances (or 0 if none),
13320 -- in the currency of the fund.
13321
13322 CREATE VIEW acq.all_fund_encumbrance_total AS
13323 SELECT
13324         f.id AS fund,
13325         COALESCE( encumb.amount, 0 ) AS amount
13326 FROM
13327         acq.fund AS f
13328                 LEFT JOIN (
13329                         SELECT
13330                                 fund,
13331                                 sum( amount ) AS amount
13332                         FROM
13333                                 acq.fund_debit
13334                         WHERE
13335                                 encumbrance
13336                         GROUP BY fund
13337                 ) AS encumb
13338                         ON f.id = encumb.fund;
13339
13340 -- For every fund: the total spent (or 0 if none),
13341 -- in the currency of the fund.
13342
13343 CREATE VIEW acq.all_fund_spent_total AS
13344 SELECT
13345     f.id AS fund,
13346     COALESCE( spent.amount, 0 ) AS amount
13347 FROM
13348     acq.fund AS f
13349         LEFT JOIN (
13350             SELECT
13351                 fund,
13352                 sum( amount ) AS amount
13353             FROM
13354                 acq.fund_debit
13355             WHERE
13356                 NOT encumbrance
13357             GROUP BY fund
13358         ) AS spent
13359             ON f.id = spent.fund;
13360
13361 -- For each fund: the amount not yet spent, in the currency
13362 -- of the fund.  May include encumbrances.
13363
13364 CREATE VIEW acq.all_fund_spent_balance AS
13365 SELECT
13366         c.fund,
13367         c.amount - d.amount AS amount
13368 FROM acq.all_fund_allocation_total c
13369     LEFT JOIN acq.all_fund_spent_total d USING (fund);
13370
13371 -- For each fund: the amount neither spent nor encumbered,
13372 -- in the currency of the fund
13373
13374 CREATE VIEW acq.all_fund_combined_balance AS
13375 SELECT
13376      a.fund,
13377      a.amount - COALESCE( c.amount, 0 ) AS amount
13378 FROM
13379      acq.all_fund_allocation_total a
13380         LEFT OUTER JOIN (
13381             SELECT
13382                 fund,
13383                 SUM( amount ) AS amount
13384             FROM
13385                 acq.fund_debit
13386             GROUP BY
13387                 fund
13388         ) AS c USING ( fund );
13389
13390 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 $$
13391 DECLARE
13392         suffix TEXT;
13393         bucket_row RECORD;
13394         picklist_row RECORD;
13395         queue_row RECORD;
13396         folder_row RECORD;
13397 BEGIN
13398
13399     -- do some initial cleanup 
13400     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
13401     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
13402     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
13403
13404     -- actor.*
13405     IF del_cards THEN
13406         DELETE FROM actor.card where usr = src_usr;
13407     ELSE
13408         IF deactivate_cards THEN
13409             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
13410         END IF;
13411         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
13412     END IF;
13413
13414
13415     IF del_addrs THEN
13416         DELETE FROM actor.usr_address WHERE usr = src_usr;
13417     ELSE
13418         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
13419     END IF;
13420
13421     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
13422     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
13423     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
13424     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
13425     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
13426
13427     -- permission.*
13428     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
13429     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
13430     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
13431     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
13432
13433
13434     -- container.*
13435         
13436         -- For each *_bucket table: transfer every bucket belonging to src_usr
13437         -- into the custody of dest_usr.
13438         --
13439         -- In order to avoid colliding with an existing bucket owned by
13440         -- the destination user, append the source user's id (in parenthesese)
13441         -- to the name.  If you still get a collision, add successive
13442         -- spaces to the name and keep trying until you succeed.
13443         --
13444         FOR bucket_row in
13445                 SELECT id, name
13446                 FROM   container.biblio_record_entry_bucket
13447                 WHERE  owner = src_usr
13448         LOOP
13449                 suffix := ' (' || src_usr || ')';
13450                 LOOP
13451                         BEGIN
13452                                 UPDATE  container.biblio_record_entry_bucket
13453                                 SET     owner = dest_usr, name = name || suffix
13454                                 WHERE   id = bucket_row.id;
13455                         EXCEPTION WHEN unique_violation THEN
13456                                 suffix := suffix || ' ';
13457                                 CONTINUE;
13458                         END;
13459                         EXIT;
13460                 END LOOP;
13461         END LOOP;
13462
13463         FOR bucket_row in
13464                 SELECT id, name
13465                 FROM   container.call_number_bucket
13466                 WHERE  owner = src_usr
13467         LOOP
13468                 suffix := ' (' || src_usr || ')';
13469                 LOOP
13470                         BEGIN
13471                                 UPDATE  container.call_number_bucket
13472                                 SET     owner = dest_usr, name = name || suffix
13473                                 WHERE   id = bucket_row.id;
13474                         EXCEPTION WHEN unique_violation THEN
13475                                 suffix := suffix || ' ';
13476                                 CONTINUE;
13477                         END;
13478                         EXIT;
13479                 END LOOP;
13480         END LOOP;
13481
13482         FOR bucket_row in
13483                 SELECT id, name
13484                 FROM   container.copy_bucket
13485                 WHERE  owner = src_usr
13486         LOOP
13487                 suffix := ' (' || src_usr || ')';
13488                 LOOP
13489                         BEGIN
13490                                 UPDATE  container.copy_bucket
13491                                 SET     owner = dest_usr, name = name || suffix
13492                                 WHERE   id = bucket_row.id;
13493                         EXCEPTION WHEN unique_violation THEN
13494                                 suffix := suffix || ' ';
13495                                 CONTINUE;
13496                         END;
13497                         EXIT;
13498                 END LOOP;
13499         END LOOP;
13500
13501         FOR bucket_row in
13502                 SELECT id, name
13503                 FROM   container.user_bucket
13504                 WHERE  owner = src_usr
13505         LOOP
13506                 suffix := ' (' || src_usr || ')';
13507                 LOOP
13508                         BEGIN
13509                                 UPDATE  container.user_bucket
13510                                 SET     owner = dest_usr, name = name || suffix
13511                                 WHERE   id = bucket_row.id;
13512                         EXCEPTION WHEN unique_violation THEN
13513                                 suffix := suffix || ' ';
13514                                 CONTINUE;
13515                         END;
13516                         EXIT;
13517                 END LOOP;
13518         END LOOP;
13519
13520         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13521
13522     -- vandelay.*
13523         -- transfer queues the same way we transfer buckets (see above)
13524         FOR queue_row in
13525                 SELECT id, name
13526                 FROM   vandelay.queue
13527                 WHERE  owner = src_usr
13528         LOOP
13529                 suffix := ' (' || src_usr || ')';
13530                 LOOP
13531                         BEGIN
13532                                 UPDATE  vandelay.queue
13533                                 SET     owner = dest_usr, name = name || suffix
13534                                 WHERE   id = queue_row.id;
13535                         EXCEPTION WHEN unique_violation THEN
13536                                 suffix := suffix || ' ';
13537                                 CONTINUE;
13538                         END;
13539                         EXIT;
13540                 END LOOP;
13541         END LOOP;
13542
13543     -- money.*
13544     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13545     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13546     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13547     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13548     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13549
13550     -- action.*
13551     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13552     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13553     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13554
13555     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13556     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13557     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13558     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13559
13560     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13561     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13562     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13563     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13564     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13565
13566     -- acq.*
13567     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13568         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13569
13570         -- transfer picklists the same way we transfer buckets (see above)
13571         FOR picklist_row in
13572                 SELECT id, name
13573                 FROM   acq.picklist
13574                 WHERE  owner = src_usr
13575         LOOP
13576                 suffix := ' (' || src_usr || ')';
13577                 LOOP
13578                         BEGIN
13579                                 UPDATE  acq.picklist
13580                                 SET     owner = dest_usr, name = name || suffix
13581                                 WHERE   id = picklist_row.id;
13582                         EXCEPTION WHEN unique_violation THEN
13583                                 suffix := suffix || ' ';
13584                                 CONTINUE;
13585                         END;
13586                         EXIT;
13587                 END LOOP;
13588         END LOOP;
13589
13590     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13591     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13592     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13593     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13594     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13595     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13596     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13597     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13598
13599     -- asset.*
13600     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13601     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13602     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13603     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13604     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13605     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13606
13607     -- serial.*
13608     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13609     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13610
13611     -- reporter.*
13612     -- It's not uncommon to define the reporter schema in a replica 
13613     -- DB only, so don't assume these tables exist in the write DB.
13614     BEGIN
13615         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13616     EXCEPTION WHEN undefined_table THEN
13617         -- do nothing
13618     END;
13619     BEGIN
13620         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13621     EXCEPTION WHEN undefined_table THEN
13622         -- do nothing
13623     END;
13624     BEGIN
13625         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13626     EXCEPTION WHEN undefined_table THEN
13627         -- do nothing
13628     END;
13629     BEGIN
13630                 -- transfer folders the same way we transfer buckets (see above)
13631                 FOR folder_row in
13632                         SELECT id, name
13633                         FROM   reporter.template_folder
13634                         WHERE  owner = src_usr
13635                 LOOP
13636                         suffix := ' (' || src_usr || ')';
13637                         LOOP
13638                                 BEGIN
13639                                         UPDATE  reporter.template_folder
13640                                         SET     owner = dest_usr, name = name || suffix
13641                                         WHERE   id = folder_row.id;
13642                                 EXCEPTION WHEN unique_violation THEN
13643                                         suffix := suffix || ' ';
13644                                         CONTINUE;
13645                                 END;
13646                                 EXIT;
13647                         END LOOP;
13648                 END LOOP;
13649     EXCEPTION WHEN undefined_table THEN
13650         -- do nothing
13651     END;
13652     BEGIN
13653                 -- transfer folders the same way we transfer buckets (see above)
13654                 FOR folder_row in
13655                         SELECT id, name
13656                         FROM   reporter.report_folder
13657                         WHERE  owner = src_usr
13658                 LOOP
13659                         suffix := ' (' || src_usr || ')';
13660                         LOOP
13661                                 BEGIN
13662                                         UPDATE  reporter.report_folder
13663                                         SET     owner = dest_usr, name = name || suffix
13664                                         WHERE   id = folder_row.id;
13665                                 EXCEPTION WHEN unique_violation THEN
13666                                         suffix := suffix || ' ';
13667                                         CONTINUE;
13668                                 END;
13669                                 EXIT;
13670                         END LOOP;
13671                 END LOOP;
13672     EXCEPTION WHEN undefined_table THEN
13673         -- do nothing
13674     END;
13675     BEGIN
13676                 -- transfer folders the same way we transfer buckets (see above)
13677                 FOR folder_row in
13678                         SELECT id, name
13679                         FROM   reporter.output_folder
13680                         WHERE  owner = src_usr
13681                 LOOP
13682                         suffix := ' (' || src_usr || ')';
13683                         LOOP
13684                                 BEGIN
13685                                         UPDATE  reporter.output_folder
13686                                         SET     owner = dest_usr, name = name || suffix
13687                                         WHERE   id = folder_row.id;
13688                                 EXCEPTION WHEN unique_violation THEN
13689                                         suffix := suffix || ' ';
13690                                         CONTINUE;
13691                                 END;
13692                                 EXIT;
13693                         END LOOP;
13694                 END LOOP;
13695     EXCEPTION WHEN undefined_table THEN
13696         -- do nothing
13697     END;
13698
13699     -- Finally, delete the source user
13700     DELETE FROM actor.usr WHERE id = src_usr;
13701
13702 END;
13703 $$ LANGUAGE plpgsql;
13704
13705 -- The "add" trigger functions should protect against existing NULLed values, just in case
13706 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13707 BEGIN
13708     IF NOT NEW.voided THEN
13709         UPDATE  money.materialized_billable_xact_summary
13710           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13711             last_billing_ts = NEW.billing_ts,
13712             last_billing_note = NEW.note,
13713             last_billing_type = NEW.billing_type,
13714             balance_owed = balance_owed + NEW.amount
13715           WHERE id = NEW.xact;
13716     END IF;
13717
13718     RETURN NEW;
13719 END;
13720 $$ LANGUAGE PLPGSQL;
13721
13722 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13723 BEGIN
13724     IF NOT NEW.voided THEN
13725         UPDATE  money.materialized_billable_xact_summary
13726           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13727             last_payment_ts = NEW.payment_ts,
13728             last_payment_note = NEW.note,
13729             last_payment_type = TG_ARGV[0],
13730             balance_owed = balance_owed - NEW.amount
13731           WHERE id = NEW.xact;
13732     END IF;
13733
13734     RETURN NEW;
13735 END;
13736 $$ LANGUAGE PLPGSQL;
13737
13738 -- Refresh the mat view with the corrected underlying view
13739 TRUNCATE money.materialized_billable_xact_summary;
13740 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13741
13742 -- Now redefine the view as a window onto the materialized view
13743 CREATE OR REPLACE VIEW money.billable_xact_summary AS
13744     SELECT * FROM money.materialized_billable_xact_summary;
13745
13746 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13747     user_id    IN INTEGER,
13748     perm_code  IN TEXT
13749 )
13750 RETURNS SETOF INTEGER AS $$
13751 --
13752 -- Return a set of all the org units for which a given user has a given
13753 -- permission, granted directly (not through inheritance from a parent
13754 -- org unit).
13755 --
13756 -- The permissions apply to a minimum depth of the org unit hierarchy,
13757 -- for the org unit(s) to which the user is assigned.  (They also apply
13758 -- to the subordinates of those org units, but we don't report the
13759 -- subordinates here.)
13760 --
13761 -- For purposes of this function, the permission.usr_work_ou_map table
13762 -- defines which users belong to which org units.  I.e. we ignore the
13763 -- home_ou column of actor.usr.
13764 --
13765 -- The result set may contain duplicates, which should be eliminated
13766 -- by a DISTINCT clause.
13767 --
13768 DECLARE
13769     b_super       BOOLEAN;
13770     n_perm        INTEGER;
13771     n_min_depth   INTEGER;
13772     n_work_ou     INTEGER;
13773     n_curr_ou     INTEGER;
13774     n_depth       INTEGER;
13775     n_curr_depth  INTEGER;
13776 BEGIN
13777     --
13778     -- Check for superuser
13779     --
13780     SELECT INTO b_super
13781         super_user
13782     FROM
13783         actor.usr
13784     WHERE
13785         id = user_id;
13786     --
13787     IF NOT FOUND THEN
13788         return;             -- No user?  No permissions.
13789     ELSIF b_super THEN
13790         --
13791         -- Super user has all permissions everywhere
13792         --
13793         FOR n_work_ou IN
13794             SELECT
13795                 id
13796             FROM
13797                 actor.org_unit
13798             WHERE
13799                 parent_ou IS NULL
13800         LOOP
13801             RETURN NEXT n_work_ou;
13802         END LOOP;
13803         RETURN;
13804     END IF;
13805     --
13806     -- Translate the permission name
13807     -- to a numeric permission id
13808     --
13809     SELECT INTO n_perm
13810         id
13811     FROM
13812         permission.perm_list
13813     WHERE
13814         code = perm_code;
13815     --
13816     IF NOT FOUND THEN
13817         RETURN;               -- No such permission
13818     END IF;
13819     --
13820     -- Find the highest-level org unit (i.e. the minimum depth)
13821     -- to which the permission is applied for this user
13822     --
13823     -- This query is modified from the one in permission.usr_perms().
13824     --
13825     SELECT INTO n_min_depth
13826         min( depth )
13827     FROM    (
13828         SELECT depth
13829           FROM permission.usr_perm_map upm
13830          WHERE upm.usr = user_id
13831            AND (upm.perm = n_perm OR upm.perm = -1)
13832                     UNION
13833         SELECT  gpm.depth
13834           FROM  permission.grp_perm_map gpm
13835           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13836             AND gpm.grp IN (
13837                SELECT   (permission.grp_ancestors(
13838                     (SELECT profile FROM actor.usr WHERE id = user_id)
13839                 )).id
13840             )
13841                     UNION
13842         SELECT  p.depth
13843           FROM  permission.grp_perm_map p
13844           WHERE (p.perm = n_perm OR p.perm = -1)
13845             AND p.grp IN (
13846                 SELECT (permission.grp_ancestors(m.grp)).id
13847                 FROM   permission.usr_grp_map m
13848                 WHERE  m.usr = user_id
13849             )
13850     ) AS x;
13851     --
13852     IF NOT FOUND THEN
13853         RETURN;                -- No such permission for this user
13854     END IF;
13855     --
13856     -- Identify the org units to which the user is assigned.  Note that
13857     -- we pay no attention to the home_ou column in actor.usr.
13858     --
13859     FOR n_work_ou IN
13860         SELECT
13861             work_ou
13862         FROM
13863             permission.usr_work_ou_map
13864         WHERE
13865             usr = user_id
13866     LOOP            -- For each org unit to which the user is assigned
13867         --
13868         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13869         -- We take it on faith that this depth agrees with the actual hierarchy
13870         -- defined in actor.org_unit.
13871         --
13872         SELECT INTO n_depth
13873             type.depth
13874         FROM
13875             actor.org_unit_type type
13876                 INNER JOIN actor.org_unit ou
13877                     ON ( ou.ou_type = type.id )
13878         WHERE
13879             ou.id = n_work_ou;
13880         --
13881         IF NOT FOUND THEN
13882             CONTINUE;        -- Maybe raise exception?
13883         END IF;
13884         --
13885         -- Compare the depth of the work org unit to the
13886         -- minimum depth, and branch accordingly
13887         --
13888         IF n_depth = n_min_depth THEN
13889             --
13890             -- The org unit is at the right depth, so return it.
13891             --
13892             RETURN NEXT n_work_ou;
13893         ELSIF n_depth > n_min_depth THEN
13894             --
13895             -- Traverse the org unit tree toward the root,
13896             -- until you reach the minimum depth determined above
13897             --
13898             n_curr_depth := n_depth;
13899             n_curr_ou := n_work_ou;
13900             WHILE n_curr_depth > n_min_depth LOOP
13901                 SELECT INTO n_curr_ou
13902                     parent_ou
13903                 FROM
13904                     actor.org_unit
13905                 WHERE
13906                     id = n_curr_ou;
13907                 --
13908                 IF FOUND THEN
13909                     n_curr_depth := n_curr_depth - 1;
13910                 ELSE
13911                     --
13912                     -- This can happen only if the hierarchy defined in
13913                     -- actor.org_unit is corrupted, or out of sync with
13914                     -- the depths defined in actor.org_unit_type.
13915                     -- Maybe we should raise an exception here, instead
13916                     -- of silently ignoring the problem.
13917                     --
13918                     n_curr_ou = NULL;
13919                     EXIT;
13920                 END IF;
13921             END LOOP;
13922             --
13923             IF n_curr_ou IS NOT NULL THEN
13924                 RETURN NEXT n_curr_ou;
13925             END IF;
13926         ELSE
13927             --
13928             -- The permission applies only at a depth greater than the work org unit.
13929             -- Use connectby() to find all dependent org units at the specified depth.
13930             --
13931             FOR n_curr_ou IN
13932                 SELECT ou::INTEGER
13933                 FROM connectby(
13934                         'actor.org_unit',         -- table name
13935                         'id',                     -- key column
13936                         'parent_ou',              -- recursive foreign key
13937                         n_work_ou::TEXT,          -- id of starting point
13938                         (n_min_depth - n_depth)   -- max depth to search, relative
13939                     )                             --   to starting point
13940                     AS t(
13941                         ou text,            -- dependent org unit
13942                         parent_ou text,     -- (ignore)
13943                         level int           -- depth relative to starting point
13944                     )
13945                 WHERE
13946                     level = n_min_depth - n_depth
13947             LOOP
13948                 RETURN NEXT n_curr_ou;
13949             END LOOP;
13950         END IF;
13951         --
13952     END LOOP;
13953     --
13954     RETURN;
13955     --
13956 END;
13957 $$ LANGUAGE 'plpgsql';
13958
13959 ALTER TABLE acq.purchase_order
13960         ADD COLUMN cancel_reason INT
13961                 REFERENCES acq.cancel_reason( id )
13962             DEFERRABLE INITIALLY DEFERRED,
13963         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13964
13965 -- Build the history table and lifecycle view
13966 -- for acq.purchase_order
13967
13968 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
13969
13970 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
13971
13972 ALTER TABLE acq.lineitem
13973         ADD COLUMN cancel_reason INT
13974                 REFERENCES acq.cancel_reason( id )
13975             DEFERRABLE INITIALLY DEFERRED,
13976         ADD COLUMN estimated_unit_price NUMERIC,
13977         ADD COLUMN claim_policy INT
13978                 REFERENCES acq.claim_policy
13979                 DEFERRABLE INITIALLY DEFERRED,
13980         ALTER COLUMN eg_bib_id SET DATA TYPE bigint;
13981
13982 -- Build the history table and lifecycle view
13983 -- for acq.lineitem
13984
13985 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
13986 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
13987
13988 ALTER TABLE acq.lineitem_detail
13989         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13990                                             DEFERRABLE INITIALLY DEFERRED;
13991
13992 ALTER TABLE acq.lineitem_detail
13993         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13994
13995 ALTER TABLE acq.lineitem_detail
13996         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13997                 ON DELETE CASCADE
13998                 DEFERRABLE INITIALLY DEFERRED;
13999
14000 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
14001
14002 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
14003         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
14004
14005 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
14006         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
14007
14008 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT, force_add INT ) RETURNS TEXT AS $_$
14009
14010     use MARC::Record;
14011     use MARC::File::XML (BinaryEncoding => 'UTF-8');
14012     use strict;
14013
14014     my $target_xml = shift;
14015     my $source_xml = shift;
14016     my $field_spec = shift;
14017     my $force_add = shift || 0;
14018
14019     my $target_r = MARC::Record->new_from_xml( $target_xml );
14020     my $source_r = MARC::Record->new_from_xml( $source_xml );
14021
14022     return $target_xml unless ($target_r && $source_r);
14023
14024     my @field_list = split(',', $field_spec);
14025
14026     my %fields;
14027     for my $f (@field_list) {
14028         $f =~ s/^\s*//; $f =~ s/\s*$//;
14029         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14030             my $field = $1;
14031             $field =~ s/\s+//;
14032             my $sf = $2;
14033             $sf =~ s/\s+//;
14034             my $match = $3;
14035             $match =~ s/^\s*//; $match =~ s/\s*$//;
14036             $fields{$field} = { sf => [ split('', $sf) ] };
14037             if ($match) {
14038                 my ($msf,$mre) = split('~', $match);
14039                 if (length($msf) > 0 and length($mre) > 0) {
14040                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14041                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14042                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14043                 }
14044             }
14045         }
14046     }
14047
14048     for my $f ( keys %fields) {
14049         if ( @{$fields{$f}{sf}} ) {
14050             for my $from_field ($source_r->field( $f )) {
14051                 my @tos = $target_r->field( $f );
14052                 if (!@tos) {
14053                     next if (exists($fields{$f}{match}) and !$force_add);
14054                     my @new_fields = map { $_->clone } $source_r->field( $f );
14055                     $target_r->insert_fields_ordered( @new_fields );
14056                 } else {
14057                     for my $to_field (@tos) {
14058                         if (exists($fields{$f}{match})) {
14059                             next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14060                         }
14061                         my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
14062                         $to_field->add_subfields( @new_sf );
14063                     }
14064                 }
14065             }
14066         } else {
14067             my @new_fields = map { $_->clone } $source_r->field( $f );
14068             $target_r->insert_fields_ordered( @new_fields );
14069         }
14070     }
14071
14072     $target_xml = $target_r->as_xml_record;
14073     $target_xml =~ s/^<\?.+?\?>$//mo;
14074     $target_xml =~ s/\n//sgo;
14075     $target_xml =~ s/>\s+</></sgo;
14076
14077     return $target_xml;
14078
14079 $_$ LANGUAGE PLPERLU;
14080
14081 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14082     SELECT vandelay.add_field( $1, $2, $3, 0 );
14083 $_$ LANGUAGE SQL;
14084
14085 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14086
14087     use MARC::Record;
14088     use MARC::File::XML (BinaryEncoding => 'UTF-8');
14089     use strict;
14090
14091     my $xml = shift;
14092     my $r = MARC::Record->new_from_xml( $xml );
14093
14094     return $xml unless ($r);
14095
14096     my $field_spec = shift;
14097     my @field_list = split(',', $field_spec);
14098
14099     my %fields;
14100     for my $f (@field_list) {
14101         $f =~ s/^\s*//; $f =~ s/\s*$//;
14102         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14103             my $field = $1;
14104             $field =~ s/\s+//;
14105             my $sf = $2;
14106             $sf =~ s/\s+//;
14107             my $match = $3;
14108             $match =~ s/^\s*//; $match =~ s/\s*$//;
14109             $fields{$field} = { sf => [ split('', $sf) ] };
14110             if ($match) {
14111                 my ($msf,$mre) = split('~', $match);
14112                 if (length($msf) > 0 and length($mre) > 0) {
14113                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14114                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14115                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14116                 }
14117             }
14118         }
14119     }
14120
14121     for my $f ( keys %fields) {
14122         for my $to_field ($r->field( $f )) {
14123             if (exists($fields{$f}{match})) {
14124                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14125             }
14126
14127             if ( @{$fields{$f}{sf}} ) {
14128                 $to_field->delete_subfield(code => $fields{$f}{sf});
14129             } else {
14130                 $r->delete_field( $to_field );
14131             }
14132         }
14133     }
14134
14135     $xml = $r->as_xml_record;
14136     $xml =~ s/^<\?.+?\?>$//mo;
14137     $xml =~ s/\n//sgo;
14138     $xml =~ s/>\s+</></sgo;
14139
14140     return $xml;
14141
14142 $_$ LANGUAGE PLPERLU;
14143
14144 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14145 DECLARE
14146     xml_output TEXT;
14147     parsed_target TEXT;
14148     curr_field TEXT;
14149 BEGIN
14150
14151     parsed_target := vandelay.strip_field( target_xml, ''); -- this dance normalizes the format of the xml for the IF below
14152
14153     FOR curr_field IN SELECT UNNEST( STRING_TO_ARRAY(field, ',') ) LOOP -- naive split, but it's the same we use in the perl
14154
14155         xml_output := vandelay.strip_field( parsed_target, curr_field);
14156
14157         IF xml_output <> parsed_target  AND curr_field ~ E'~' THEN
14158             -- we removed something, and there was a regexp restriction in the curr_field definition, so proceed
14159             xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 1 );
14160         ELSIF curr_field !~ E'~' THEN
14161             -- No regexp restriction, add the curr_field
14162             xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 0 );
14163         END IF;
14164
14165         parsed_target := xml_output; -- in prep for any following loop iterations
14166
14167     END LOOP;
14168
14169     RETURN xml_output;
14170 END;
14171 $_$ LANGUAGE PLPGSQL;
14172
14173 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14174     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
14175 $_$ LANGUAGE SQL;
14176
14177 CREATE VIEW action.unfulfilled_hold_max_loop AS
14178         SELECT  hold,
14179                 max(count) AS max
14180         FROM    action.unfulfilled_hold_loops
14181         GROUP BY 1;
14182
14183 ALTER TABLE acq.lineitem_attr
14184         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
14185
14186 ALTER TABLE acq.lineitem_attr
14187         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
14188                 ON DELETE CASCADE
14189                 DEFERRABLE INITIALLY DEFERRED;
14190
14191 ALTER TABLE acq.po_note
14192         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
14193
14194 CREATE TABLE vandelay.merge_profile (
14195     id              BIGSERIAL   PRIMARY KEY,
14196     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
14197     name            TEXT        NOT NULL,
14198     add_spec        TEXT,
14199     replace_spec    TEXT,
14200     strip_spec      TEXT,
14201     preserve_spec   TEXT,
14202     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
14203     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))
14204 );
14205
14206 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
14207 DECLARE
14208     attr        RECORD;
14209     attr_def    RECORD;
14210     eg_rec      RECORD;
14211     id_value    TEXT;
14212     exact_id    BIGINT;
14213 BEGIN
14214
14215     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
14216
14217     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
14218
14219     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
14220         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
14221
14222         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
14223             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
14224             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
14225             IF exact_id IS NOT NULL THEN
14226                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
14227             END IF;
14228         END IF;
14229     END IF;
14230
14231     IF exact_id IS NULL THEN
14232         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
14233
14234             -- All numbers? check for an id match
14235             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
14236                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
14237                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14238                 END LOOP;
14239             END IF;
14240
14241             -- Looks like an ISBN? check for an isbn match
14242             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
14243                 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
14244                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
14245                     IF FOUND THEN
14246                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
14247                     END IF;
14248                 END LOOP;
14249
14250                 -- subcheck for isbn-as-tcn
14251                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
14252                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14253                 END LOOP;
14254             END IF;
14255
14256             -- check for an OCLC tcn_value match
14257             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
14258                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
14259                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14260                 END LOOP;
14261             END IF;
14262
14263             -- check for a direct tcn_value match
14264             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
14265                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14266             END LOOP;
14267
14268             -- check for a direct item barcode match
14269             FOR eg_rec IN
14270                     SELECT  DISTINCT b.*
14271                       FROM  biblio.record_entry b
14272                             JOIN asset.call_number cn ON (cn.record = b.id)
14273                             JOIN asset.copy cp ON (cp.call_number = cn.id)
14274                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
14275             LOOP
14276                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14277             END LOOP;
14278
14279         END LOOP;
14280     END IF;
14281
14282     RETURN NULL;
14283 END;
14284 $func$ LANGUAGE PLPGSQL;
14285
14286 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 $_$
14287     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
14288 $_$ LANGUAGE SQL;
14289
14290 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
14291 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
14292 DECLARE
14293     output              vandelay.compile_profile%ROWTYPE;
14294     profile             vandelay.merge_profile%ROWTYPE;
14295     profile_tmpl        TEXT;
14296     profile_tmpl_owner  TEXT;
14297     add_rule            TEXT := '';
14298     strip_rule          TEXT := '';
14299     replace_rule        TEXT := '';
14300     preserve_rule       TEXT := '';
14301
14302 BEGIN
14303
14304     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
14305     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
14306
14307     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
14308         SELECT  p.* INTO profile
14309           FROM  vandelay.merge_profile p
14310                 JOIN actor.org_unit u ON (u.id = p.owner)
14311           WHERE p.name = profile_tmpl
14312                 AND u.shortname = profile_tmpl_owner;
14313
14314         IF profile.id IS NOT NULL THEN
14315             add_rule := COALESCE(profile.add_spec,'');
14316             strip_rule := COALESCE(profile.strip_spec,'');
14317             replace_rule := COALESCE(profile.replace_spec,'');
14318             preserve_rule := COALESCE(profile.preserve_spec,'');
14319         END IF;
14320     END IF;
14321
14322     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),','),'');
14323     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),','),'');
14324     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),','),'');
14325     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),','),'');
14326
14327     output.add_rule := BTRIM(add_rule,',');
14328     output.replace_rule := BTRIM(replace_rule,',');
14329     output.strip_rule := BTRIM(strip_rule,',');
14330     output.preserve_rule := BTRIM(preserve_rule,',');
14331
14332     RETURN output;
14333 END;
14334 $_$ LANGUAGE PLPGSQL;
14335
14336 -- Template-based marc munging functions
14337 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14338 DECLARE
14339     merge_profile   vandelay.merge_profile%ROWTYPE;
14340     dyn_profile     vandelay.compile_profile%ROWTYPE;
14341     editor_string   TEXT;
14342     editor_id       INT;
14343     source_marc     TEXT;
14344     target_marc     TEXT;
14345     eg_marc         TEXT;
14346     replace_rule    TEXT;
14347     match_count     INT;
14348 BEGIN
14349
14350     SELECT  b.marc INTO eg_marc
14351       FROM  biblio.record_entry b
14352       WHERE b.id = eg_id
14353       LIMIT 1;
14354
14355     IF eg_marc IS NULL OR v_marc IS NULL THEN
14356         -- RAISE NOTICE 'no marc for template or bib record';
14357         RETURN FALSE;
14358     END IF;
14359
14360     dyn_profile := vandelay.compile_profile( v_marc );
14361
14362     IF merge_profile_id IS NOT NULL THEN
14363         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14364         IF FOUND THEN
14365             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14366             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14367             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14368             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14369         END IF;
14370     END IF;
14371
14372     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14373         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14374         RETURN FALSE;
14375     END IF;
14376
14377     IF dyn_profile.replace_rule <> '' THEN
14378         source_marc = v_marc;
14379         target_marc = eg_marc;
14380         replace_rule = dyn_profile.replace_rule;
14381     ELSE
14382         source_marc = eg_marc;
14383         target_marc = v_marc;
14384         replace_rule = dyn_profile.preserve_rule;
14385     END IF;
14386
14387     UPDATE  biblio.record_entry
14388       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14389       WHERE id = eg_id;
14390
14391     IF NOT FOUND THEN
14392         -- RAISE NOTICE 'update of biblio.record_entry failed';
14393         RETURN FALSE;
14394     END IF;
14395
14396     RETURN TRUE;
14397
14398 END;
14399 $$ LANGUAGE PLPGSQL;
14400
14401 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
14402     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
14403 $$ LANGUAGE SQL;
14404
14405 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14406 DECLARE
14407     merge_profile   vandelay.merge_profile%ROWTYPE;
14408     dyn_profile     vandelay.compile_profile%ROWTYPE;
14409     editor_string   TEXT;
14410     editor_id       INT;
14411     source_marc     TEXT;
14412     target_marc     TEXT;
14413     eg_marc         TEXT;
14414     v_marc          TEXT;
14415     replace_rule    TEXT;
14416     match_count     INT;
14417 BEGIN
14418
14419     SELECT  q.marc INTO v_marc
14420       FROM  vandelay.queued_record q
14421             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
14422       LIMIT 1;
14423
14424     IF v_marc IS NULL THEN
14425         -- RAISE NOTICE 'no marc for vandelay or bib record';
14426         RETURN FALSE;
14427     END IF;
14428
14429     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
14430         UPDATE  vandelay.queued_bib_record
14431           SET   imported_as = eg_id,
14432                 import_time = NOW()
14433           WHERE id = import_id;
14434
14435         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
14436
14437         IF editor_string IS NOT NULL AND editor_string <> '' THEN
14438             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
14439
14440             IF editor_id IS NULL THEN
14441                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
14442             END IF;
14443
14444             IF editor_id IS NOT NULL THEN
14445                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
14446             END IF;
14447         END IF;
14448
14449         RETURN TRUE;
14450     END IF;
14451
14452     -- RAISE NOTICE 'update of biblio.record_entry failed';
14453
14454     RETURN FALSE;
14455
14456 END;
14457 $$ LANGUAGE PLPGSQL;
14458
14459 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14460 DECLARE
14461     eg_id           BIGINT;
14462     match_count     INT;
14463     match_attr      vandelay.bib_attr_definition%ROWTYPE;
14464 BEGIN
14465
14466     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
14467
14468     IF FOUND THEN
14469         -- RAISE NOTICE 'already imported, cannot auto-overlay'
14470         RETURN FALSE;
14471     END IF;
14472
14473     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
14474
14475     IF match_count <> 1 THEN
14476         -- RAISE NOTICE 'not an exact match';
14477         RETURN FALSE;
14478     END IF;
14479
14480     SELECT  d.* INTO match_attr
14481       FROM  vandelay.bib_attr_definition d
14482             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
14483             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
14484       WHERE m.queued_record = import_id;
14485
14486     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
14487         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
14488         RETURN FALSE;
14489     END IF;
14490
14491     SELECT  m.eg_record INTO eg_id
14492       FROM  vandelay.bib_match m
14493       WHERE m.queued_record = import_id
14494       LIMIT 1;
14495
14496     IF eg_id IS NULL THEN
14497         RETURN FALSE;
14498     END IF;
14499
14500     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
14501 END;
14502 $$ LANGUAGE PLPGSQL;
14503
14504 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14505 DECLARE
14506     queued_record   vandelay.queued_bib_record%ROWTYPE;
14507 BEGIN
14508
14509     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
14510
14511         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14512             RETURN NEXT queued_record.id;
14513         END IF;
14514
14515     END LOOP;
14516
14517     RETURN;
14518
14519 END;
14520 $$ LANGUAGE PLPGSQL;
14521
14522 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14523     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14524 $$ LANGUAGE SQL;
14525
14526 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14527 DECLARE
14528     merge_profile   vandelay.merge_profile%ROWTYPE;
14529     dyn_profile     vandelay.compile_profile%ROWTYPE;
14530     source_marc     TEXT;
14531     target_marc     TEXT;
14532     eg_marc         TEXT;
14533     v_marc          TEXT;
14534     replace_rule    TEXT;
14535     match_count     INT;
14536 BEGIN
14537
14538     SELECT  b.marc INTO eg_marc
14539       FROM  authority.record_entry b
14540             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14541       LIMIT 1;
14542
14543     SELECT  q.marc INTO v_marc
14544       FROM  vandelay.queued_record q
14545             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14546       LIMIT 1;
14547
14548     IF eg_marc IS NULL OR v_marc IS NULL THEN
14549         -- RAISE NOTICE 'no marc for vandelay or authority record';
14550         RETURN FALSE;
14551     END IF;
14552
14553     dyn_profile := vandelay.compile_profile( v_marc );
14554
14555     IF merge_profile_id IS NOT NULL THEN
14556         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14557         IF FOUND THEN
14558             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14559             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14560             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14561             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14562         END IF;
14563     END IF;
14564
14565     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14566         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14567         RETURN FALSE;
14568     END IF;
14569
14570     IF dyn_profile.replace_rule <> '' THEN
14571         source_marc = v_marc;
14572         target_marc = eg_marc;
14573         replace_rule = dyn_profile.replace_rule;
14574     ELSE
14575         source_marc = eg_marc;
14576         target_marc = v_marc;
14577         replace_rule = dyn_profile.preserve_rule;
14578     END IF;
14579
14580     UPDATE  authority.record_entry
14581       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14582       WHERE id = eg_id;
14583
14584     IF FOUND THEN
14585         UPDATE  vandelay.queued_authority_record
14586           SET   imported_as = eg_id,
14587                 import_time = NOW()
14588           WHERE id = import_id;
14589         RETURN TRUE;
14590     END IF;
14591
14592     -- RAISE NOTICE 'update of authority.record_entry failed';
14593
14594     RETURN FALSE;
14595
14596 END;
14597 $$ LANGUAGE PLPGSQL;
14598
14599 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14600 DECLARE
14601     eg_id           BIGINT;
14602     match_count     INT;
14603 BEGIN
14604     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14605
14606     IF match_count <> 1 THEN
14607         -- RAISE NOTICE 'not an exact match';
14608         RETURN FALSE;
14609     END IF;
14610
14611     SELECT  m.eg_record INTO eg_id
14612       FROM  vandelay.authority_match m
14613       WHERE m.queued_record = import_id
14614       LIMIT 1;
14615
14616     IF eg_id IS NULL THEN
14617         RETURN FALSE;
14618     END IF;
14619
14620     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14621 END;
14622 $$ LANGUAGE PLPGSQL;
14623
14624 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14625 DECLARE
14626     queued_record   vandelay.queued_authority_record%ROWTYPE;
14627 BEGIN
14628
14629     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14630
14631         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14632             RETURN NEXT queued_record.id;
14633         END IF;
14634
14635     END LOOP;
14636
14637     RETURN;
14638
14639 END;
14640 $$ LANGUAGE PLPGSQL;
14641
14642 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14643     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14644 $$ LANGUAGE SQL;
14645
14646 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14647 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14648 DECLARE
14649     eg_tcn          TEXT;
14650     eg_tcn_source   TEXT;
14651     output          vandelay.tcn_data%ROWTYPE;
14652 BEGIN
14653
14654     -- 001/003
14655     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14656     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14657
14658         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14659         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14660             eg_tcn_source := 'System Local';
14661         END IF;
14662
14663         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14664
14665         IF NOT FOUND THEN
14666             output.used := FALSE;
14667         ELSE
14668             output.used := TRUE;
14669         END IF;
14670
14671         output.tcn := eg_tcn;
14672         output.tcn_source := eg_tcn_source;
14673         RETURN NEXT output;
14674
14675     END IF;
14676
14677     -- 901 ab
14678     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14679     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14680
14681         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14682         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14683             eg_tcn_source := 'System Local';
14684         END IF;
14685
14686         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14687
14688         IF NOT FOUND THEN
14689             output.used := FALSE;
14690         ELSE
14691             output.used := TRUE;
14692         END IF;
14693
14694         output.tcn := eg_tcn;
14695         output.tcn_source := eg_tcn_source;
14696         RETURN NEXT output;
14697
14698     END IF;
14699
14700     -- 039 ab
14701     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14702     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14703
14704         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14705         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14706             eg_tcn_source := 'System Local';
14707         END IF;
14708
14709         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14710
14711         IF NOT FOUND THEN
14712             output.used := FALSE;
14713         ELSE
14714             output.used := TRUE;
14715         END IF;
14716
14717         output.tcn := eg_tcn;
14718         output.tcn_source := eg_tcn_source;
14719         RETURN NEXT output;
14720
14721     END IF;
14722
14723     -- 020 a
14724     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14725     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14726
14727         eg_tcn_source := 'ISBN';
14728
14729         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14730
14731         IF NOT FOUND THEN
14732             output.used := FALSE;
14733         ELSE
14734             output.used := TRUE;
14735         END IF;
14736
14737         output.tcn := eg_tcn;
14738         output.tcn_source := eg_tcn_source;
14739         RETURN NEXT output;
14740
14741     END IF;
14742
14743     -- 022 a
14744     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14745     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14746
14747         eg_tcn_source := 'ISSN';
14748
14749         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14750
14751         IF NOT FOUND THEN
14752             output.used := FALSE;
14753         ELSE
14754             output.used := TRUE;
14755         END IF;
14756
14757         output.tcn := eg_tcn;
14758         output.tcn_source := eg_tcn_source;
14759         RETURN NEXT output;
14760
14761     END IF;
14762
14763     -- 010 a
14764     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14765     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14766
14767         eg_tcn_source := 'LCCN';
14768
14769         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14770
14771         IF NOT FOUND THEN
14772             output.used := FALSE;
14773         ELSE
14774             output.used := TRUE;
14775         END IF;
14776
14777         output.tcn := eg_tcn;
14778         output.tcn_source := eg_tcn_source;
14779         RETURN NEXT output;
14780
14781     END IF;
14782
14783     -- 035 a
14784     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14785     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14786
14787         eg_tcn_source := 'System Legacy';
14788
14789         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14790
14791         IF NOT FOUND THEN
14792             output.used := FALSE;
14793         ELSE
14794             output.used := TRUE;
14795         END IF;
14796
14797         output.tcn := eg_tcn;
14798         output.tcn_source := eg_tcn_source;
14799         RETURN NEXT output;
14800
14801     END IF;
14802
14803     RETURN;
14804 END;
14805 $_$ LANGUAGE PLPGSQL;
14806
14807 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14808
14809 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);
14810
14811 -- remove invalid data ... there was no fkey before, boo
14812 DELETE FROM metabib.series_field_entry WHERE source NOT IN (SELECT id FROM biblio.record_entry);
14813 DELETE FROM metabib.series_field_entry WHERE field NOT IN (SELECT id FROM config.metabib_field);
14814
14815 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14816 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14817 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14818 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14819 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14820
14821 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14822 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14823 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14824 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14825
14826 ALTER TABLE metabib.series_field_entry
14827         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14828                 REFERENCES biblio.record_entry (id)
14829                 ON DELETE CASCADE
14830                 DEFERRABLE INITIALLY DEFERRED;
14831
14832 ALTER TABLE metabib.series_field_entry
14833         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14834                 REFERENCES config.metabib_field (id)
14835                 ON DELETE CASCADE
14836                 DEFERRABLE INITIALLY DEFERRED;
14837
14838 CREATE TABLE acq.claim_policy_action (
14839         id              SERIAL       PRIMARY KEY,
14840         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14841                                  ON DELETE CASCADE
14842                                      DEFERRABLE INITIALLY DEFERRED,
14843         action_interval INTERVAL     NOT NULL,
14844         action          INT          NOT NULL REFERENCES acq.claim_event_type
14845                                      DEFERRABLE INITIALLY DEFERRED,
14846         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14847 );
14848
14849 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14850 DECLARE
14851     value       TEXT; 
14852     atype       TEXT; 
14853     prov        INT;
14854     pos         INT;
14855     adef        RECORD;
14856     xpath_string    TEXT;
14857 BEGIN
14858     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14859     
14860         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14861       
14862         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14863             IF (atype = 'lineitem_provider_attr_definition') THEN
14864                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14865                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14866             END IF;
14867             
14868             IF (atype = 'lineitem_provider_attr_definition') THEN
14869                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14870             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14871                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14872             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14873                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14874             END IF;
14875       
14876             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14877
14878             IF (adef.code = 'title' OR adef.code = 'author') THEN
14879                 -- title and author should not be split
14880                 -- FIXME: once oils_xpath can grok XPATH 2.0 functions, we can use
14881                 -- string-join in the xpath and remove this special case
14882                 SELECT extract_acq_marc_field(id, xpath_string, adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14883                 IF (value IS NOT NULL AND value <> '') THEN
14884                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14885                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14886                 END IF;
14887             ELSE
14888                 pos := 1;
14889
14890                 LOOP
14891                     SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14892       
14893                     IF (value IS NOT NULL AND value <> '') THEN
14894                         INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14895                             VALUES (NEW.id, adef.id, atype, adef.code, value);
14896                     ELSE
14897                         EXIT;
14898                     END IF;
14899
14900                     pos := pos + 1;
14901                 END LOOP;
14902             END IF;
14903
14904         END IF;
14905
14906     END LOOP;
14907
14908     RETURN NULL;
14909 END;
14910 $function$ LANGUAGE PLPGSQL;
14911
14912 UPDATE config.metabib_field SET label = name;
14913 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14914
14915 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_field_class_fkey
14916          FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14917
14918 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14919
14920 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14921
14922 CREATE TABLE config.metabib_search_alias (
14923     alias       TEXT    PRIMARY KEY,
14924     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14925     field       INT     REFERENCES config.metabib_field (id)
14926 );
14927
14928 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14929 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14930 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14931 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14932 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14933 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14934 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14935 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14936
14937 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14938 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14939 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14940 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14941 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14942 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14943 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14944 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14945 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14946 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14947 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14948 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14949 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14950
14951 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14952 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14953 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14954 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14955 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14956 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14957 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14958 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14959
14960 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14961 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14962 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14963 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14964 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14965
14966 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14967 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14968 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14969
14970 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14971 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;
14972 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;
14973 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;
14974 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;
14975
14976 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14977 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14978 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14979 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14980
14981 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14982 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14983 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14984 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14985 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14986 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14987 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14988 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14989 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14990 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14991 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14992 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14993 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14994 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14995
14996 CREATE TABLE asset.opac_visible_copies (
14997   id        BIGINT primary key, -- copy id
14998   record    BIGINT,
14999   circ_lib  INTEGER
15000 );
15001 COMMENT ON TABLE asset.opac_visible_copies IS $$
15002 Materialized view of copies that are visible in the OPAC, used by
15003 search.query_parser_fts() to speed up OPAC visibility checks on large
15004 databases.  Contents are maintained by a set of triggers.
15005 $$;
15006 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
15007
15008 CREATE OR REPLACE FUNCTION search.query_parser_fts (
15009
15010     param_search_ou INT,
15011     param_depth     INT,
15012     param_query     TEXT,
15013     param_statuses  INT[],
15014     param_locations INT[],
15015     param_offset    INT,
15016     param_check     INT,
15017     param_limit     INT,
15018     metarecord      BOOL,
15019     staff           BOOL
15020  
15021 ) RETURNS SETOF search.search_result AS $func$
15022 DECLARE
15023
15024     current_res         search.search_result%ROWTYPE;
15025     search_org_list     INT[];
15026
15027     check_limit         INT;
15028     core_limit          INT;
15029     core_offset         INT;
15030     tmp_int             INT;
15031
15032     core_result         RECORD;
15033     core_cursor         REFCURSOR;
15034     core_rel_query      TEXT;
15035
15036     total_count         INT := 0;
15037     check_count         INT := 0;
15038     deleted_count       INT := 0;
15039     visible_count       INT := 0;
15040     excluded_count      INT := 0;
15041
15042 BEGIN
15043
15044     check_limit := COALESCE( param_check, 1000 );
15045     core_limit  := COALESCE( param_limit, 25000 );
15046     core_offset := COALESCE( param_offset, 0 );
15047
15048     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
15049
15050     IF param_search_ou > 0 THEN
15051         IF param_depth IS NOT NULL THEN
15052             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
15053         ELSE
15054             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
15055         END IF;
15056     ELSIF param_search_ou < 0 THEN
15057         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
15058     ELSIF param_search_ou = 0 THEN
15059         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
15060     END IF;
15061
15062     OPEN core_cursor FOR EXECUTE param_query;
15063
15064     LOOP
15065
15066         FETCH core_cursor INTO core_result;
15067         EXIT WHEN NOT FOUND;
15068         EXIT WHEN total_count >= core_limit;
15069
15070         total_count := total_count + 1;
15071
15072         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
15073
15074         check_count := check_count + 1;
15075
15076         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15077         IF NOT FOUND THEN
15078             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
15079             deleted_count := deleted_count + 1;
15080             CONTINUE;
15081         END IF;
15082
15083         PERFORM 1
15084           FROM  biblio.record_entry b
15085                 JOIN config.bib_source s ON (b.source = s.id)
15086           WHERE s.transcendant
15087                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15088
15089         IF FOUND THEN
15090             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
15091             visible_count := visible_count + 1;
15092
15093             current_res.id = core_result.id;
15094             current_res.rel = core_result.rel;
15095
15096             tmp_int := 1;
15097             IF metarecord THEN
15098                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15099             END IF;
15100
15101             IF tmp_int = 1 THEN
15102                 current_res.record = core_result.records[1];
15103             ELSE
15104                 current_res.record = NULL;
15105             END IF;
15106
15107             RETURN NEXT current_res;
15108
15109             CONTINUE;
15110         END IF;
15111
15112         PERFORM 1
15113           FROM  asset.call_number cn
15114                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
15115                 JOIN asset.uri uri ON (map.uri = uri.id)
15116           WHERE NOT cn.deleted
15117                 AND cn.label = '##URI##'
15118                 AND uri.active
15119                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
15120                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15121                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15122           LIMIT 1;
15123
15124         IF FOUND THEN
15125             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
15126             visible_count := visible_count + 1;
15127
15128             current_res.id = core_result.id;
15129             current_res.rel = core_result.rel;
15130
15131             tmp_int := 1;
15132             IF metarecord THEN
15133                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15134             END IF;
15135
15136             IF tmp_int = 1 THEN
15137                 current_res.record = core_result.records[1];
15138             ELSE
15139                 current_res.record = NULL;
15140             END IF;
15141
15142             RETURN NEXT current_res;
15143
15144             CONTINUE;
15145         END IF;
15146
15147         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
15148
15149             PERFORM 1
15150               FROM  asset.call_number cn
15151                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15152               WHERE NOT cn.deleted
15153                     AND NOT cp.deleted
15154                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
15155                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15156                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15157               LIMIT 1;
15158
15159             IF NOT FOUND THEN
15160                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
15161                 excluded_count := excluded_count + 1;
15162                 CONTINUE;
15163             END IF;
15164
15165         END IF;
15166
15167         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
15168
15169             PERFORM 1
15170               FROM  asset.call_number cn
15171                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15172               WHERE NOT cn.deleted
15173                     AND NOT cp.deleted
15174                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
15175                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15176                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15177               LIMIT 1;
15178
15179             IF NOT FOUND THEN
15180                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
15181                 excluded_count := excluded_count + 1;
15182                 CONTINUE;
15183             END IF;
15184
15185         END IF;
15186
15187         IF staff IS NULL OR NOT staff THEN
15188
15189             PERFORM 1
15190               FROM  asset.opac_visible_copies
15191               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15192                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15193               LIMIT 1;
15194
15195             IF NOT FOUND THEN
15196                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15197                 excluded_count := excluded_count + 1;
15198                 CONTINUE;
15199             END IF;
15200
15201         ELSE
15202
15203             PERFORM 1
15204               FROM  asset.call_number cn
15205                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15206                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
15207               WHERE NOT cn.deleted
15208                     AND NOT cp.deleted
15209                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15210                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15211               LIMIT 1;
15212
15213             IF NOT FOUND THEN
15214
15215                 PERFORM 1
15216                   FROM  asset.call_number cn
15217                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15218                   LIMIT 1;
15219
15220                 IF FOUND THEN
15221                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15222                     excluded_count := excluded_count + 1;
15223                     CONTINUE;
15224                 END IF;
15225
15226             END IF;
15227
15228         END IF;
15229
15230         visible_count := visible_count + 1;
15231
15232         current_res.id = core_result.id;
15233         current_res.rel = core_result.rel;
15234
15235         tmp_int := 1;
15236         IF metarecord THEN
15237             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15238         END IF;
15239
15240         IF tmp_int = 1 THEN
15241             current_res.record = core_result.records[1];
15242         ELSE
15243             current_res.record = NULL;
15244         END IF;
15245
15246         RETURN NEXT current_res;
15247
15248         IF visible_count % 1000 = 0 THEN
15249             -- RAISE NOTICE ' % visible so far ... ', visible_count;
15250         END IF;
15251
15252     END LOOP;
15253
15254     current_res.id = NULL;
15255     current_res.rel = NULL;
15256     current_res.record = NULL;
15257     current_res.total = total_count;
15258     current_res.checked = check_count;
15259     current_res.deleted = deleted_count;
15260     current_res.visible = visible_count;
15261     current_res.excluded = excluded_count;
15262
15263     CLOSE core_cursor;
15264
15265     RETURN NEXT current_res;
15266
15267 END;
15268 $func$ LANGUAGE PLPGSQL;
15269
15270 ALTER TABLE biblio.record_entry ADD COLUMN owner INT;
15271 ALTER TABLE biblio.record_entry
15272          ADD CONSTRAINT biblio_record_entry_owner_fkey FOREIGN KEY (owner)
15273          REFERENCES actor.org_unit (id)
15274          DEFERRABLE INITIALLY DEFERRED;
15275
15276 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
15277
15278 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
15279 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
15280
15281 DROP VIEW auditor.biblio_record_entry_lifecycle;
15282
15283 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
15284
15285 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
15286         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
15287 $$ LANGUAGE SQL STRICT IMMUTABLE;
15288
15289 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
15290     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
15291 $$ LANGUAGE SQL STRICT IMMUTABLE;
15292
15293 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
15294     return lc(shift);
15295 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15296
15297 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
15298     return uc(shift);
15299 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15300
15301 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
15302     use Unicode::Normalize;
15303
15304     my $x = NFD(shift);
15305     $x =~ s/\pM+//go;
15306     return $x;
15307
15308 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15309
15310 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
15311     use Unicode::Normalize;
15312
15313     my $x = NFC(shift);
15314     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
15315     return $x;
15316
15317 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15318
15319 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
15320 DECLARE
15321     setting RECORD;
15322     cur_org INT;
15323 BEGIN
15324     cur_org := org_id;
15325     LOOP
15326         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
15327         IF FOUND THEN
15328             RETURN NEXT setting;
15329         END IF;
15330         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
15331         EXIT WHEN cur_org IS NULL;
15332     END LOOP;
15333     RETURN;
15334 END;
15335 $$ LANGUAGE plpgsql STABLE;
15336
15337 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
15338 DECLARE
15339     counter INT;
15340     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
15341 BEGIN
15342
15343     SELECT  COUNT(*) INTO counter
15344       FROM  oils_xpath_table(
15345                 'id',
15346                 'marc',
15347                 'acq.lineitem',
15348                 '//*[@tag="' || tag || '"]',
15349                 'id=' || lineitem
15350             ) as t(i int,c text);
15351
15352     FOR i IN 1 .. counter LOOP
15353         FOR lida IN
15354             SELECT  *
15355               FROM  (   SELECT  id,i,t,v
15356                           FROM  oils_xpath_table(
15357                                     'id',
15358                                     'marc',
15359                                     'acq.lineitem',
15360                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
15361                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
15362                                     'id=' || lineitem
15363                                 ) as t(id int,t text,v text)
15364                     )x
15365         LOOP
15366             RETURN NEXT lida;
15367         END LOOP;
15368     END LOOP;
15369
15370     RETURN;
15371 END;
15372 $$ LANGUAGE PLPGSQL;
15373
15374 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
15375 DECLARE
15376     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
15377     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
15378     result      config.i18n_core%ROWTYPE;
15379     fallback    TEXT;
15380     keyfield    TEXT := keyclass || '.' || keycol;
15381 BEGIN
15382
15383     -- Try the full locale
15384     SELECT  * INTO result
15385       FROM  config.i18n_core
15386       WHERE fq_field = keyfield
15387             AND identity_value = keyvalue
15388             AND translation = locale;
15389
15390     -- Try just the language
15391     IF NOT FOUND THEN
15392         SELECT  * INTO result
15393           FROM  config.i18n_core
15394           WHERE fq_field = keyfield
15395                 AND identity_value = keyvalue
15396                 AND translation = language;
15397     END IF;
15398
15399     -- Fall back to the string we passed in in the first place
15400     IF NOT FOUND THEN
15401     EXECUTE
15402             'SELECT ' ||
15403                 keycol ||
15404             ' FROM ' || keytable ||
15405             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
15406                 INTO fallback;
15407         RETURN fallback;
15408     END IF;
15409
15410     RETURN result.string;
15411 END;
15412 $func$ LANGUAGE PLPGSQL STABLE;
15413
15414 SELECT auditor.create_auditor ( 'acq', 'invoice' );
15415
15416 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
15417
15418 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
15419
15420 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
15421     3, 1, 'delivered_but_lost',
15422     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
15423
15424 CREATE TABLE config.global_flag (
15425     label   TEXT    NOT NULL
15426 ) INHERITS (config.internal_flag);
15427 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
15428
15429 INSERT INTO config.global_flag (name, label, enabled)
15430     VALUES (
15431         'cat.bib.use_id_for_tcn',
15432         oils_i18n_gettext(
15433             'cat.bib.use_id_for_tcn',
15434             'Cat: Use Internal ID for TCN Value',
15435             'cgf', 
15436             'label'
15437         ),
15438         TRUE
15439     );
15440
15441 -- resolves performance issue noted by EG Indiana
15442
15443 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
15444
15445 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
15446
15447 -- 1.6 included stock indexes from 1 through 15, but didn't increase the
15448 -- sequence value to leave room for additional stock indexes in subsequent
15449 -- releases (hello!), so custom added indexes will conflict with these.
15450
15451 -- The following function changes the ID of an existing custom index
15452 -- (and any references to that index) to the target ID; if no target ID
15453 -- is supplied, then it adds 100 to the source ID. So this could break if a site
15454 -- has custom indexes at both 16 and 116, for example - but if that's the
15455 -- case anywhere, I'm throwing my hands up in surrender:
15456
15457 CREATE OR REPLACE FUNCTION config.modify_metabib_field(source INT, target INT) RETURNS INT AS $func$
15458 DECLARE
15459     f_class TEXT;
15460     check_id INT;
15461     target_id INT;
15462 BEGIN
15463     SELECT field_class INTO f_class FROM config.metabib_field WHERE id = source;
15464     IF NOT FOUND THEN
15465         RETURN 0;
15466     END IF;
15467     IF target IS NULL THEN
15468         target_id = source + 100;
15469     ELSE
15470         target_id = target;
15471     END IF;
15472     SELECT id FROM config.metabib_field INTO check_id WHERE id = target_id;
15473     IF FOUND THEN
15474         RAISE NOTICE 'Cannot bump config.metabib_field.id from % to %; the target ID already exists.', source, target_id;
15475         RETURN 0;
15476     END IF;
15477     UPDATE config.metabib_field SET id = target_id WHERE id = source;
15478     EXECUTE ' UPDATE metabib.' || f_class || '_field_entry SET field = ' || target_id || ' WHERE field = ' || source;
15479     UPDATE config.metabib_field_index_norm_map SET field = target_id WHERE field = source;
15480     UPDATE search.relevance_adjustment SET field = target_id WHERE field = source;
15481     RETURN 1;
15482 END;
15483 $func$ LANGUAGE PLPGSQL;
15484
15485 -- To avoid sequential scans against the large metabib.*_field_entry tables
15486 CREATE INDEX metabib_author_field_entry_field ON metabib.author_field_entry(field);
15487 CREATE INDEX metabib_keyword_field_entry_field ON metabib.keyword_field_entry(field);
15488 CREATE INDEX metabib_series_field_entry_field ON metabib.series_field_entry(field);
15489 CREATE INDEX metabib_subject_field_entry_field ON metabib.subject_field_entry(field);
15490 CREATE INDEX metabib_title_field_entry_field ON metabib.title_field_entry(field);
15491
15492 -- Now update those custom indexes
15493 SELECT config.modify_metabib_field(id, NULL)
15494     FROM config.metabib_field
15495     WHERE id > 15 AND id < 100 AND field_class || name <> 'subjectcomplete';
15496
15497 -- Ensure "subject|complete" is id = 16, if it exists
15498 SELECT config.modify_metabib_field(id, 16)
15499     FROM config.metabib_field
15500     WHERE id <> 16 AND field_class || name = 'subjectcomplete';
15501
15502 -- And bump the config.metabib_field sequence to a minimum of 100 to avoid problems in the future
15503 SELECT setval('config.metabib_field_id_seq', GREATEST(100, (SELECT MAX(id) + 1 FROM config.metabib_field)));
15504
15505 -- And drop the temporary indexes that we just created
15506 DROP INDEX metabib.metabib_author_field_entry_field;
15507 DROP INDEX metabib.metabib_keyword_field_entry_field;
15508 DROP INDEX metabib.metabib_series_field_entry_field;
15509 DROP INDEX metabib.metabib_subject_field_entry_field;
15510 DROP INDEX metabib.metabib_title_field_entry_field;
15511
15512 -- Now we can go ahead and insert the additional stock indexes
15513
15514 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath )
15515     SELECT  16, 'subject', 'complete', oils_i18n_gettext(16, 'All Subjects', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject//text()$$
15516       WHERE NOT EXISTS (select id from config.metabib_field where field_class = 'subject' and name = 'complete'); -- in case it's already there
15517
15518 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15519     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
15520 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15521     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15522 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15523     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15524 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15525     (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 );
15526 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15527     (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 );
15528 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15529     (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 );
15530 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15531     (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 );
15532 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15533     (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 );
15534 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15535     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
15536
15537 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15538  
15539
15540 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
15541
15542 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
15543 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
15544 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
15545 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
15546 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
15547 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
15548 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
15549
15550 CREATE TABLE metabib.identifier_field_entry (
15551         id              BIGSERIAL       PRIMARY KEY,
15552         source          BIGINT          NOT NULL,
15553         field           INT             NOT NULL,
15554         value           TEXT            NOT NULL,
15555         index_vector    tsvector        NOT NULL
15556 );
15557 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15558         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
15559         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
15560
15561 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
15562 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
15563     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
15564 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
15565
15566 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
15567     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15568 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
15569     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15570
15571 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
15572     use Business::ISBN;
15573     use strict;
15574     use warnings;
15575
15576     # For each ISBN found in a single string containing a set of ISBNs:
15577     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
15578     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
15579
15580     my $input = shift;
15581     my $output = '';
15582
15583     foreach my $word (split(/\s/, $input)) {
15584         my $isbn = Business::ISBN->new($word);
15585
15586         # First check the checksum; if it is not valid, fix it and add the original
15587         # bad-checksum ISBN to the output
15588         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
15589             $output .= $isbn->isbn() . " ";
15590             $isbn->fix_checksum();
15591         }
15592
15593         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
15594         # and add the normalized original ISBN to the output
15595         if ($isbn && $isbn->is_valid()) {
15596             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
15597             $output .= $isbn->isbn . " ";
15598
15599             # If we successfully converted the ISBN to its counterpart, add the
15600             # converted ISBN to the output as well
15601             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15602         }
15603     }
15604     return $output if $output;
15605
15606     # If there were no valid ISBNs, just return the raw input
15607     return $input;
15608 $func$ LANGUAGE PLPERLU;
15609
15610 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15611 /*
15612  * Copyright (C) 2010 Merrimack Valley Library Consortium
15613  * Jason Stephenson <jstephenson@mvlc.org>
15614  * Copyright (C) 2010 Laurentian University
15615  * Dan Scott <dscott@laurentian.ca>
15616  *
15617  * The translate_isbn1013 function takes an input ISBN and returns the
15618  * following in a single space-delimited string if the input ISBN is valid:
15619  *   - The normalized input ISBN (hyphens stripped)
15620  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15621  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15622  */
15623 $$;
15624
15625 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15626 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15627 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15628 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15629 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15630 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15631
15632 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15633         'ISBN 10/13 conversion',
15634         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15635         'translate_isbn1013',
15636         0
15637 );
15638
15639 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15640         'Replace',
15641         'Replace all occurences of first parameter in the string with the second parameter.',
15642         'replace',
15643         2
15644 );
15645
15646 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15647     SELECT  m.id, i.id, 1
15648       FROM  config.metabib_field m,
15649             config.index_normalizer i
15650       WHERE i.func IN ('first_word')
15651             AND m.id IN (18);
15652
15653 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15654     SELECT  m.id, i.id, 2
15655       FROM  config.metabib_field m,
15656             config.index_normalizer i
15657       WHERE i.func IN ('translate_isbn1013')
15658             AND m.id IN (18);
15659
15660 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15661     SELECT  m.id, i.id, $$['-','']$$
15662       FROM  config.metabib_field m,
15663             config.index_normalizer i
15664       WHERE i.func IN ('replace')
15665             AND m.id IN (19);
15666
15667 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15668     SELECT  m.id, i.id, $$[' ','']$$
15669       FROM  config.metabib_field m,
15670             config.index_normalizer i
15671       WHERE i.func IN ('replace')
15672             AND m.id IN (19);
15673
15674 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15675
15676 UPDATE  config.metabib_field_index_norm_map
15677   SET   params = REPLACE(params,E'\'','"')
15678   WHERE params IS NOT NULL AND params <> '';
15679
15680 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15681
15682 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15683
15684 ALTER TABLE config.circ_modifier
15685         ADD COLUMN avg_wait_time INTERVAL;
15686
15687 --CREATE TABLE actor.usr_password_reset (
15688 --  id SERIAL PRIMARY KEY,
15689 --  uuid TEXT NOT NULL, 
15690 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15691 --  request_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(), 
15692 --  has_been_reset BOOL NOT NULL DEFAULT false
15693 --);
15694 --COMMENT ON TABLE actor.usr_password_reset IS $$
15695 --/*
15696 -- * Copyright (C) 2010 Laurentian University
15697 -- * Dan Scott <dscott@laurentian.ca>
15698 -- *
15699 -- * Self-serve password reset requests
15700 -- *
15701 -- * ****
15702 -- *
15703 -- * This program is free software; you can redistribute it and/or
15704 -- * modify it under the terms of the GNU General Public License
15705 -- * as published by the Free Software Foundation; either version 2
15706 -- * of the License, or (at your option) any later version.
15707 -- *
15708 -- * This program is distributed in the hope that it will be useful,
15709 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15710 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15711 -- * GNU General Public License for more details.
15712 -- */
15713 --$$;
15714 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15715 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15716 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15717 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15718
15719 -- Use the identifier search class tsconfig
15720 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15721 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15722     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15723     FOR EACH ROW
15724     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15725
15726 INSERT INTO config.global_flag (name,label,enabled)
15727     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15728 INSERT INTO config.global_flag (name,label,enabled)
15729     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15730
15731 -- turn a JSON scalar into an SQL TEXT value
15732 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15733     use JSON::XS;                    
15734     my $json = shift();
15735     my $txt;
15736     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15737     return undef if ($@);
15738     return $txt
15739 $f$ LANGUAGE PLPERLU;
15740
15741 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15742 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15743 DECLARE
15744     c               action.circulation%ROWTYPE;
15745     view_age        INTERVAL;
15746     usr_view_age    actor.usr_setting%ROWTYPE;
15747     usr_view_start  actor.usr_setting%ROWTYPE;
15748 BEGIN
15749     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15750     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15751
15752     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15753         -- User opted in and supplied a retention age
15754         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15755             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15756         ELSE
15757             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15758         END IF;
15759     ELSIF usr_view_start.value IS NOT NULL THEN
15760         -- User opted in
15761         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15762     ELSE
15763         -- User did not opt in
15764         RETURN;
15765     END IF;
15766
15767     FOR c IN
15768         SELECT  *
15769           FROM  action.circulation
15770           WHERE usr = usr_id
15771                 AND parent_circ IS NULL
15772                 AND xact_start > NOW() - view_age
15773           ORDER BY xact_start
15774     LOOP
15775         RETURN NEXT c;
15776     END LOOP;
15777
15778     RETURN;
15779 END;
15780 $func$ LANGUAGE PLPGSQL;
15781
15782 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15783 DECLARE
15784     usr_keep_age    actor.usr_setting%ROWTYPE;
15785     usr_keep_start  actor.usr_setting%ROWTYPE;
15786     org_keep_age    INTERVAL;
15787     org_keep_count  INT;
15788
15789     keep_age        INTERVAL;
15790
15791     target_acp      RECORD;
15792     circ_chain_head action.circulation%ROWTYPE;
15793     circ_chain_tail action.circulation%ROWTYPE;
15794
15795     purge_position  INT;
15796     count_purged    INT;
15797 BEGIN
15798
15799     count_purged := 0;
15800
15801     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15802
15803     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15804     IF org_keep_count IS NULL THEN
15805         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15806     END IF;
15807
15808     -- First, find copies with more than keep_count non-renewal circs
15809     FOR target_acp IN
15810         SELECT  target_copy,
15811                 COUNT(*) AS total_real_circs
15812           FROM  action.circulation
15813           WHERE parent_circ IS NULL
15814                 AND xact_finish IS NOT NULL
15815           GROUP BY target_copy
15816           HAVING COUNT(*) > org_keep_count
15817     LOOP
15818         purge_position := 0;
15819         -- And, for those, select circs that are finished and older than keep_age
15820         FOR circ_chain_head IN
15821             SELECT  *
15822               FROM  action.circulation
15823               WHERE target_copy = target_acp.target_copy
15824                     AND parent_circ IS NULL
15825               ORDER BY xact_start
15826         LOOP
15827
15828             -- Stop once we've purged enough circs to hit org_keep_count
15829             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15830
15831             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15832             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15833
15834             -- Now get the user settings, if any, to block purging if the user wants to keep more circs
15835             usr_keep_age.value := NULL;
15836             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15837
15838             usr_keep_start.value := NULL;
15839             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start';
15840
15841             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15842                 IF oils_json_to_text(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ) THEN
15843                     keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15844                 ELSE
15845                     keep_age := oils_json_to_text(usr_keep_age.value)::INTERVAL;
15846                 END IF;
15847             ELSIF usr_keep_start.value IS NOT NULL THEN
15848                 keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15849             ELSE
15850                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTERVAL );
15851             END IF;
15852
15853             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15854
15855             -- We've passed the purging tests, purge the circ chain starting at the end
15856             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15857             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15858                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15859                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15860             END LOOP;
15861
15862             count_purged := count_purged + 1;
15863             purge_position := purge_position + 1;
15864
15865         END LOOP;
15866     END LOOP;
15867 END;
15868 $func$ LANGUAGE PLPGSQL;
15869
15870 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15871 DECLARE
15872     h               action.hold_request%ROWTYPE;
15873     view_age        INTERVAL;
15874     view_count      INT;
15875     usr_view_count  actor.usr_setting%ROWTYPE;
15876     usr_view_age    actor.usr_setting%ROWTYPE;
15877     usr_view_start  actor.usr_setting%ROWTYPE;
15878 BEGIN
15879     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15880     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15881     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15882
15883     FOR h IN
15884         SELECT  *
15885           FROM  action.hold_request
15886           WHERE usr = usr_id
15887                 AND fulfillment_time IS NULL
15888                 AND cancel_time IS NULL
15889           ORDER BY request_time DESC
15890     LOOP
15891         RETURN NEXT h;
15892     END LOOP;
15893
15894     IF usr_view_start.value IS NULL THEN
15895         RETURN;
15896     END IF;
15897
15898     IF usr_view_age.value IS NOT NULL THEN
15899         -- User opted in and supplied a retention age
15900         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15901             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15902         ELSE
15903             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15904         END IF;
15905     ELSE
15906         -- User opted in
15907         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15908     END IF;
15909
15910     IF usr_view_count.value IS NOT NULL THEN
15911         view_count := oils_json_to_text(usr_view_count.value)::INT;
15912     ELSE
15913         view_count := 1000;
15914     END IF;
15915
15916     -- show some fulfilled/canceled holds
15917     FOR h IN
15918         SELECT  *
15919           FROM  action.hold_request
15920           WHERE usr = usr_id
15921                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15922                 AND request_time > NOW() - view_age
15923           ORDER BY request_time DESC
15924           LIMIT view_count
15925     LOOP
15926         RETURN NEXT h;
15927     END LOOP;
15928
15929     RETURN;
15930 END;
15931 $func$ LANGUAGE PLPGSQL;
15932
15933 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15934
15935 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15936
15937 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15938
15939 DROP TABLE IF EXISTS serial.issuance CASCADE;
15940
15941 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15942
15943 DROP TABLE IF EXISTS serial.subscription CASCADE;
15944
15945 CREATE TABLE asset.copy_template (
15946         id             SERIAL   PRIMARY KEY,
15947         owning_lib     INT      NOT NULL
15948                                 REFERENCES actor.org_unit (id)
15949                                 DEFERRABLE INITIALLY DEFERRED,
15950         creator        BIGINT   NOT NULL
15951                                 REFERENCES actor.usr (id)
15952                                 DEFERRABLE INITIALLY DEFERRED,
15953         editor         BIGINT   NOT NULL
15954                                 REFERENCES actor.usr (id)
15955                                 DEFERRABLE INITIALLY DEFERRED,
15956         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15957         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15958         name           TEXT     NOT NULL,
15959         -- columns above this point are attributes of the template itself
15960         -- columns after this point are attributes of the copy this template modifies/creates
15961         circ_lib       INT      REFERENCES actor.org_unit (id)
15962                                 DEFERRABLE INITIALLY DEFERRED,
15963         status         INT      REFERENCES config.copy_status (id)
15964                                 DEFERRABLE INITIALLY DEFERRED,
15965         location       INT      REFERENCES asset.copy_location (id)
15966                                 DEFERRABLE INITIALLY DEFERRED,
15967         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15968                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15969         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15970                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15971         age_protect    INT,
15972         circulate      BOOL,
15973         deposit        BOOL,
15974         ref            BOOL,
15975         holdable       BOOL,
15976         deposit_amount NUMERIC(6,2),
15977         price          NUMERIC(8,2),
15978         circ_modifier  TEXT,
15979         circ_as_type   TEXT,
15980         alert_message  TEXT,
15981         opac_visible   BOOL,
15982         floating       BOOL,
15983         mint_condition BOOL
15984 );
15985
15986 CREATE TABLE serial.subscription (
15987         id                     SERIAL       PRIMARY KEY,
15988         owning_lib             INT          NOT NULL DEFAULT 1
15989                                             REFERENCES actor.org_unit (id)
15990                                             ON DELETE SET NULL
15991                                             DEFERRABLE INITIALLY DEFERRED,
15992         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15993         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15994         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15995                                             ON DELETE SET NULL
15996                                             DEFERRABLE INITIALLY DEFERRED,
15997         expected_date_offset   INTERVAL
15998         -- acquisitions/business-side tables link to here
15999 );
16000 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
16001 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
16002
16003 --at least one distribution per org_unit holding issues
16004 CREATE TABLE serial.distribution (
16005         id                    SERIAL  PRIMARY KEY,
16006         record_entry          BIGINT  REFERENCES serial.record_entry (id)
16007                                       ON DELETE SET NULL
16008                                       DEFERRABLE INITIALLY DEFERRED,
16009         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
16010                                           summary_method IS NULL
16011                                           OR summary_method IN ( 'add_to_sre',
16012                                           'merge_with_sre', 'use_sre_only',
16013                                           'use_sdist_only')),
16014         subscription          INT     NOT NULL
16015                                       REFERENCES serial.subscription (id)
16016                                                                   ON DELETE CASCADE
16017                                                                   DEFERRABLE INITIALLY DEFERRED,
16018         holding_lib           INT     NOT NULL
16019                                       REFERENCES actor.org_unit (id)
16020                                                                   DEFERRABLE INITIALLY DEFERRED,
16021         label                 TEXT    NOT NULL,
16022         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
16023                                       DEFERRABLE INITIALLY DEFERRED,
16024         receive_unit_template INT     REFERENCES asset.copy_template (id)
16025                                       DEFERRABLE INITIALLY DEFERRED,
16026         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
16027                                       DEFERRABLE INITIALLY DEFERRED,
16028         bind_unit_template    INT     REFERENCES asset.copy_template (id)
16029                                       DEFERRABLE INITIALLY DEFERRED,
16030         unit_label_prefix     TEXT,
16031         unit_label_suffix     TEXT
16032 );
16033 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
16034 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
16035
16036 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
16037
16038 CREATE TABLE serial.stream (
16039         id              SERIAL  PRIMARY KEY,
16040         distribution    INT     NOT NULL
16041                                 REFERENCES serial.distribution (id)
16042                                 ON DELETE CASCADE
16043                                 DEFERRABLE INITIALLY DEFERRED,
16044         routing_label   TEXT
16045 );
16046 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
16047
16048 CREATE UNIQUE INDEX label_once_per_dist
16049         ON serial.stream (distribution, routing_label)
16050         WHERE routing_label IS NOT NULL;
16051
16052 CREATE TABLE serial.routing_list_user (
16053         id             SERIAL       PRIMARY KEY,
16054         stream         INT          NOT NULL
16055                                     REFERENCES serial.stream
16056                                     ON DELETE CASCADE
16057                                     DEFERRABLE INITIALLY DEFERRED,
16058         pos            INT          NOT NULL DEFAULT 1,
16059         reader         INT          REFERENCES actor.usr
16060                                     ON DELETE CASCADE
16061                                     DEFERRABLE INITIALLY DEFERRED,
16062         department     TEXT,
16063         note           TEXT,
16064         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
16065         CONSTRAINT reader_or_dept CHECK
16066         (
16067             -- Recipient is a person or a department, but not both
16068                 (reader IS NOT NULL AND department IS NULL) OR
16069                 (reader IS NULL AND department IS NOT NULL)
16070         )
16071 );
16072 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
16073 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
16074
16075 CREATE TABLE serial.caption_and_pattern (
16076         id           SERIAL       PRIMARY KEY,
16077         subscription INT          NOT NULL REFERENCES serial.subscription (id)
16078                                   ON DELETE CASCADE
16079                                   DEFERRABLE INITIALLY DEFERRED,
16080         type         TEXT         NOT NULL
16081                                   CONSTRAINT cap_type CHECK ( type in
16082                                   ( 'basic', 'supplement', 'index' )),
16083         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
16084         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
16085         end_date     TIMESTAMP WITH TIME ZONE,
16086         active       BOOL         NOT NULL DEFAULT FALSE,
16087         pattern_code TEXT         NOT NULL,       -- must contain JSON
16088         enum_1       TEXT,
16089         enum_2       TEXT,
16090         enum_3       TEXT,
16091         enum_4       TEXT,
16092         enum_5       TEXT,
16093         enum_6       TEXT,
16094         chron_1      TEXT,
16095         chron_2      TEXT,
16096         chron_3      TEXT,
16097         chron_4      TEXT,
16098         chron_5      TEXT
16099 );
16100 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
16101
16102 CREATE TABLE serial.issuance (
16103         id              SERIAL    PRIMARY KEY,
16104         creator         INT       NOT NULL
16105                                   REFERENCES actor.usr (id)
16106                                                           DEFERRABLE INITIALLY DEFERRED,
16107         editor          INT       NOT NULL
16108                                   REFERENCES actor.usr (id)
16109                                   DEFERRABLE INITIALLY DEFERRED,
16110         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16111         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16112         subscription    INT       NOT NULL
16113                                   REFERENCES serial.subscription (id)
16114                                   ON DELETE CASCADE
16115                                   DEFERRABLE INITIALLY DEFERRED,
16116         label           TEXT,
16117         date_published  TIMESTAMP WITH TIME ZONE,
16118         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
16119                               DEFERRABLE INITIALLY DEFERRED,
16120         holding_code    TEXT,
16121         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
16122                                   (
16123                                       holding_type IS NULL
16124                                       OR holding_type IN ('basic','supplement','index')
16125                                   ),
16126         holding_link_id INT
16127         -- TODO: add columns for separate enumeration/chronology values
16128 );
16129 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
16130 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
16131 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
16132
16133 CREATE TABLE serial.unit (
16134         label           TEXT,
16135         label_sort_key  TEXT,
16136         contents        TEXT    NOT NULL
16137 ) INHERITS (asset.copy);
16138 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
16139 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
16140 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
16141 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
16142 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
16143
16144 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
16145
16146 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
16147
16148 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16149
16150 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16151
16152 CREATE TABLE serial.item (
16153         id              SERIAL  PRIMARY KEY,
16154         creator         INT     NOT NULL
16155                                 REFERENCES actor.usr (id)
16156                                 DEFERRABLE INITIALLY DEFERRED,
16157         editor          INT     NOT NULL
16158                                 REFERENCES actor.usr (id)
16159                                 DEFERRABLE INITIALLY DEFERRED,
16160         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16161         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16162         issuance        INT     NOT NULL
16163                                 REFERENCES serial.issuance (id)
16164                                 ON DELETE CASCADE
16165                                 DEFERRABLE INITIALLY DEFERRED,
16166         stream          INT     NOT NULL
16167                                 REFERENCES serial.stream (id)
16168                                 ON DELETE CASCADE
16169                                 DEFERRABLE INITIALLY DEFERRED,
16170         unit            INT     REFERENCES serial.unit (id)
16171                                 ON DELETE SET NULL
16172                                 DEFERRABLE INITIALLY DEFERRED,
16173         uri             INT     REFERENCES asset.uri (id)
16174                                 ON DELETE SET NULL
16175                                 DEFERRABLE INITIALLY DEFERRED,
16176         date_expected   TIMESTAMP WITH TIME ZONE,
16177         date_received   TIMESTAMP WITH TIME ZONE,
16178         status          TEXT    CONSTRAINT valid_status CHECK (
16179                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
16180                                'Expected', 'Not Held', 'Not Published', 'Received'))
16181                             DEFAULT 'Expected',
16182         shadowed        BOOL    NOT NULL DEFAULT FALSE
16183 );
16184 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
16185 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
16186 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
16187 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
16188 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
16189 CREATE INDEX serial_item_status_idx ON serial.item (status);
16190
16191 CREATE TABLE serial.item_note (
16192         id          SERIAL  PRIMARY KEY,
16193         item        INT     NOT NULL
16194                             REFERENCES serial.item (id)
16195                             ON DELETE CASCADE
16196                             DEFERRABLE INITIALLY DEFERRED,
16197         creator     INT     NOT NULL
16198                             REFERENCES actor.usr (id)
16199                             DEFERRABLE INITIALLY DEFERRED,
16200         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
16201         pub         BOOL    NOT NULL    DEFAULT FALSE,
16202         title       TEXT    NOT NULL,
16203         value       TEXT    NOT NULL
16204 );
16205 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
16206
16207 CREATE TABLE serial.basic_summary (
16208         id                  SERIAL  PRIMARY KEY,
16209         distribution        INT     NOT NULL
16210                                     REFERENCES serial.distribution (id)
16211                                     ON DELETE CASCADE
16212                                     DEFERRABLE INITIALLY DEFERRED,
16213         generated_coverage  TEXT    NOT NULL,
16214         textual_holdings    TEXT,
16215         show_generated      BOOL    NOT NULL DEFAULT TRUE
16216 );
16217 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
16218
16219 CREATE TABLE serial.supplement_summary (
16220         id                  SERIAL  PRIMARY KEY,
16221         distribution        INT     NOT NULL
16222                                     REFERENCES serial.distribution (id)
16223                                     ON DELETE CASCADE
16224                                     DEFERRABLE INITIALLY DEFERRED,
16225         generated_coverage  TEXT    NOT NULL,
16226         textual_holdings    TEXT,
16227         show_generated      BOOL    NOT NULL DEFAULT TRUE
16228 );
16229 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
16230
16231 CREATE TABLE serial.index_summary (
16232         id                  SERIAL  PRIMARY KEY,
16233         distribution        INT     NOT NULL
16234                                     REFERENCES serial.distribution (id)
16235                                     ON DELETE CASCADE
16236                                     DEFERRABLE INITIALLY DEFERRED,
16237         generated_coverage  TEXT    NOT NULL,
16238         textual_holdings    TEXT,
16239         show_generated      BOOL    NOT NULL DEFAULT TRUE
16240 );
16241 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
16242
16243 -- 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.
16244
16245 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
16246 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16247
16248 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
16249 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;
16250
16251 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
16252 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16253
16254 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
16255 RETURNS INTEGER AS $$
16256 BEGIN
16257         RETURN EXTRACT( EPOCH FROM interval_val );
16258 END;
16259 $$ LANGUAGE plpgsql;
16260
16261 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
16262 RETURNS INTEGER AS $$
16263 BEGIN
16264         RETURN config.interval_to_seconds( interval_string::INTERVAL );
16265 END;
16266 $$ LANGUAGE plpgsql;
16267
16268 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
16269     'temp',
16270     oils_i18n_gettext(
16271         'temp',
16272         'Temporary bucket which gets deleted after use.',
16273         'cbrebt',
16274         'label'
16275     )
16276 );
16277
16278 -- 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.
16279
16280 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
16281 BEGIN
16282
16283     IF xml_is_well_formed(NEW.marc) THEN
16284         RETURN NEW;
16285     ELSE
16286         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
16287     END IF;
16288     
16289 END;
16290 $func$ LANGUAGE PLPGSQL;
16291
16292 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();
16293
16294 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();
16295
16296 ALTER TABLE serial.record_entry
16297         ALTER COLUMN marc DROP NOT NULL;
16298
16299 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
16300 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
16301 <xsl:stylesheet
16302     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
16303     xmlns:marc="http://www.loc.gov/MARC21/slim"
16304     version="1.0">
16305 <!--
16306 Copyright (C) 2010  Equinox Software, Inc.
16307 Galen Charlton <gmc@esilibrary.cOM.
16308
16309 This program is free software; you can redistribute it and/or
16310 modify it under the terms of the GNU General Public License
16311 as published by the Free Software Foundation; either version 2
16312 of the License, or (at your option) any later version.
16313
16314 This program is distributed in the hope that it will be useful,
16315 but WITHOUT ANY WARRANTY; without even the implied warranty of
16316 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16317 GNU General Public License for more details.
16318
16319 marc21_expand_880.xsl - stylesheet used during indexing to
16320                         map alternative graphical representations
16321                         of MARC fields stored in 880 fields
16322                         to the corresponding tag name and value.
16323
16324 For example, if a MARC record for a Chinese book has
16325
16326 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16327 880.00 $6 245-01/$1 $a八十三年短篇小說選
16328
16329 this stylesheet will transform it to the equivalent of
16330
16331 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16332 245.00 $6 245-01/$1 $a八十三年短篇小說選
16333
16334 -->
16335     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
16336
16337     <xsl:template match="@*|node()">
16338         <xsl:copy>
16339             <xsl:apply-templates select="@*|node()"/>
16340         </xsl:copy>
16341     </xsl:template>
16342
16343     <xsl:template match="//marc:datafield[@tag='880']">
16344         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
16345             <marc:datafield>
16346                 <xsl:attribute name="tag">
16347                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
16348                 </xsl:attribute>
16349                 <xsl:attribute name="ind1">
16350                     <xsl:value-of select="@ind1" />
16351                 </xsl:attribute>
16352                 <xsl:attribute name="ind2">
16353                     <xsl:value-of select="@ind2" />
16354                 </xsl:attribute>
16355                 <xsl:apply-templates />
16356             </marc:datafield>
16357         </xsl:if>
16358     </xsl:template>
16359     
16360 </xsl:stylesheet>$$);
16361
16362 -- fix broken prefix and namespace URI for the
16363 -- mods32 transform found in some databases
16364 -- that started out at version 1.2 or earlier
16365 UPDATE config.xml_transform
16366 SET namespace_uri = 'http://www.loc.gov/mods/v3'
16367 WHERE name = 'mods32'
16368 AND namespace_uri = 'http://www.loc.gov/mods/'
16369 AND xslt LIKE '%xmlns="http://www.loc.gov/mods/v3"%';
16370
16371 UPDATE config.xml_transform
16372 SET prefix = 'mods32'
16373 WHERE name = 'mods32'
16374 AND prefix = 'mods'
16375 AND EXISTS (SELECT xpath FROM config.metabib_field WHERE xpath ~ 'mods32:');
16376
16377 -- Splitting the ingest trigger up into little bits
16378
16379 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
16380     flag INTEGER PRIMARY KEY
16381 ) ON COMMIT DROP;
16382 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
16383
16384 -- cause failure if either of the tables we want to drop have rows
16385 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
16386 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
16387
16388 DROP TABLE IF EXISTS asset.copy_transparency_map;
16389 DROP TABLE IF EXISTS asset.copy_transparency;
16390
16391 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
16392
16393 -- We won't necessarily use all of these, but they are here for completeness.
16394 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
16395 -- Values are the EDI code value + 1000
16396
16397 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
16398 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
16399 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
16400 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
16401 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
16402 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
16403 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
16404 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
16405 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
16406 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
16407 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
16408 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
16409 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
16410 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
16411 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
16412 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
16413 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
16414 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
16415 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
16416 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
16417 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
16418 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
16419 ('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).'),
16420 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
16421 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
16422 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
16423 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
16424 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
16425 ('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.'),
16426 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
16427 ('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.'),
16428 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
16429 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
16430 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
16431 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
16432 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
16433 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
16434 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
16435 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
16436 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
16437 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
16438 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
16439 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
16440 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
16441 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
16442 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
16443 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
16444 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
16445 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
16446 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
16447 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
16448 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
16449 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
16450 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
16451 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
16452 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
16453 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
16454 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
16455 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
16456 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
16457 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
16458 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
16459 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
16460 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
16461 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
16462 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
16463 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
16464 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
16465 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
16466 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
16467 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
16468 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
16469 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
16470 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
16471 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
16472 ('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).'),
16473 ('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).'),
16474 ('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).'),
16475 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
16476 ('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).'),
16477 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
16478 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
16479 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
16480 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
16481 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
16482 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
16483 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
16484 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
16485 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
16486 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
16487 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
16488 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
16489 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
16490 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
16491 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
16492 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
16493 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
16494 ('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.'),
16495 ('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.'),
16496 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
16497 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
16498 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
16499 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
16500 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
16501 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
16502 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
16503 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
16504 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
16505 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
16506 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
16507 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
16508 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
16509 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
16510 ('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.'),
16511 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
16512 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
16513
16514 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
16515     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
16516  
16517 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
16518  
16519 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16520         'Remove Parenthesized Substring',
16521         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
16522         'remove_paren_substring',
16523         0
16524 );
16525
16526 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16527         'Trim Surrounding Space',
16528         'Trim leading and trailing spaces from extracted text.',
16529         'btrim',
16530         0
16531 );
16532
16533 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16534     SELECT  m.id,
16535             i.id,
16536             -2
16537       FROM  config.metabib_field m,
16538             config.index_normalizer i
16539       WHERE i.func IN ('remove_paren_substring')
16540             AND m.id IN (26);
16541
16542 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16543     SELECT  m.id,
16544             i.id,
16545             -1
16546       FROM  config.metabib_field m,
16547             config.index_normalizer i
16548       WHERE i.func IN ('btrim')
16549             AND m.id IN (26);
16550
16551 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
16552 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
16553 DECLARE
16554     dyn_profile     vandelay.compile_profile%ROWTYPE;
16555     replace_rule    TEXT;
16556     tmp_marc        TEXT;
16557     trgt_marc        TEXT;
16558     tmpl_marc        TEXT;
16559     match_count     INT;
16560 BEGIN
16561
16562     IF target_marc IS NULL OR template_marc IS NULL THEN
16563         -- RAISE NOTICE 'no marc for target or template record';
16564         RETURN NULL;
16565     END IF;
16566
16567     dyn_profile := vandelay.compile_profile( template_marc );
16568
16569     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
16570         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
16571         RETURN NULL;
16572     END IF;
16573
16574     IF dyn_profile.replace_rule <> '' THEN
16575         trgt_marc = target_marc;
16576         tmpl_marc = template_marc;
16577         replace_rule = dyn_profile.replace_rule;
16578     ELSE
16579         tmp_marc = target_marc;
16580         trgt_marc = template_marc;
16581         tmpl_marc = tmp_marc;
16582         replace_rule = dyn_profile.preserve_rule;
16583     END IF;
16584
16585     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
16586
16587 END;
16588 $$ LANGUAGE PLPGSQL;
16589
16590 -- Function to generate an ephemeral overlay template from an authority record
16591 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
16592
16593     use MARC::Record;
16594     use MARC::File::XML (BinaryEncoding => 'UTF-8');
16595
16596     my $xml = shift;
16597     my $r = MARC::Record->new_from_xml( $xml );
16598
16599     return undef unless ($r);
16600
16601     my $id = shift() || $r->subfield( '901' => 'c' );
16602     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
16603     return undef unless ($id); # We need an ID!
16604
16605     my $tmpl = MARC::Record->new();
16606     $tmpl->encoding( 'UTF-8' );
16607
16608     my @rule_fields;
16609     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
16610
16611         my $tag = $field->tag;
16612         my $i1 = $field->indicator(1);
16613         my $i2 = $field->indicator(2);
16614         my $sf = join '', map { $_->[0] } $field->subfields;
16615         my @data = map { @$_ } $field->subfields;
16616
16617         my @replace_them;
16618
16619         # Map the authority field to bib fields it can control.
16620         if ($tag >= 100 and $tag <= 111) {       # names
16621             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
16622         } elsif ($tag eq '130') {                # uniform title
16623             @replace_them = qw/130 240 440 730 830/;
16624         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
16625             @replace_them = ($tag + 500);
16626         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
16627             @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/;
16628         } else {
16629             next;
16630         }
16631
16632         # Dummy up the bib-side data
16633         $tmpl->append_fields(
16634             map {
16635                 MARC::Field->new( $_, $i1, $i2, @data )
16636             } @replace_them
16637         );
16638
16639         # Construct some 'replace' rules
16640         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
16641     }
16642
16643     # Insert the replace rules into the template
16644     $tmpl->append_fields(
16645         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16646     );
16647
16648     $xml = $tmpl->as_xml_record;
16649     $xml =~ s/^<\?.+?\?>$//mo;
16650     $xml =~ s/\n//sgo;
16651     $xml =~ s/>\s+</></sgo;
16652
16653     return $xml;
16654
16655 $func$ LANGUAGE PLPERLU;
16656
16657 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16658     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16659 $func$ LANGUAGE SQL;
16660
16661 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16662     SELECT authority.generate_overlay_template( $1, NULL );
16663 $func$ LANGUAGE SQL;
16664
16665 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16666 DELETE FROM config.metabib_field WHERE id = 26;
16667
16668 -- Making this a global_flag (UI accessible) instead of an internal_flag
16669 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16670     VALUES (
16671         'ingest.disable_authority_linking',
16672         oils_i18n_gettext(
16673             'ingest.disable_authority_linking',
16674             'Authority Automation: Disable bib-authority link tracking',
16675             'cgf', 
16676             'label'
16677         )
16678     );
16679 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16680 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16681
16682 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16683     VALUES (
16684         'ingest.disable_authority_auto_update',
16685         oils_i18n_gettext(
16686             'ingest.disable_authority_auto_update',
16687             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16688             'cgf', 
16689             'label'
16690         )
16691     );
16692
16693 -- Enable automated ingest of authority records; just insert the row into
16694 -- authority.record_entry and authority.full_rec will automatically be populated
16695
16696 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16697     UPDATE  biblio.record_entry
16698       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16699       WHERE id = $2;
16700     SELECT $1;
16701 $func$ LANGUAGE SQL;
16702
16703 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16704     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16705 $func$ LANGUAGE SQL;
16706
16707 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
16708
16709 use MARC::Record;
16710 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16711
16712 my $xml = shift;
16713 my $r = MARC::Record->new_from_xml( $xml );
16714
16715 return_next( { tag => 'LDR', value => $r->leader } );
16716
16717 for my $f ( $r->fields ) {
16718     if ($f->is_control_field) {
16719         return_next({ tag => $f->tag, value => $f->data });
16720     } else {
16721         for my $s ($f->subfields) {
16722             return_next({
16723                 tag      => $f->tag,
16724                 ind1     => $f->indicator(1),
16725                 ind2     => $f->indicator(2),
16726                 subfield => $s->[0],
16727                 value    => $s->[1]
16728             });
16729
16730         }
16731     }
16732 }
16733
16734 return undef;
16735
16736 $func$ LANGUAGE PLPERLU;
16737
16738 CREATE OR REPLACE FUNCTION authority.flatten_marc ( rid BIGINT ) RETURNS SETOF authority.full_rec AS $func$
16739 DECLARE
16740     auth    authority.record_entry%ROWTYPE;
16741     output    authority.full_rec%ROWTYPE;
16742     field    RECORD;
16743 BEGIN
16744     SELECT INTO auth * FROM authority.record_entry WHERE id = rid;
16745
16746     FOR field IN SELECT * FROM authority.flatten_marc( auth.marc ) LOOP
16747         output.record := rid;
16748         output.ind1 := field.ind1;
16749         output.ind2 := field.ind2;
16750         output.tag := field.tag;
16751         output.subfield := field.subfield;
16752         IF field.subfield IS NOT NULL THEN
16753             output.value := naco_normalize(field.value, field.subfield);
16754         ELSE
16755             output.value := field.value;
16756         END IF;
16757
16758         CONTINUE WHEN output.value IS NULL;
16759
16760         RETURN NEXT output;
16761     END LOOP;
16762 END;
16763 $func$ LANGUAGE PLPGSQL;
16764
16765 -- authority.rec_descriptor appears to be unused currently
16766 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16767 BEGIN
16768     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16769 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16770 --        SELECT  auth_id, ;
16771
16772     RETURN;
16773 END;
16774 $func$ LANGUAGE PLPGSQL;
16775
16776 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16777 BEGIN
16778     DELETE FROM authority.full_rec WHERE record = auth_id;
16779     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16780         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16781
16782     RETURN;
16783 END;
16784 $func$ LANGUAGE PLPGSQL;
16785
16786 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16787 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16788 BEGIN
16789
16790     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16791         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16792         DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records
16793           -- Should remove matching $0 from controlled fields at the same time?
16794         RETURN NEW; -- and we're done
16795     END IF;
16796
16797     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16798         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16799
16800         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16801             RETURN NEW;
16802         END IF;
16803     END IF;
16804
16805     -- Flatten and insert the afr data
16806     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16807     IF NOT FOUND THEN
16808         PERFORM authority.reingest_authority_full_rec(NEW.id);
16809 -- authority.rec_descriptor is not currently used
16810 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16811 --        IF NOT FOUND THEN
16812 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16813 --        END IF;
16814     END IF;
16815
16816     RETURN NEW;
16817 END;
16818 $func$ LANGUAGE PLPGSQL;
16819
16820 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 ();
16821
16822 -- Some records manage to get XML namespace declarations into each element,
16823 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16824 -- This broke the old maintain_901(), so we'll make the regex more robust
16825
16826 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16827 BEGIN
16828     -- Remove any existing 901 fields before we insert the authoritative one
16829     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16830     IF TG_TABLE_SCHEMA = 'biblio' THEN
16831         NEW.marc := REGEXP_REPLACE(
16832             NEW.marc,
16833             E'(</(?:[^:]*?:)?record>)',
16834             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16835                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16836                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16837                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16838                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16839                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16840                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16841              E'</datafield>\\1'
16842         );
16843     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16844         NEW.marc := REGEXP_REPLACE(
16845             NEW.marc,
16846             E'(</(?:[^:]*?:)?record>)',
16847             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16848                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16849                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16850              E'</datafield>\\1'
16851         );
16852     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16853         NEW.marc := REGEXP_REPLACE(
16854             NEW.marc,
16855             E'(</(?:[^:]*?:)?record>)',
16856             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16857                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16858                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16859                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16860                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16861              E'</datafield>\\1'
16862         );
16863     ELSE
16864         NEW.marc := REGEXP_REPLACE(
16865             NEW.marc,
16866             E'(</(?:[^:]*?:)?record>)',
16867             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16868                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16869                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16870              E'</datafield>\\1'
16871         );
16872     END IF;
16873
16874     RETURN NEW;
16875 END;
16876 $func$ LANGUAGE PLPGSQL;
16877
16878 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16879 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16880 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16881  
16882 -- In booking, elbow room defines:
16883 --  a) how far in the future you must make a reservation on a given item if
16884 --      that item will have to transit somewhere to fulfill the reservation.
16885 --  b) how soon a reservation must be starting for the reserved item to
16886 --      be op-captured by the checkin interface.
16887
16888 -- We don't want to clobber any default_elbow room at any level:
16889
16890 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16891 DECLARE
16892     existing    actor.org_unit_setting%ROWTYPE;
16893 BEGIN
16894     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16895     IF NOT FOUND THEN
16896         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16897             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16898             'circ.booking_reservation.default_elbow_room',
16899             '"1 day"'
16900         );
16901         RETURN 1;
16902     END IF;
16903     RETURN 0;
16904 END;
16905 $$ LANGUAGE plpgsql;
16906
16907 SELECT pg_temp.default_elbow();
16908
16909 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16910
16911 -- returns the distinct set of target copy IDs from a user's visible circulation history
16912 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16913     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16914 $$ LANGUAGE SQL;
16915
16916 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16917 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16918 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16919 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16920
16921 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16922
16923 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16924 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16925
16926 INSERT INTO config.global_flag (name, label, enabled)
16927     VALUES (
16928         'cat.maintain_control_numbers',
16929         oils_i18n_gettext(
16930             'cat.maintain_control_numbers',
16931             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16932             'cgf', 
16933             'label'
16934         ),
16935         TRUE
16936     );
16937
16938 INSERT INTO config.global_flag (name, label, enabled)
16939     VALUES (
16940         'circ.holds.empty_issuance_ok',
16941         oils_i18n_gettext(
16942             'circ.holds.empty_issuance_ok',
16943             'Holds: Allow holds on empty issuances',
16944             'cgf',
16945             'label'
16946         ),
16947         TRUE
16948     );
16949
16950 INSERT INTO config.global_flag (name, label, enabled)
16951     VALUES (
16952         'circ.holds.usr_not_requestor',
16953         oils_i18n_gettext(
16954             'circ.holds.usr_not_requestor',
16955             'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)',
16956             'cgf',
16957             'label'
16958         ),
16959         TRUE
16960     );
16961
16962 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16963 use strict;
16964 use MARC::Record;
16965 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16966 use Encode;
16967 use Unicode::Normalize;
16968
16969 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16970 my $schema = $_TD->{table_schema};
16971 my $rec_id = $_TD->{new}{id};
16972
16973 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16974 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16975 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16976     return;
16977 }
16978
16979 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16980 my $ou_cni = 'EVRGRN';
16981
16982 my $owner;
16983 if ($schema eq 'serial') {
16984     $owner = $_TD->{new}{owning_lib};
16985 } else {
16986     # are.owner and bre.owner can be null, so fall back to the consortial setting
16987     $owner = $_TD->{new}{owner} || 1;
16988 }
16989
16990 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16991 if ($ous_rv->{processed}) {
16992     $ou_cni = $ous_rv->{rows}[0]->{value};
16993     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16994 } else {
16995     # Fall back to the shortname of the OU if there was no OU setting
16996     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16997     if ($ous_rv->{processed}) {
16998         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16999     }
17000 }
17001
17002 my ($create, $munge) = (0, 0);
17003
17004 my @scns = $record->field('035');
17005
17006 foreach my $id_field ('001', '003') {
17007     my $spec_value;
17008     my @controls = $record->field($id_field);
17009
17010     if ($id_field eq '001') {
17011         $spec_value = $rec_id;
17012     } else {
17013         $spec_value = $ou_cni;
17014     }
17015
17016     # Create the 001/003 if none exist
17017     if (scalar(@controls) == 1) {
17018         # Only one field; check to see if we need to munge it
17019         unless (grep $_->data() eq $spec_value, @controls) {
17020             $munge = 1;
17021         }
17022     } else {
17023         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
17024         foreach my $control (@controls) {
17025             unless ($control->data() eq $spec_value) {
17026                 $record->delete_field($control);
17027             }
17028         }
17029         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
17030         $create = 1;
17031     }
17032 }
17033
17034 # Now, if we need to munge the 001, we will first push the existing 001/003
17035 # into the 035; but if the record did not have one (and one only) 001 and 003
17036 # to begin with, skip this process
17037 if ($munge and not $create) {
17038     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
17039
17040     # Do not create duplicate 035 fields
17041     unless (grep $_->subfield('a') eq $scn, @scns) {
17042         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
17043     }
17044 }
17045
17046 # Set the 001/003 and update the MARC
17047 if ($create or $munge) {
17048     $record->field('001')->data($rec_id);
17049     $record->field('003')->data($ou_cni);
17050
17051     my $xml = $record->as_xml_record();
17052     $xml =~ s/\n//sgo;
17053     $xml =~ s/^<\?xml.+\?\s*>//go;
17054     $xml =~ s/>\s+</></go;
17055     $xml =~ s/\p{Cc}//go;
17056
17057     # Embed a version of OpenILS::Application::AppUtils->entityize()
17058     # to avoid having to set PERL5LIB for PostgreSQL as well
17059
17060     # If we are going to convert non-ASCII characters to XML entities,
17061     # we had better be dealing with a UTF8 string to begin with
17062     $xml = decode_utf8($xml);
17063
17064     $xml = NFC($xml);
17065
17066     # Convert raw ampersands to entities
17067     $xml =~ s/&(?!\S+;)/&amp;/gso;
17068
17069     # Convert Unicode characters to entities
17070     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
17071
17072     $xml =~ s/[\x00-\x1f]//go;
17073     $_TD->{new}{marc} = $xml;
17074
17075     return "MODIFY";
17076 }
17077
17078 return;
17079 $func$ LANGUAGE PLPERLU;
17080
17081 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
17082 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
17083 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
17084
17085 INSERT INTO metabib.facet_entry (source, field, value)
17086     SELECT source, field, value FROM (
17087         SELECT * FROM metabib.author_field_entry
17088             UNION ALL
17089         SELECT * FROM metabib.keyword_field_entry
17090             UNION ALL
17091         SELECT * FROM metabib.identifier_field_entry
17092             UNION ALL
17093         SELECT * FROM metabib.title_field_entry
17094             UNION ALL
17095         SELECT * FROM metabib.subject_field_entry
17096             UNION ALL
17097         SELECT * FROM metabib.series_field_entry
17098         )x
17099     WHERE x.index_vector = '';
17100         
17101 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
17102 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
17103 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
17104 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
17105 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
17106 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
17107
17108 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
17109 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
17110 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
17111
17112 -- copy OPAC visibility materialized view
17113 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
17114
17115     TRUNCATE TABLE asset.opac_visible_copies;
17116
17117     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
17118     SELECT  cp.id, cp.circ_lib, cn.record
17119     FROM  asset.copy cp
17120         JOIN asset.call_number cn ON (cn.id = cp.call_number)
17121         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
17122         JOIN asset.copy_location cl ON (cp.location = cl.id)
17123         JOIN config.copy_status cs ON (cp.status = cs.id)
17124         JOIN biblio.record_entry b ON (cn.record = b.id)
17125     WHERE NOT cp.deleted
17126         AND NOT cn.deleted
17127         AND NOT b.deleted
17128         AND cs.opac_visible
17129         AND cl.opac_visible
17130         AND cp.opac_visible
17131         AND a.opac_visible;
17132
17133 $$ LANGUAGE SQL;
17134 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
17135 Rebuild the copy OPAC visibility cache.  Useful during migrations.
17136 $$;
17137
17138 -- and actually populate the table
17139 SELECT asset.refresh_opac_visible_copies_mat_view();
17140
17141 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
17142 DECLARE
17143     add_query       TEXT;
17144     remove_query    TEXT;
17145     do_add          BOOLEAN := false;
17146     do_remove       BOOLEAN := false;
17147 BEGIN
17148     add_query := $$
17149             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
17150                 SELECT  cp.id, cp.circ_lib, cn.record
17151                   FROM  asset.copy cp
17152                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
17153                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
17154                         JOIN asset.copy_location cl ON (cp.location = cl.id)
17155                         JOIN config.copy_status cs ON (cp.status = cs.id)
17156                         JOIN biblio.record_entry b ON (cn.record = b.id)
17157                   WHERE NOT cp.deleted
17158                         AND NOT cn.deleted
17159                         AND NOT b.deleted
17160                         AND cs.opac_visible
17161                         AND cl.opac_visible
17162                         AND cp.opac_visible
17163                         AND a.opac_visible
17164     $$;
17165  
17166     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
17167
17168     IF TG_OP = 'INSERT' THEN
17169
17170         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17171             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17172             EXECUTE add_query;
17173         END IF;
17174
17175         RETURN NEW;
17176
17177     END IF;
17178
17179     -- handle items first, since with circulation activity
17180     -- their statuses change frequently
17181     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17182
17183         IF OLD.location    <> NEW.location OR
17184            OLD.call_number <> NEW.call_number OR
17185            OLD.status      <> NEW.status OR
17186            OLD.circ_lib    <> NEW.circ_lib THEN
17187             -- any of these could change visibility, but
17188             -- we'll save some queries and not try to calculate
17189             -- the change directly
17190             do_remove := true;
17191             do_add := true;
17192         ELSE
17193
17194             IF OLD.deleted <> NEW.deleted THEN
17195                 IF NEW.deleted THEN
17196                     do_remove := true;
17197                 ELSE
17198                     do_add := true;
17199                 END IF;
17200             END IF;
17201
17202             IF OLD.opac_visible <> NEW.opac_visible THEN
17203                 IF OLD.opac_visible THEN
17204                     do_remove := true;
17205                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
17206                                         -- is also marked opac_visible
17207                     do_add := true;
17208                 END IF;
17209             END IF;
17210
17211         END IF;
17212
17213         IF do_remove THEN
17214             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
17215         END IF;
17216         IF do_add THEN
17217             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17218             EXECUTE add_query;
17219         END IF;
17220
17221         RETURN NEW;
17222
17223     END IF;
17224
17225     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
17226  
17227         IF OLD.deleted AND NEW.deleted THEN -- do nothing
17228
17229             RETURN NEW;
17230  
17231         ELSIF NEW.deleted THEN -- remove rows
17232  
17233             IF TG_TABLE_NAME = 'call_number' THEN
17234                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
17235             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17236                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
17237             END IF;
17238  
17239             RETURN NEW;
17240  
17241         ELSIF OLD.deleted THEN -- add rows
17242  
17243             IF TG_TABLE_NAME IN ('copy','unit') THEN
17244                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17245             ELSIF TG_TABLE_NAME = 'call_number' THEN
17246                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17247             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17248                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
17249             END IF;
17250  
17251             EXECUTE add_query;
17252             RETURN NEW;
17253  
17254         END IF;
17255  
17256     END IF;
17257
17258     IF TG_TABLE_NAME = 'call_number' THEN
17259
17260         IF OLD.record <> NEW.record THEN
17261             -- call number is linked to different bib
17262             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
17263             EXECUTE remove_query;
17264             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17265             EXECUTE add_query;
17266         END IF;
17267
17268         RETURN NEW;
17269
17270     END IF;
17271
17272     IF TG_TABLE_NAME IN ('record_entry') THEN
17273         RETURN NEW; -- don't have 'opac_visible'
17274     END IF;
17275
17276     -- actor.org_unit, asset.copy_location, asset.copy_status
17277     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
17278
17279         RETURN NEW;
17280
17281     ELSIF NEW.opac_visible THEN -- add rows
17282
17283         IF TG_TABLE_NAME = 'org_unit' THEN
17284             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
17285         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17286             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
17287         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17288             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
17289         END IF;
17290  
17291         EXECUTE add_query;
17292  
17293     ELSE -- delete rows
17294
17295         IF TG_TABLE_NAME = 'org_unit' THEN
17296             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
17297         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17298             remove_query := remove_query || 'location = ' || NEW.id || ');';
17299         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17300             remove_query := remove_query || 'status = ' || NEW.id || ');';
17301         END IF;
17302  
17303         EXECUTE remove_query;
17304  
17305     END IF;
17306  
17307     RETURN NEW;
17308 END;
17309 $func$ LANGUAGE PLPGSQL;
17310 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
17311 Trigger function to update the copy OPAC visiblity cache.
17312 $$;
17313 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();
17314 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17315 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();
17316 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();
17317 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17318 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();
17319 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();
17320
17321 -- must create this rule explicitly; it is not inherited from asset.copy
17322 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;
17323
17324 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);
17325
17326 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
17327 DECLARE
17328     moved_objects INT := 0;
17329     bib_id        INT := 0;
17330     bib_rec       biblio.record_entry%ROWTYPE;
17331     auth_link     authority.bib_linking%ROWTYPE;
17332     ingest_same   boolean;
17333 BEGIN
17334
17335     -- Defining our terms:
17336     -- "target record" = the record that will survive the merge
17337     -- "source record" = the record that is sacrifing its existence and being
17338     --   replaced by the target record
17339
17340     -- 1. Update all bib records with the ID from target_record in their $0
17341     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre
17342       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
17343       WHERE abl.authority = source_record LOOP
17344
17345         UPDATE biblio.record_entry
17346           SET marc = REGEXP_REPLACE(marc,
17347             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
17348             E'\\1' || target_record || '<', 'g')
17349           WHERE id = bib_rec.id;
17350
17351           moved_objects := moved_objects + 1;
17352     END LOOP;
17353
17354     -- 2. Grab the current value of reingest on same MARC flag
17355     SELECT enabled INTO ingest_same
17356       FROM config.internal_flag
17357       WHERE name = 'ingest.reingest.force_on_same_marc'
17358     ;
17359
17360     -- 3. Temporarily set reingest on same to TRUE
17361     UPDATE config.internal_flag
17362       SET enabled = TRUE
17363       WHERE name = 'ingest.reingest.force_on_same_marc'
17364     ;
17365
17366     -- 4. Make a harmless update to target_record to trigger auto-update
17367     --    in linked bibliographic records
17368     UPDATE authority.record_entry
17369       SET deleted = FALSE
17370       WHERE id = target_record;
17371
17372     -- 5. "Delete" source_record
17373     DELETE FROM authority.record_entry
17374       WHERE id = source_record;
17375
17376     -- 6. Set "reingest on same MARC" flag back to initial value
17377     UPDATE config.internal_flag
17378       SET enabled = ingest_same
17379       WHERE name = 'ingest.reingest.force_on_same_marc'
17380     ;
17381
17382     RETURN moved_objects;
17383 END;
17384 $func$ LANGUAGE plpgsql;
17385
17386 -- serial.record_entry already had an owner column spelled "owning_lib"
17387 -- Adjust the table and affected functions accordingly
17388
17389 ALTER TABLE serial.record_entry DROP COLUMN owner;
17390
17391 CREATE TABLE actor.usr_saved_search (
17392     id              SERIAL          PRIMARY KEY,
17393         owner           INT             NOT NULL REFERENCES actor.usr (id)
17394                                         ON DELETE CASCADE
17395                                         DEFERRABLE INITIALLY DEFERRED,
17396         name            TEXT            NOT NULL,
17397         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
17398         query_text      TEXT            NOT NULL,
17399         query_type      TEXT            NOT NULL
17400                                         CONSTRAINT valid_query_text CHECK (
17401                                         query_type IN ( 'URL' )) DEFAULT 'URL',
17402                                         -- we may add other types someday
17403         target          TEXT            NOT NULL
17404                                         CONSTRAINT valid_target CHECK (
17405                                         target IN ( 'record', 'metarecord', 'callnumber' )),
17406         CONSTRAINT name_once_per_user UNIQUE (owner, name)
17407 );
17408
17409 -- Apply Dan Wells' changes to the serial schema, from the
17410 -- seials-integration branch
17411
17412 CREATE TABLE serial.subscription_note (
17413         id           SERIAL PRIMARY KEY,
17414         subscription INT    NOT NULL
17415                             REFERENCES serial.subscription (id)
17416                             ON DELETE CASCADE
17417                             DEFERRABLE INITIALLY DEFERRED,
17418         creator      INT    NOT NULL
17419                             REFERENCES actor.usr (id)
17420                             DEFERRABLE INITIALLY DEFERRED,
17421         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17422         pub          BOOL   NOT NULL DEFAULT FALSE,
17423         title        TEXT   NOT NULL,
17424         value        TEXT   NOT NULL
17425 );
17426 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
17427
17428 CREATE TABLE serial.distribution_note (
17429         id           SERIAL PRIMARY KEY,
17430         distribution INT    NOT NULL
17431                             REFERENCES serial.distribution (id)
17432                             ON DELETE CASCADE
17433                             DEFERRABLE INITIALLY DEFERRED,
17434         creator      INT    NOT NULL
17435                             REFERENCES actor.usr (id)
17436                             DEFERRABLE INITIALLY DEFERRED,
17437         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17438         pub          BOOL   NOT NULL DEFAULT FALSE,
17439         title        TEXT   NOT NULL,
17440         value        TEXT   NOT NULL
17441 );
17442 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
17443
17444 ------- Begin surgery on serial.unit
17445
17446 ALTER TABLE serial.unit
17447         DROP COLUMN label;
17448
17449 ALTER TABLE serial.unit
17450         RENAME COLUMN label_sort_key TO sort_key;
17451
17452 ALTER TABLE serial.unit
17453         RENAME COLUMN contents TO detailed_contents;
17454
17455 ALTER TABLE serial.unit
17456         ADD COLUMN summary_contents TEXT;
17457
17458 UPDATE serial.unit
17459 SET summary_contents = detailed_contents;
17460
17461 ALTER TABLE serial.unit
17462         ALTER column summary_contents SET NOT NULL;
17463
17464 ------- End surgery on serial.unit
17465
17466 -- 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' );
17467
17468 -- Now rebuild the constraints dropped via cascade.
17469 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
17470 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
17471 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
17472
17473 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
17474
17475 DELETE FROM config.metabib_field_index_norm_map
17476     WHERE norm IN (
17477         SELECT id 
17478             FROM config.index_normalizer
17479             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
17480     )
17481     AND field = 18
17482 ;
17483
17484 -- We won't necessarily use all of these, but they are here for completeness.
17485 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
17486 -- Values are the EDI code value + 1200
17487
17488 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
17489 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
17490 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
17491 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
17492 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
17493 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
17494 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
17495 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
17496 (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.'),
17497 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
17498 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
17499 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
17500 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
17501 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
17502 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
17503 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
17504 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
17505 (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.'),
17506 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
17507 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
17508 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
17509 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
17510 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
17511 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
17512 (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.'),
17513 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
17514 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
17515 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
17516 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
17517 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
17518 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
17519 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
17520 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
17521 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
17522 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
17523 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
17524 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
17525 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
17526 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
17527 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
17528 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
17529 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
17530 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
17531 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
17532 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
17533 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
17534 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
17535 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
17536 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
17537 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
17538 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
17539 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
17540 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
17541 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
17542 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
17543 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
17544 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
17545 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
17546 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
17547 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
17548 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
17549 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
17550 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
17551 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
17552 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
17553 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
17554 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
17555 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
17556 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
17557 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
17558 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
17559 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
17560 (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.'),
17561 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
17562 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
17563 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
17564 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
17565 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
17566 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
17567 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
17568 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
17569 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
17570 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
17571 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
17572 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
17573 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
17574 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
17575 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
17576 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
17577 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
17578 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
17579 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
17580 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
17581 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
17582 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
17583 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
17584 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
17585 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
17586 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
17587 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
17588 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
17589 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
17590 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
17591 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
17592 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
17593 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
17594 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
17595 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
17596 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
17597 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
17598 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
17599 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
17600 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
17601 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
17602 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
17603 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
17604 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
17605 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
17606 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
17607 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
17608 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
17609 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
17610 (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.'),
17611 (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.'),
17612 (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.'),
17613 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
17614 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
17615 (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.'),
17616 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
17617 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
17618 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
17619 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
17620 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
17621 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
17622 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
17623 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
17624 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
17625 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
17626 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
17627 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
17628 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
17629 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
17630 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
17631 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
17632 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
17633 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
17634 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
17635 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
17636 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
17637 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
17638 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
17639 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
17640 (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.'),
17641 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
17642 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
17643 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
17644 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
17645 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
17646 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
17647 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
17648 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
17649 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
17650 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
17651 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
17652 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
17653 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
17654 (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.'),
17655 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
17656 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
17657 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
17658 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
17659 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
17660 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
17661 (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.'),
17662 (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.'),
17663 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
17664 (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.'),
17665 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
17666 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
17667 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
17668 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
17669 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
17670 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
17671 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
17672 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
17673 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
17674 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
17675 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
17676 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
17677 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
17678 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
17679 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
17680 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
17681 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
17682 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
17683 (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.'),
17684 (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.'),
17685 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
17686 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
17687 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
17688 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
17689 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
17690 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
17691 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
17692 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
17693 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
17694 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
17695 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
17696 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
17697 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
17698 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
17699 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
17700 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
17701 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
17702 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
17703 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
17704 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
17705 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
17706 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
17707 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
17708 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
17709 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
17710 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
17711 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
17712 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
17713 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
17714 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
17715 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
17716 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
17717 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
17718 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
17719 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
17720 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
17721 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
17722 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
17723 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
17724 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
17725 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
17726 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
17727 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
17728 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17729 (1, 't', 1442, 'Number of months', 'The number of months.'),
17730 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17731 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17732 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17733 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17734 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17735 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17736 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17737 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17738 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17739 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17740 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17741 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17742 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17743 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17744 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17745 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17746 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17747 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17748 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17749 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17750 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17751 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17752 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17753 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17754 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17755 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17756 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17757 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17758 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17759 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17760 (1, 't', 1473, 'Agents', 'The number of agents.'),
17761 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17762 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17763 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17764 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17765 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17766 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17767 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17768 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17769 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17770 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17771 (1, 't', 1484, 'Departments', 'The number of departments.'),
17772 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17773 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17774 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17775 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17776 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17777 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17778 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17779 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17780 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17781 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17782 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17783 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17784 (1, 't', 1497, 'Executives', 'The number of executives.'),
17785 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17786 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17787 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17788 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17789 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17790 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17791 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17792 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17793 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17794 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17795 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17796 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17797 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17798 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17799 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17800 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17801 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17802 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17803 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17804 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17805 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17806 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17807 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17808 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17809 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17810 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17811 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17812 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17813 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17814 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17815 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17816 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17817 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17818 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17819 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17820 (1, 't', 1533, 'Seats',        'The number of seats.'),
17821 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17822 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17823 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17824 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17825 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17826 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17827 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17828 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17829 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17830 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17831 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17832 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17833 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17834 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17835 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17836 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17837 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17838 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17839 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17840 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17841 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17842 (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.'),
17843 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17844 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17845 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17846 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17847 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17848 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17849 (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.'),
17850 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17851 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17852 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17853 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17854 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17855 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17856 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17857 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17858 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17859 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17860 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17861 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17862 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17863 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17864 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17865 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17866 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17867 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17868 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17869 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17870 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17871 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17872 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17873 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17874 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17875 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17876 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17877 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17878 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17879 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17880 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17881 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17882 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17883 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17884 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17885 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17886 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17887 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17888 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17889 (1, 't', 1602, 'Patients',         'Number of patients.'),
17890 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17891 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17892 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17893 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17894 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17895 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17896 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17897 (1, 't', 1610, 'Operators',        'Number of operators.'),
17898 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17899 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17900 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17901 (1, 't', 1614, 'Machines',         'Number of machines.'),
17902 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17903 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17904 (1, 't', 1617, 'Directors',        'Number of directors.'),
17905 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17906 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17907 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17908 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17909 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17910 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17911 (1, 't', 1624, 'Beds', 'Number of beds.'),
17912 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17913 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17914 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17915 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17916 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17917 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17918 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17919 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17920 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17921 (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.'),
17922 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17923 (1, 't', 1636, 'Professor', 'The number of professors.'),
17924 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17925 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17926 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17927 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17928 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17929 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17930 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17931 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17932 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17933 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17934 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17935 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17936 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17937 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17938 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17939 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17940 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17941 (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.'),
17942 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17943 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17944 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17945 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17946 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17947 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17948 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17949 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17950 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17951 (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.'),
17952 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17953 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17954 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17955 (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.'),
17956 (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.'),
17957 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17958 (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.'),
17959 (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.'),
17960 (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.'),
17961 (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.'),
17962 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17963 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17964 (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.'),
17965 (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.'),
17966 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17967 (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.'),
17968 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17969 (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.'),
17970 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17971 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17972 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17973 (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).'),
17974 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17975 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17976 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17977 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17978 ;
17979 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17980
17981 CREATE TABLE acq.serial_claim (
17982     id     SERIAL           PRIMARY KEY,
17983     type   INT              NOT NULL REFERENCES acq.claim_type
17984                                      DEFERRABLE INITIALLY DEFERRED,
17985     item    BIGINT          NOT NULL REFERENCES serial.item
17986                                      DEFERRABLE INITIALLY DEFERRED
17987 );
17988
17989 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17990
17991 CREATE TABLE acq.serial_claim_event (
17992     id             BIGSERIAL        PRIMARY KEY,
17993     type           INT              NOT NULL REFERENCES acq.claim_event_type
17994                                              DEFERRABLE INITIALLY DEFERRED,
17995     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17996                                              DEFERRABLE INITIALLY DEFERRED,
17997     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17998     creator        INT              NOT NULL REFERENCES actor.usr
17999                                              DEFERRABLE INITIALLY DEFERRED,
18000     note           TEXT
18001 );
18002
18003 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
18004
18005 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
18006
18007 -- now what about the auditor.*_lifecycle views??
18008
18009 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
18010     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
18011 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
18012     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
18013 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
18014 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
18015
18016 CREATE TABLE asset.call_number_class (
18017     id             bigserial     PRIMARY KEY,
18018     name           TEXT          NOT NULL,
18019     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
18020     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
18021 );
18022
18023 COMMENT ON TABLE asset.call_number_class IS $$
18024 Defines the call number normalization database functions in the "normalizer"
18025 column and the tag/subfield combinations to use to lookup the call number in
18026 the "field" column for a given classification scheme. Tag/subfield combinations
18027 are delimited by commas.
18028 $$;
18029
18030 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
18031     ('Generic', 'asset.label_normalizer_generic'),
18032     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
18033     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
18034 ;
18035
18036 -- Generic fields
18037 UPDATE asset.call_number_class
18038     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
18039     WHERE id = 1
18040 ;
18041
18042 -- Dewey fields
18043 UPDATE asset.call_number_class
18044     SET field = '080ab,082ab'
18045     WHERE id = 2
18046 ;
18047
18048 -- LC fields
18049 UPDATE asset.call_number_class
18050     SET field = '050ab,055ab'
18051     WHERE id = 3
18052 ;
18053  
18054 ALTER TABLE asset.call_number
18055         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
18056                 REFERENCES asset.call_number_class(id)
18057                 DEFERRABLE INITIALLY DEFERRED;
18058
18059 ALTER TABLE asset.call_number
18060         ADD COLUMN label_sortkey TEXT;
18061
18062 CREATE INDEX asset_call_number_label_sortkey
18063         ON asset.call_number(oils_text_as_bytea(label_sortkey));
18064
18065 ALTER TABLE auditor.asset_call_number_history
18066         ADD COLUMN label_class BIGINT;
18067
18068 ALTER TABLE auditor.asset_call_number_history
18069         ADD COLUMN label_sortkey TEXT;
18070
18071 -- Pick up the new columns in dependent views
18072
18073 DROP VIEW auditor.asset_call_number_lifecycle;
18074
18075 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
18076
18077 DROP VIEW auditor.asset_call_number_lifecycle;
18078
18079 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
18080
18081 DROP VIEW IF EXISTS stats.fleshed_call_number;
18082
18083 CREATE VIEW stats.fleshed_call_number AS
18084         SELECT  cn.*,
18085             CAST(cn.create_date AS DATE) AS create_date_day,
18086         CAST(cn.edit_date AS DATE) AS edit_date_day,
18087         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
18088         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
18089             rd.item_lang,
18090                 rd.item_type,
18091                 rd.item_form
18092         FROM    asset.call_number cn
18093                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
18094
18095 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
18096 DECLARE
18097     sortkey        TEXT := '';
18098 BEGIN
18099     sortkey := NEW.label_sortkey;
18100
18101     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
18102        quote_literal( NEW.label ) || ')'
18103        FROM asset.call_number_class acnc
18104        WHERE acnc.id = NEW.label_class
18105        INTO sortkey;
18106
18107     NEW.label_sortkey = sortkey;
18108
18109     RETURN NEW;
18110 END;
18111 $func$ LANGUAGE PLPGSQL;
18112
18113 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
18114     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
18115     # thus could probably be considered a derived work, although nothing was
18116     # directly copied - but to err on the safe side of providing attribution:
18117     # Copyright (C) 2007 LibLime
18118     # Licensed under the GPL v2 or later
18119
18120     use strict;
18121     use warnings;
18122
18123     # Converts the callnumber to uppercase
18124     # Strips spaces from start and end of the call number
18125     # Converts anything other than letters, digits, and periods into underscores
18126     # Collapses multiple underscores into a single underscore
18127     my $callnum = uc(shift);
18128     $callnum =~ s/^\s//g;
18129     $callnum =~ s/\s$//g;
18130     $callnum =~ s/[^A-Z0-9_.]/_/g;
18131     $callnum =~ s/_{2,}/_/g;
18132
18133     return $callnum;
18134 $func$ LANGUAGE PLPERLU;
18135
18136 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
18137     # Derived from the Koha C4::ClassSortRoutine::Dewey module
18138     # Copyright (C) 2007 LibLime
18139     # Licensed under the GPL v2 or later
18140
18141     use strict;
18142     use warnings;
18143
18144     my $init = uc(shift);
18145     $init =~ s/^\s+//;
18146     $init =~ s/\s+$//;
18147     $init =~ s!/!!g;
18148     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
18149     my @tokens = split /\.|\s+/, $init;
18150     my $digit_group_count = 0;
18151     for (my $i = 0; $i <= $#tokens; $i++) {
18152         if ($tokens[$i] =~ /^\d+$/) {
18153             $digit_group_count++;
18154             if (2 == $digit_group_count) {
18155                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
18156                 $tokens[$i] =~ tr/ /0/;
18157             }
18158         }
18159     }
18160     my $key = join("_", @tokens);
18161     $key =~ s/[^\p{IsAlnum}_]//g;
18162
18163     return $key;
18164
18165 $func$ LANGUAGE PLPERLU;
18166
18167 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
18168     use strict;
18169     use warnings;
18170
18171     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
18172     # The author hopes to upload it to CPAN some day, which would make our lives easier
18173     use Library::CallNumber::LC;
18174
18175     my $callnum = Library::CallNumber::LC->new(shift);
18176     return $callnum->normalize();
18177
18178 $func$ LANGUAGE PLPERLU;
18179
18180 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$
18181 DECLARE
18182     ans RECORD;
18183     trans INT;
18184 BEGIN
18185     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;
18186
18187     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
18188         RETURN QUERY
18189         SELECT  ans.depth,
18190                 ans.id,
18191                 COUNT( av.id ),
18192                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18193                 COUNT( av.id ),
18194                 trans
18195           FROM
18196                 actor.org_unit_descendants(ans.id) d
18197                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18198                 JOIN asset.copy cp ON (cp.id = av.id)
18199           GROUP BY 1,2,6;
18200
18201         IF NOT FOUND THEN
18202             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18203         END IF;
18204
18205     END LOOP;
18206
18207     RETURN;
18208 END;
18209 $f$ LANGUAGE PLPGSQL;
18210
18211 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$
18212 DECLARE
18213     ans RECORD;
18214     trans INT;
18215 BEGIN
18216     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;
18217
18218     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18219         RETURN QUERY
18220         SELECT  -1,
18221                 ans.id,
18222                 COUNT( av.id ),
18223                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18224                 COUNT( av.id ),
18225                 trans
18226           FROM
18227                 actor.org_unit_descendants(ans.id) d
18228                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18229                 JOIN asset.copy cp ON (cp.id = av.id)
18230           GROUP BY 1,2,6;
18231
18232         IF NOT FOUND THEN
18233             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18234         END IF;
18235
18236     END LOOP;
18237
18238     RETURN;
18239 END;
18240 $f$ LANGUAGE PLPGSQL;
18241
18242 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$
18243 DECLARE
18244     ans RECORD;
18245     trans INT;
18246 BEGIN
18247     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;
18248
18249     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
18250         RETURN QUERY
18251         SELECT  ans.depth,
18252                 ans.id,
18253                 COUNT( cp.id ),
18254                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18255                 COUNT( cp.id ),
18256                 trans
18257           FROM
18258                 actor.org_unit_descendants(ans.id) d
18259                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18260                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18261           GROUP BY 1,2,6;
18262
18263         IF NOT FOUND THEN
18264             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18265         END IF;
18266
18267     END LOOP;
18268
18269     RETURN;
18270 END;
18271 $f$ LANGUAGE PLPGSQL;
18272
18273 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$
18274 DECLARE
18275     ans RECORD;
18276     trans INT;
18277 BEGIN
18278     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;
18279
18280     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18281         RETURN QUERY
18282         SELECT  -1,
18283                 ans.id,
18284                 COUNT( cp.id ),
18285                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18286                 COUNT( cp.id ),
18287                 trans
18288           FROM
18289                 actor.org_unit_descendants(ans.id) d
18290                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18291                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18292           GROUP BY 1,2,6;
18293
18294         IF NOT FOUND THEN
18295             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18296         END IF;
18297
18298     END LOOP;
18299
18300     RETURN;
18301 END;
18302 $f$ LANGUAGE PLPGSQL;
18303
18304 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$
18305 BEGIN
18306     IF staff IS TRUE THEN
18307         IF place > 0 THEN
18308             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
18309         ELSE
18310             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
18311         END IF;
18312     ELSE
18313         IF place > 0 THEN
18314             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
18315         ELSE
18316             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
18317         END IF;
18318     END IF;
18319
18320     RETURN;
18321 END;
18322 $f$ LANGUAGE PLPGSQL;
18323
18324 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$
18325 DECLARE
18326     ans RECORD;
18327     trans INT;
18328 BEGIN
18329     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;
18330
18331     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
18332         RETURN QUERY
18333         SELECT  ans.depth,
18334                 ans.id,
18335                 COUNT( av.id ),
18336                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18337                 COUNT( av.id ),
18338                 trans
18339           FROM
18340                 actor.org_unit_descendants(ans.id) d
18341                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18342                 JOIN asset.copy cp ON (cp.id = av.id)
18343                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18344           GROUP BY 1,2,6;
18345
18346         IF NOT FOUND THEN
18347             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18348         END IF;
18349
18350     END LOOP;
18351
18352     RETURN;
18353 END;
18354 $f$ LANGUAGE PLPGSQL;
18355
18356 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$
18357 DECLARE
18358     ans RECORD;
18359     trans INT;
18360 BEGIN
18361     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;
18362
18363     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18364         RETURN QUERY
18365         SELECT  -1,
18366                 ans.id,
18367                 COUNT( av.id ),
18368                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18369                 COUNT( av.id ),
18370                 trans
18371           FROM
18372                 actor.org_unit_descendants(ans.id) d
18373                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18374                 JOIN asset.copy cp ON (cp.id = av.id)
18375                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18376           GROUP BY 1,2,6;
18377
18378         IF NOT FOUND THEN
18379             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18380         END IF;
18381
18382     END LOOP;
18383
18384     RETURN;
18385 END;
18386 $f$ LANGUAGE PLPGSQL;
18387
18388 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$
18389 DECLARE
18390     ans RECORD;
18391     trans INT;
18392 BEGIN
18393     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;
18394
18395     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
18396         RETURN QUERY
18397         SELECT  ans.depth,
18398                 ans.id,
18399                 COUNT( cp.id ),
18400                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18401                 COUNT( cp.id ),
18402                 trans
18403           FROM
18404                 actor.org_unit_descendants(ans.id) d
18405                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18406                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18407                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18408           GROUP BY 1,2,6;
18409
18410         IF NOT FOUND THEN
18411             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18412         END IF;
18413
18414     END LOOP;
18415
18416     RETURN;
18417 END;
18418 $f$ LANGUAGE PLPGSQL;
18419
18420 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$
18421 DECLARE
18422     ans RECORD;
18423     trans INT;
18424 BEGIN
18425     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;
18426
18427     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18428         RETURN QUERY
18429         SELECT  -1,
18430                 ans.id,
18431                 COUNT( cp.id ),
18432                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18433                 COUNT( cp.id ),
18434                 trans
18435           FROM
18436                 actor.org_unit_descendants(ans.id) d
18437                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18438                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18439                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18440           GROUP BY 1,2,6;
18441
18442         IF NOT FOUND THEN
18443             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18444         END IF;
18445
18446     END LOOP;
18447
18448     RETURN;
18449 END;
18450 $f$ LANGUAGE PLPGSQL;
18451
18452 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$
18453 BEGIN
18454     IF staff IS TRUE THEN
18455         IF place > 0 THEN
18456             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
18457         ELSE
18458             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
18459         END IF;
18460     ELSE
18461         IF place > 0 THEN
18462             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
18463         ELSE
18464             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
18465         END IF;
18466     END IF;
18467
18468     RETURN;
18469 END;
18470 $f$ LANGUAGE PLPGSQL;
18471
18472 -- No transaction is required
18473
18474 -- Triggers on the vandelay.queued_*_record tables delete entries from
18475 -- the associated vandelay.queued_*_record_attr tables based on the record's
18476 -- ID; create an index on that column to avoid sequential scans for each
18477 -- queued record that is deleted
18478 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
18479 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
18480
18481 -- Avoid sequential scans for queue retrieval operations by providing an
18482 -- index on the queue column
18483 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
18484 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
18485
18486 -- Start picking up call number label prefixes and suffixes
18487 -- from asset.copy_location
18488 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
18489 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
18490
18491 DROP VIEW auditor.asset_copy_lifecycle;
18492
18493 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
18494
18495 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
18496
18497 -- Let's not break existing reports
18498 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
18499 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
18500
18501 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
18502 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
18503 SELECT  r.id,
18504     r.fingerprint,
18505     r.quality,
18506     r.tcn_source,
18507     r.tcn_value,
18508     FIRST(title.value) AS title,
18509     FIRST(author.value) AS author,
18510     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
18511     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
18512     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18513     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
18514   FROM  biblio.record_entry r
18515     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18516     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
18517     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18518     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18519     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18520     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18521   GROUP BY 1,2,3,4,5;
18522
18523 -- Correct the ISSN array definition for reporter.simple_record
18524
18525 CREATE OR REPLACE VIEW reporter.simple_record AS
18526 SELECT  r.id,
18527         s.metarecord,
18528         r.fingerprint,
18529         r.quality,
18530         r.tcn_source,
18531         r.tcn_value,
18532         title.value AS title,
18533         uniform_title.value AS uniform_title,
18534         author.value AS author,
18535         publisher.value AS publisher,
18536         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
18537         series_title.value AS series_title,
18538         series_statement.value AS series_statement,
18539         summary.value AS summary,
18540         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18541         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
18542         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
18543         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
18544         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
18545         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
18546         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
18547         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
18548   FROM  biblio.record_entry r
18549         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
18550         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
18551         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18552         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
18553         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18554         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18555         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18556         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18557         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')
18558         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
18559         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
18560   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
18561
18562 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
18563     DROP TRIGGER IF EXISTS bbb_simple_rec_trigger ON biblio.record_entry;
18564 $$ LANGUAGE SQL;
18565
18566 CREATE OR REPLACE FUNCTION reporter.enable_materialized_simple_record_trigger () RETURNS VOID AS $$
18567
18568     DELETE FROM reporter.materialized_simple_record;
18569
18570     INSERT INTO reporter.materialized_simple_record
18571         (id,fingerprint,quality,tcn_source,tcn_value,title,author,publisher,pubdate,isbn,issn)
18572         SELECT DISTINCT ON (id) * FROM reporter.old_super_simple_record;
18573
18574     CREATE TRIGGER bbb_simple_rec_trigger
18575         AFTER INSERT OR UPDATE OR DELETE ON biblio.record_entry
18576         FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger();
18577
18578 $$ LANGUAGE SQL;
18579
18580 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
18581 BEGIN
18582     IF TG_OP = 'DELETE' THEN
18583         PERFORM reporter.simple_rec_delete(NEW.id);
18584     ELSE
18585         PERFORM reporter.simple_rec_update(NEW.id);
18586     END IF;
18587
18588     RETURN NEW;
18589 END;
18590 $func$ LANGUAGE PLPGSQL;
18591
18592 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE OR DELETE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
18593
18594 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
18595
18596 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
18597
18598 UPDATE config.org_unit_setting_type
18599     SET view_perm = (SELECT id FROM permission.perm_list
18600         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
18601     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
18602
18603 UPDATE config.org_unit_setting_type
18604     SET update_perm = (SELECT id FROM permission.perm_list
18605         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
18606     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
18607
18608 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
18609     VALUES (
18610         'opac.fully_compressed_serial_holdings',
18611         'OPAC: Use fully compressed serial holdings',
18612         'Show fully compressed serial holdings for all libraries at and below
18613         the current context unit',
18614         'bool'
18615     );
18616
18617 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
18618     use strict;
18619     use warnings;
18620
18621     use utf8;
18622     use MARC::Record;
18623     use MARC::File::XML (BinaryEncoding => 'UTF8');
18624     use MARC::Charset;
18625     use UUID::Tiny ':std';
18626
18627     MARC::Charset->assume_unicode(1);
18628
18629     my $xml = shift() or return undef;
18630
18631     my $r;
18632
18633     # Prevent errors in XML parsing from blowing out ungracefully
18634     eval {
18635         $r = MARC::Record->new_from_xml( $xml );
18636         1;
18637     } or do {
18638        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18639     };
18640
18641     if (!$r) {
18642        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18643     }
18644
18645     # From http://www.loc.gov/standards/sourcelist/subject.html
18646     my $thes_code_map = {
18647         a => 'lcsh',
18648         b => 'lcshac',
18649         c => 'mesh',
18650         d => 'nal',
18651         k => 'cash',
18652         n => 'notapplicable',
18653         r => 'aat',
18654         s => 'sears',
18655         v => 'rvm',
18656     };
18657
18658     # Default to "No attempt to code" if the leader is horribly broken
18659     my $fixed_field = $r->field('008');
18660     my $thes_char = '|';
18661     if ($fixed_field) { 
18662         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
18663     }
18664
18665     my $thes_code = 'UNDEFINED';
18666
18667     if ($thes_char eq 'z') {
18668         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
18669         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
18670     } elsif ($thes_code_map->{$thes_char}) {
18671         $thes_code = $thes_code_map->{$thes_char};
18672     }
18673
18674     my $auth_txt = '';
18675     my $head = $r->field('1..');
18676     if ($head) {
18677         # Concatenate all of these subfields together, prefixed by their code
18678         # to prevent collisions along the lines of "Fiction, North Carolina"
18679         foreach my $sf ($head->subfields()) {
18680             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
18681         }
18682     }
18683     
18684     if ($auth_txt) {
18685         my $stmt = spi_prepare('SELECT public.naco_normalize($1) AS norm_text', 'TEXT');
18686         my $result = spi_exec_prepared($stmt, $auth_txt);
18687         my $norm_txt = $result->{rows}[0]->{norm_text};
18688         spi_freeplan($stmt);
18689         undef($stmt);
18690         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
18691     }
18692
18693     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
18694 $func$ LANGUAGE 'plperlu' IMMUTABLE;
18695
18696 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
18697 /**
18698 * Extract the authority heading, thesaurus, and NACO-normalized values
18699 * from an authority record. The primary purpose is to build a unique
18700 * index to defend against duplicated authority records from the same
18701 * thesaurus.
18702 */
18703 $$;
18704
18705 DROP INDEX authority.authority_record_unique_tcn;
18706 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
18707 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
18708
18709 ALTER TABLE acq.provider_contact
18710         ALTER COLUMN name SET NOT NULL;
18711
18712 ALTER TABLE actor.stat_cat
18713         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
18714
18715 -- Per Robert Soulliere, it can be necessary in some cases to clean out bad
18716 -- data from action.reservation_transit_copy before applying the missing
18717 -- fkeys below.
18718 -- https://bugs.launchpad.net/evergreen/+bug/721450
18719 DELETE FROM action.reservation_transit_copy
18720     WHERE target_copy NOT IN (SELECT id FROM booking.resource);
18721 -- In the same spirit as the above delete, this can only fix bad data.
18722 UPDATE action.reservation_transit_copy
18723     SET reservation = NULL
18724     WHERE reservation NOT IN (SELECT id FROM booking.reservation);
18725
18726 -- Recreate some foreign keys that were somehow dropped, probably
18727 -- by some kind of cascade from an inherited table:
18728
18729 CREATE INDEX user_bucket_item_target_user_idx
18730         ON container.user_bucket_item ( target_user );
18731
18732 CREATE INDEX m_c_t_collector_idx
18733         ON money.collections_tracker ( collector );
18734
18735 CREATE INDEX aud_actor_usr_address_hist_id_idx
18736         ON auditor.actor_usr_address_history ( id );
18737
18738 CREATE INDEX aud_actor_usr_hist_id_idx
18739         ON auditor.actor_usr_history ( id );
18740
18741 CREATE INDEX aud_asset_cn_hist_creator_idx
18742         ON auditor.asset_call_number_history ( creator );
18743
18744 CREATE INDEX aud_asset_cn_hist_editor_idx
18745         ON auditor.asset_call_number_history ( editor );
18746
18747 CREATE INDEX aud_asset_cp_hist_creator_idx
18748         ON auditor.asset_copy_history ( creator );
18749
18750 CREATE INDEX aud_asset_cp_hist_editor_idx
18751         ON auditor.asset_copy_history ( editor );
18752
18753 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18754         ON auditor.biblio_record_entry_history ( creator );
18755
18756 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18757         ON auditor.biblio_record_entry_history ( editor );
18758
18759 CREATE TABLE action.hold_request_note (
18760
18761     id     BIGSERIAL PRIMARY KEY,
18762     hold   BIGINT    NOT NULL REFERENCES action.hold_request (id)
18763                               ON DELETE CASCADE
18764                               DEFERRABLE INITIALLY DEFERRED,
18765     title  TEXT      NOT NULL,
18766     body   TEXT      NOT NULL,
18767     slip   BOOL      NOT NULL DEFAULT FALSE,
18768     pub    BOOL      NOT NULL DEFAULT FALSE,
18769     staff  BOOL      NOT NULL DEFAULT FALSE  -- created by staff
18770
18771 );
18772 CREATE INDEX ahrn_hold_idx ON action.hold_request_note (hold);
18773
18774 -- Tweak a constraint to add a CASCADE
18775
18776 ALTER TABLE action.hold_notification DROP CONSTRAINT hold_notification_hold_fkey;
18777
18778 ALTER TABLE action.hold_notification
18779         ADD CONSTRAINT hold_notification_hold_fkey
18780                 FOREIGN KEY (hold) REFERENCES action.hold_request (id)
18781                 ON DELETE CASCADE
18782                 DEFERRABLE INITIALLY DEFERRED;
18783
18784 CREATE TRIGGER asset_label_sortkey_trigger
18785     BEFORE UPDATE OR INSERT ON asset.call_number
18786     FOR EACH ROW EXECUTE PROCEDURE asset.label_normalizer();
18787
18788 -- Now populate the label_sortkey column via the trigger
18789 UPDATE asset.call_number SET id = id;
18790
18791 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
18792 RETURNS VOID AS $$
18793 --
18794 -- Delete expired circulation bucket items for all users that have
18795 -- a setting for patron.max_reading_list_interval.
18796 --
18797 DECLARE
18798     today        TIMESTAMP WITH TIME ZONE;
18799     threshold    TIMESTAMP WITH TIME ZONE;
18800         usr_setting  RECORD;
18801 BEGIN
18802         SELECT date_trunc( 'day', now() ) INTO today;
18803         --
18804         FOR usr_setting in
18805                 SELECT
18806                         usr,
18807                         value
18808                 FROM
18809                         actor.usr_setting
18810                 WHERE
18811                         name = 'patron.max_reading_list_interval'
18812         LOOP
18813                 --
18814                 -- Make sure the setting is a valid interval
18815                 --
18816                 BEGIN
18817                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
18818                 EXCEPTION
18819                         WHEN OTHERS THEN
18820                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
18821                                         usr_setting.usr, usr_setting.value;
18822                                 CONTINUE;
18823                 END;
18824                 --
18825                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
18826                 --
18827         DELETE FROM container.copy_bucket_item
18828         WHERE
18829                 bucket IN
18830                 (
18831                     SELECT
18832                         id
18833                     FROM
18834                         container.copy_bucket
18835                     WHERE
18836                         owner = usr_setting.usr
18837                         AND btype = 'circ_history'
18838                 )
18839                 AND create_time < threshold;
18840         END LOOP;
18841         --
18842 END;
18843 $$ LANGUAGE plpgsql;
18844
18845 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
18846 /*
18847  * Delete expired circulation bucket items for all users that have
18848  * a setting for patron.max_reading_list_interval.
18849 */
18850 $$;
18851
18852 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
18853          ac_usr IN INTEGER
18854 ) RETURNS VOID AS $$
18855 --
18856 -- Delete old circulation bucket items for a specified user.
18857 -- "Old" means older than the interval specified by a
18858 -- user-level setting, if it is so specified.
18859 --
18860 DECLARE
18861     threshold TIMESTAMP WITH TIME ZONE;
18862 BEGIN
18863         -- Sanity check
18864         IF ac_usr IS NULL THEN
18865                 RETURN;
18866         END IF;
18867         -- Determine the threshold date that defines "old".  Subtract the
18868         -- interval from the system date, then truncate to midnight.
18869         SELECT
18870                 date_trunc( 
18871                         'day',
18872                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
18873                 )
18874         INTO
18875                 threshold
18876         FROM
18877                 actor.usr_setting
18878         WHERE
18879                 usr = ac_usr
18880                 AND name = 'patron.max_reading_list_interval';
18881         --
18882         IF threshold is null THEN
18883                 -- No interval defined; don't delete anything
18884                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
18885                 return;
18886         END IF;
18887         --
18888         -- RAISE NOTICE 'Date threshold: %', threshold;
18889         --
18890         -- Threshold found; do the delete
18891         delete from container.copy_bucket_item
18892         where
18893                 bucket in
18894                 (
18895                         select
18896                                 id
18897                         from
18898                                 container.copy_bucket
18899                         where
18900                                 owner = ac_usr
18901                                 and btype = 'circ_history'
18902                 )
18903                 and create_time < threshold;
18904         --
18905         RETURN;
18906 END;
18907 $$ LANGUAGE plpgsql;
18908
18909 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
18910 /*
18911  * Delete old circulation bucket items for a specified user.
18912  * "Old" means older than the interval specified by a
18913  * user-level setting, if it is so specified.
18914 */
18915 $$;
18916
18917 CREATE OR REPLACE VIEW reporter.hold_request_record AS
18918 SELECT  id,
18919     target,
18920     hold_type,
18921     CASE
18922         WHEN hold_type = 'T'
18923             THEN target
18924         WHEN hold_type = 'I'
18925             THEN (SELECT ssub.record_entry FROM serial.subscription ssub JOIN serial.issuance si ON (si.subscription = ssub.id) WHERE si.id = ahr.target)
18926         WHEN hold_type = 'V'
18927             THEN (SELECT cn.record FROM asset.call_number cn WHERE cn.id = ahr.target)
18928         WHEN hold_type IN ('C','R','F')
18929             THEN (SELECT cn.record FROM asset.call_number cn JOIN asset.copy cp ON (cn.id = cp.call_number) WHERE cp.id = ahr.target)
18930         WHEN hold_type = 'M'
18931             THEN (SELECT mr.master_record FROM metabib.metarecord mr WHERE mr.id = ahr.target)
18932     END AS bib_record
18933   FROM  action.hold_request ahr;
18934
18935 UPDATE  metabib.rec_descriptor
18936   SET   date1=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date1, ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
18937         date2=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date2, ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
18938
18939 -- Change some ints to bigints:
18940
18941 ALTER TABLE container.biblio_record_entry_bucket_item
18942         ALTER COLUMN target_biblio_record_entry SET DATA TYPE bigint;
18943
18944 ALTER TABLE vandelay.queued_bib_record
18945         ALTER COLUMN imported_as SET DATA TYPE bigint;
18946
18947 ALTER TABLE action.hold_copy_map
18948         ALTER COLUMN id SET DATA TYPE bigint;
18949
18950 -- Make due times get pushed to 23:59:59 on insert OR update
18951 DROP TRIGGER IF EXISTS push_due_date_tgr ON action.circulation;
18952 CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.push_circ_due_time();
18953
18954 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath, remove )
18955 SELECT 'upc', 'UPC', '//*[@tag="024" and @ind1="1"]/*[@code="a"]', $r$(?:-|\s.+$)$r$
18956 WHERE NOT EXISTS (
18957     SELECT 1 FROM acq.lineitem_marc_attr_definition WHERE code = 'upc'
18958 );  
18959
18960 -- '@@' auto-placeholder barcode support
18961 CREATE OR REPLACE FUNCTION asset.autogenerate_placeholder_barcode ( ) RETURNS TRIGGER AS $f$
18962 BEGIN
18963         IF NEW.barcode LIKE '@@%' THEN
18964                 NEW.barcode := '@@' || NEW.id;
18965         END IF;
18966         RETURN NEW;
18967 END;
18968 $f$ LANGUAGE PLPGSQL;
18969
18970 CREATE TRIGGER autogenerate_placeholder_barcode
18971         BEFORE INSERT OR UPDATE ON asset.copy
18972         FOR EACH ROW EXECUTE PROCEDURE asset.autogenerate_placeholder_barcode();
18973
18974 COMMIT;
18975
18976 BEGIN;
18977 -- stick loading the staging schema into a separate transaction, as
18978 -- libraries upgrading from earlier stock versions of Evergreen won't have
18979 -- it, but at least one library is known to have it in a pre-2.0 variant
18980 -- setup.
18981 CREATE SCHEMA staging;
18982
18983 CREATE TABLE staging.user_stage (
18984         row_id                  BIGSERIAL PRIMARY KEY,
18985         row_date                            TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
18986         usrname                 TEXT NOT NULL,
18987         profile                 TEXT,
18988         email                   TEXT,
18989         passwd                  TEXT,
18990         ident_type              INT DEFAULT 3,
18991         first_given_name        TEXT,
18992         second_given_name       TEXT,
18993         family_name             TEXT,
18994         day_phone               TEXT,
18995         evening_phone           TEXT,
18996         home_ou                 INT DEFAULT 2,
18997         dob                     TEXT,
18998         complete                BOOL DEFAULT FALSE
18999 );
19000
19001 CREATE TABLE staging.card_stage ( -- for new library barcodes
19002         row_id          BIGSERIAL PRIMARY KEY,
19003         row_date        TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
19004         usrname         TEXT NOT NULL,
19005         barcode         TEXT NOT NULL,
19006         complete        BOOL DEFAULT FALSE
19007 );
19008
19009 CREATE TABLE staging.mailing_address_stage (
19010         row_id          BIGSERIAL PRIMARY KEY,
19011         row_date            TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
19012         usrname         TEXT NOT NULL,  -- user's SIS barcode, for linking
19013         street1         TEXT,
19014         street2         TEXT,
19015         city            TEXT NOT NULL DEFAULT '',
19016         state           TEXT    NOT NULL DEFAULT 'OK',
19017         country         TEXT NOT NULL DEFAULT 'US',
19018         post_code       TEXT NOT NULL,
19019         complete        BOOL DEFAULT FALSE
19020 );
19021
19022 CREATE TABLE staging.billing_address_stage (
19023         LIKE staging.mailing_address_stage INCLUDING DEFAULTS
19024 );
19025
19026 ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
19027
19028 CREATE TABLE staging.statcat_stage (
19029         row_id          BIGSERIAL PRIMARY KEY,
19030         row_date    TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
19031         usrname         TEXT NOT NULL,
19032         statcat         TEXT NOT NULL, -- for things like 'Year of study'
19033         value           TEXT NOT NULL, -- and the value, such as 'Freshman'
19034         complete        BOOL DEFAULT FALSE
19035 );
19036
19037 COMMIT;
19038
19039 -- Some operations go outside of the transaction, because they may
19040 -- legitimately fail.
19041
19042 ALTER TABLE action.reservation_transit_copy
19043         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
19044                 REFERENCES booking.resource(id)
19045                 ON DELETE CASCADE
19046                 DEFERRABLE INITIALLY DEFERRED,
19047         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
19048                 REFERENCES booking.reservation(id)
19049                 ON DELETE SET NULL
19050                 DEFERRABLE INITIALLY DEFERRED;
19051
19052
19053 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
19054 \qecho doesn't exist; ignore those errors if they occur.
19055
19056 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
19057
19058 ALTER TABLE auditor.action_hold_request_history
19059 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
19060
19061 ALTER TABLE auditor.action_hold_request_history
19062 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
19063
19064 \qecho Outside of the transaction: adding indexes that may or may not exist.
19065 \qecho If any of these CREATE INDEX statements fails because the index already
19066 \qecho exists, ignore the failure.
19067
19068 CREATE INDEX acq_picklist_owner_idx   ON acq.picklist ( owner );
19069 CREATE INDEX acq_picklist_creator_idx ON acq.picklist ( creator );
19070 CREATE INDEX acq_picklist_editor_idx  ON acq.picklist ( editor );
19071 CREATE INDEX acq_po_note_creator_idx  ON acq.po_note ( creator );
19072 CREATE INDEX acq_po_note_editor_idx   ON acq.po_note ( editor );
19073 CREATE INDEX fund_alloc_allocator_idx ON acq.fund_allocation ( allocator );
19074 CREATE INDEX li_creator_idx   ON acq.lineitem ( creator );
19075 CREATE INDEX li_editor_idx    ON acq.lineitem ( editor );
19076 CREATE INDEX li_selector_idx  ON acq.lineitem ( selector );
19077 CREATE INDEX li_note_creator_idx  ON acq.lineitem_note ( creator );
19078 CREATE INDEX li_note_editor_idx   ON acq.lineitem_note ( editor );
19079 CREATE INDEX li_usr_attr_def_usr_idx  ON acq.lineitem_usr_attr_definition ( usr );
19080 CREATE INDEX po_editor_idx   ON acq.purchase_order ( editor );
19081 CREATE INDEX po_creator_idx  ON acq.purchase_order ( creator );
19082 CREATE INDEX acq_po_org_name_order_date_idx ON acq.purchase_order( ordering_agency, name, order_date );
19083 CREATE INDEX action_in_house_use_staff_idx  ON action.in_house_use ( staff );
19084 CREATE INDEX action_non_cat_circ_patron_idx ON action.non_cataloged_circulation ( patron );
19085 CREATE INDEX action_non_cat_circ_staff_idx  ON action.non_cataloged_circulation ( staff );
19086 CREATE INDEX action_survey_response_usr_idx ON action.survey_response ( usr );
19087 CREATE INDEX ahn_notify_staff_idx           ON action.hold_notification ( notify_staff );
19088 CREATE INDEX circ_all_usr_idx               ON action.circulation ( usr );
19089 CREATE INDEX circ_circ_staff_idx            ON action.circulation ( circ_staff );
19090 CREATE INDEX circ_checkin_staff_idx         ON action.circulation ( checkin_staff );
19091 CREATE INDEX hold_request_fulfillment_staff_idx ON action.hold_request ( fulfillment_staff );
19092 CREATE INDEX hold_request_requestor_idx     ON action.hold_request ( requestor );
19093 CREATE INDEX non_cat_in_house_use_staff_idx ON action.non_cat_in_house_use ( staff );
19094 CREATE INDEX actor_usr_note_creator_idx     ON actor.usr_note ( creator );
19095 CREATE INDEX actor_usr_standing_penalty_staff_idx ON actor.usr_standing_penalty ( staff );
19096 CREATE INDEX usr_org_unit_opt_in_staff_idx  ON actor.usr_org_unit_opt_in ( staff );
19097 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
19098 CREATE INDEX asset_copy_note_creator_idx    ON asset.copy_note ( creator );
19099 CREATE INDEX cp_creator_idx                 ON asset.copy ( creator );
19100 CREATE INDEX cp_editor_idx                  ON asset.copy ( editor );
19101
19102 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
19103
19104 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
19105
19106 \qecho If the following CREATE INDEX fails, It will be necessary to do some
19107 \qecho data cleanup as described in the comments.
19108
19109 CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
19110     ON authority.record_entry (authority.normalize_heading(marc))
19111         WHERE deleted IS FALSE or deleted = FALSE;
19112
19113 -- If the unique index fails, uncomment the following to create
19114 -- a regular index that will help find the duplicates in a hurry:
19115 --CREATE INDEX by_heading_and_thesaurus
19116 --    ON authority.record_entry (authority.normalize_heading(marc))
19117 --    WHERE deleted IS FALSE or deleted = FALSE
19118 --;
19119
19120 -- Then find the duplicates like so to get an idea of how much
19121 -- pain you're looking at to clean things up:
19122 --SELECT id, authority.normalize_heading(marc)
19123 --    FROM authority.record_entry
19124 --    WHERE authority.normalize_heading(marc) IN (
19125 --        SELECT authority.normalize_heading(marc)
19126 --        FROM authority.record_entry
19127 --        GROUP BY authority.normalize_heading(marc)
19128 --        HAVING COUNT(*) > 1
19129 --    )
19130 --;
19131
19132 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
19133 -- statement succeeds, drop the temporary index to avoid unnecessary
19134 -- duplication:
19135 -- DROP INDEX authority.by_heading_and_thesaurus;
19136
19137 -- 0448.data.trigger.circ.staff_age_to_lost.sql
19138
19139 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
19140     (   'circ.staff_age_to_lost',
19141         'circ', 
19142         oils_i18n_gettext(
19143             'circ.staff_age_to_lost',
19144             'An overdue circulation should be aged to a Lost status.',
19145             'ath',
19146             'description'
19147         ), 
19148         TRUE
19149     )
19150 ;
19151
19152 INSERT INTO action_trigger.event_definition (
19153         id,
19154         active,
19155         owner,
19156         name,
19157         hook,
19158         validator,
19159         reactor,
19160         delay_field
19161     ) VALUES (
19162         36,
19163         FALSE,
19164         1,
19165         'circ.staff_age_to_lost',
19166         'circ.staff_age_to_lost',
19167         'CircIsOverdue',
19168         'MarkItemLost',
19169         'due_date'
19170     )
19171 ;
19172
19173 -- Speed up item-age browse axis (new books feed)
19174 CREATE INDEX cp_create_date  ON asset.copy (create_date);
19175
19176 -- Speed up call number browsing
19177 CREATE INDEX asset_call_number_label_sortkey_browse ON asset.call_number(oils_text_as_bytea(label_sortkey), oils_text_as_bytea(label), id, owning_lib) WHERE deleted IS FALSE OR deleted = FALSE;
19178
19179 -- Add MARC::Charset->assume_unicode(1) to improve handling of Unicode characters
19180 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
19181 use strict;
19182 use MARC::Record;
19183 use MARC::File::XML (BinaryEncoding => 'UTF-8');
19184 use MARC::Charset;
19185 use Encode;
19186 use Unicode::Normalize;
19187
19188 MARC::Charset->assume_unicode(1);
19189
19190 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
19191 my $schema = $_TD->{table_schema};
19192 my $rec_id = $_TD->{new}{id};
19193
19194 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
19195 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
19196 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
19197     return;
19198 }
19199
19200 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
19201 my $ou_cni = 'EVRGRN';
19202
19203 my $owner;
19204 if ($schema eq 'serial') {
19205     $owner = $_TD->{new}{owning_lib};
19206 } else {
19207     # are.owner and bre.owner can be null, so fall back to the consortial setting
19208     $owner = $_TD->{new}{owner} || 1;
19209 }
19210
19211 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
19212 if ($ous_rv->{processed}) {
19213     $ou_cni = $ous_rv->{rows}[0]->{value};
19214     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
19215 } else {
19216     # Fall back to the shortname of the OU if there was no OU setting
19217     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
19218     if ($ous_rv->{processed}) {
19219         $ou_cni = $ous_rv->{rows}[0]->{shortname};
19220     }
19221 }
19222
19223 my ($create, $munge) = (0, 0);
19224
19225 my @scns = $record->field('035');
19226
19227 foreach my $id_field ('001', '003') {
19228     my $spec_value;
19229     my @controls = $record->field($id_field);
19230
19231     if ($id_field eq '001') {
19232         $spec_value = $rec_id;
19233     } else {
19234         $spec_value = $ou_cni;
19235     }
19236
19237     # Create the 001/003 if none exist
19238     if (scalar(@controls) == 1) {
19239         # Only one field; check to see if we need to munge it
19240         unless (grep $_->data() eq $spec_value, @controls) {
19241             $munge = 1;
19242         }
19243     } else {
19244         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
19245         foreach my $control (@controls) {
19246             unless ($control->data() eq $spec_value) {
19247                 $record->delete_field($control);
19248             }
19249         }
19250         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
19251         $create = 1;
19252     }
19253 }
19254
19255 # Now, if we need to munge the 001, we will first push the existing 001/003
19256 # into the 035; but if the record did not have one (and one only) 001 and 003
19257 # to begin with, skip this process
19258 if ($munge and not $create) {
19259     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
19260
19261     # Do not create duplicate 035 fields
19262     unless (grep $_->subfield('a') eq $scn, @scns) {
19263         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
19264     }
19265 }
19266
19267 # Set the 001/003 and update the MARC
19268 if ($create or $munge) {
19269     $record->field('001')->data($rec_id);
19270     $record->field('003')->data($ou_cni);
19271
19272     my $xml = $record->as_xml_record();
19273     $xml =~ s/\n//sgo;
19274     $xml =~ s/^<\?xml.+\?\s*>//go;
19275     $xml =~ s/>\s+</></go;
19276     $xml =~ s/\p{Cc}//go;
19277
19278     # Embed a version of OpenILS::Application::AppUtils->entityize()
19279     # to avoid having to set PERL5LIB for PostgreSQL as well
19280
19281     # If we are going to convert non-ASCII characters to XML entities,
19282     # we had better be dealing with a UTF8 string to begin with
19283     $xml = decode_utf8($xml);
19284
19285     $xml = NFC($xml);
19286
19287     # Convert raw ampersands to entities
19288     $xml =~ s/&(?!\S+;)/&amp;/gso;
19289
19290     # Convert Unicode characters to entities
19291     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
19292
19293     $xml =~ s/[\x00-\x1f]//go;
19294     $_TD->{new}{marc} = $xml;
19295
19296     return "MODIFY";
19297 }
19298
19299 return;
19300 $func$ LANGUAGE PLPERLU;
19301
19302 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
19303
19304     use MARC::Record;
19305     use MARC::File::XML (BinaryEncoding => 'UTF-8');
19306     use MARC::Charset;
19307
19308     MARC::Charset->assume_unicode(1);
19309
19310     my $xml = shift;
19311     my $r = MARC::Record->new_from_xml( $xml );
19312
19313     return undef unless ($r);
19314
19315     my $id = shift() || $r->subfield( '901' => 'c' );
19316     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
19317     return undef unless ($id); # We need an ID!
19318
19319     my $tmpl = MARC::Record->new();
19320     $tmpl->encoding( 'UTF-8' );
19321
19322     my @rule_fields;
19323     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
19324
19325         my $tag = $field->tag;
19326         my $i1 = $field->indicator(1);
19327         my $i2 = $field->indicator(2);
19328         my $sf = join '', map { $_->[0] } $field->subfields;
19329         my @data = map { @$_ } $field->subfields;
19330
19331         my @replace_them;
19332
19333         # Map the authority field to bib fields it can control.
19334         if ($tag >= 100 and $tag <= 111) {       # names
19335             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
19336         } elsif ($tag eq '130') {                # uniform title
19337             @replace_them = qw/130 240 440 730 830/;
19338         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
19339             @replace_them = ($tag + 500);
19340         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
19341             @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/;
19342         } else {
19343             next;
19344         }
19345
19346         # Dummy up the bib-side data
19347         $tmpl->append_fields(
19348             map {
19349                 MARC::Field->new( $_, $i1, $i2, @data )
19350             } @replace_them
19351         );
19352
19353         # Construct some 'replace' rules
19354         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
19355     }
19356
19357     # Insert the replace rules into the template
19358     $tmpl->append_fields(
19359         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
19360     );
19361
19362     $xml = $tmpl->as_xml_record;
19363     $xml =~ s/^<\?.+?\?>$//mo;
19364     $xml =~ s/\n//sgo;
19365     $xml =~ s/>\s+</></sgo;
19366
19367     return $xml;
19368
19369 $func$ LANGUAGE PLPERLU;
19370
19371 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT, force_add INT ) RETURNS TEXT AS $_$
19372
19373     use MARC::Record;
19374     use MARC::File::XML (BinaryEncoding => 'UTF-8');
19375     use MARC::Charset;
19376     use strict;
19377
19378     MARC::Charset->assume_unicode(1);
19379
19380     my $target_xml = shift;
19381     my $source_xml = shift;
19382     my $field_spec = shift;
19383     my $force_add = shift || 0;
19384
19385     my $target_r = MARC::Record->new_from_xml( $target_xml );
19386     my $source_r = MARC::Record->new_from_xml( $source_xml );
19387
19388     return $target_xml unless ($target_r && $source_r);
19389
19390     my @field_list = split(',', $field_spec);
19391
19392     my %fields;
19393     for my $f (@field_list) {
19394         $f =~ s/^\s*//; $f =~ s/\s*$//;
19395         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
19396             my $field = $1;
19397             $field =~ s/\s+//;
19398             my $sf = $2;
19399             $sf =~ s/\s+//;
19400             my $match = $3;
19401             $match =~ s/^\s*//; $match =~ s/\s*$//;
19402             $fields{$field} = { sf => [ split('', $sf) ] };
19403             if ($match) {
19404                 my ($msf,$mre) = split('~', $match);
19405                 if (length($msf) > 0 and length($mre) > 0) {
19406                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
19407                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
19408                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
19409                 }
19410             }
19411         }
19412     }
19413
19414     for my $f ( keys %fields) {
19415         if ( @{$fields{$f}{sf}} ) {
19416             for my $from_field ($source_r->field( $f )) {
19417                 my @tos = $target_r->field( $f );
19418                 if (!@tos) {
19419                     next if (exists($fields{$f}{match}) and !$force_add);
19420                     my @new_fields = map { $_->clone } $source_r->field( $f );
19421                     $target_r->insert_fields_ordered( @new_fields );
19422                 } else {
19423                     for my $to_field (@tos) {
19424                         if (exists($fields{$f}{match})) {
19425                             next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
19426                         }
19427                         my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
19428                         $to_field->add_subfields( @new_sf );
19429                     }
19430                 }
19431             }
19432         } else {
19433             my @new_fields = map { $_->clone } $source_r->field( $f );
19434             $target_r->insert_fields_ordered( @new_fields );
19435         }
19436     }
19437
19438     $target_xml = $target_r->as_xml_record;
19439     $target_xml =~ s/^<\?.+?\?>$//mo;
19440     $target_xml =~ s/\n//sgo;
19441     $target_xml =~ s/>\s+</></sgo;
19442
19443     return $target_xml;
19444
19445 $_$ LANGUAGE PLPERLU;
19446
19447 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
19448
19449     use MARC::Record;
19450     use MARC::File::XML (BinaryEncoding => 'UTF-8');
19451     use MARC::Charset;
19452     use strict;
19453
19454     MARC::Charset->assume_unicode(1);
19455
19456     my $xml = shift;
19457     my $r = MARC::Record->new_from_xml( $xml );
19458
19459     return $xml unless ($r);
19460
19461     my $field_spec = shift;
19462     my @field_list = split(',', $field_spec);
19463
19464     my %fields;
19465     for my $f (@field_list) {
19466         $f =~ s/^\s*//; $f =~ s/\s*$//;
19467         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
19468             my $field = $1;
19469             $field =~ s/\s+//;
19470             my $sf = $2;
19471             $sf =~ s/\s+//;
19472             my $match = $3;
19473             $match =~ s/^\s*//; $match =~ s/\s*$//;
19474             $fields{$field} = { sf => [ split('', $sf) ] };
19475             if ($match) {
19476                 my ($msf,$mre) = split('~', $match);
19477                 if (length($msf) > 0 and length($mre) > 0) {
19478                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
19479                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
19480                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
19481                 }
19482             }
19483         }
19484     }
19485
19486     for my $f ( keys %fields) {
19487         for my $to_field ($r->field( $f )) {
19488             if (exists($fields{$f}{match})) {
19489                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
19490             }
19491
19492             if ( @{$fields{$f}{sf}} ) {
19493                 $to_field->delete_subfield(code => $fields{$f}{sf});
19494             } else {
19495                 $r->delete_field( $to_field );
19496             }
19497         }
19498     }
19499
19500     $xml = $r->as_xml_record;
19501     $xml =~ s/^<\?.+?\?>$//mo;
19502     $xml =~ s/\n//sgo;
19503     $xml =~ s/>\s+</></sgo;
19504
19505     return $xml;
19506
19507 $_$ LANGUAGE PLPERLU;
19508
19509 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
19510
19511 use MARC::Record;
19512 use MARC::File::XML (BinaryEncoding => 'UTF-8');
19513 use MARC::Charset;
19514
19515 MARC::Charset->assume_unicode(1);
19516
19517 my $xml = shift;
19518 my $r = MARC::Record->new_from_xml( $xml );
19519
19520 return_next( { tag => 'LDR', value => $r->leader } );
19521
19522 for my $f ( $r->fields ) {
19523         if ($f->is_control_field) {
19524                 return_next({ tag => $f->tag, value => $f->data });
19525         } else {
19526                 for my $s ($f->subfields) {
19527                         return_next({
19528                                 tag      => $f->tag,
19529                                 ind1     => $f->indicator(1),
19530                                 ind2     => $f->indicator(2),
19531                                 subfield => $s->[0],
19532                                 value    => $s->[1]
19533                         });
19534
19535                         if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
19536                                 my $trim = $f->indicator(2) || 0;
19537                                 return_next({
19538                                         tag      => 'tnf',
19539                                         ind1     => $f->indicator(1),
19540                                         ind2     => $f->indicator(2),
19541                                         subfield => 'a',
19542                                         value    => substr( $s->[1], $trim )
19543                                 });
19544                         }
19545                 }
19546         }
19547 }
19548
19549 return undef;
19550
19551 $func$ LANGUAGE PLPERLU;
19552
19553 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
19554
19555 use MARC::Record;
19556 use MARC::File::XML (BinaryEncoding => 'UTF-8');
19557 use MARC::Charset;
19558
19559 MARC::Charset->assume_unicode(1);
19560
19561 my $xml = shift;
19562 my $r = MARC::Record->new_from_xml( $xml );
19563
19564 return_next( { tag => 'LDR', value => $r->leader } );
19565
19566 for my $f ( $r->fields ) {
19567     if ($f->is_control_field) {
19568         return_next({ tag => $f->tag, value => $f->data });
19569     } else {
19570         for my $s ($f->subfields) {
19571             return_next({
19572                 tag      => $f->tag,
19573                 ind1     => $f->indicator(1),
19574                 ind2     => $f->indicator(2),
19575                 subfield => $s->[0],
19576                 value    => $s->[1]
19577             });
19578
19579         }
19580     }
19581 }
19582
19583 return undef;
19584
19585 $func$ LANGUAGE PLPERLU;
19586
19587 \qecho Rewriting authority records to include a 901$c, so that
19588 \qecho they can be used to control bibs.  This may take a while...
19589
19590 UPDATE authority.record_entry SET active = active;
19591
19592 \qecho Upgrade script completed.
19593 \qecho But wait, there's more: please run reingest-1.6-2.0.pl
19594 \qecho in order to create an SQL script to run to partially reindex 
19595 \qecho the bib records; this is required to make the new facet
19596 \qecho sidebar in OPAC search results work and to upgrade the keyword 
19597 \qecho indexes to use the revised NACO normalization routine.