]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
add missing upgrade step to create staging schema
[Evergreen.git] / Open-ILS / src / sql / Pg / 1.6.1-2.0-upgrade-db.sql
1 -- Before starting the transaction: drop some constraints that
2 -- may or may not exist.
3
4 CREATE OR REPLACE FUNCTION oils_text_as_bytea (TEXT) RETURNS BYTEA AS $_$
5     SELECT CAST(REGEXP_REPLACE(UPPER($1), $$\\$$, $$\\\\$$, 'g') AS BYTEA);
6 $_$ LANGUAGE SQL IMMUTABLE;
7
8 DROP INDEX asset.asset_call_number_upper_label_id_owning_lib_idx;
9 CREATE INDEX asset_call_number_upper_label_id_owning_lib_idx ON asset.call_number (oils_text_as_bytea(label),id,owning_lib);
10
11 \qecho Before starting the transaction: drop some constraints.
12 \qecho If a DROP fails because the constraint doesn't exist, ignore the failure.
13
14 -- 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     END IF;
11079
11080     -- Record authority linking
11081     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
11082     IF NOT FOUND THEN
11083         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
11084     END IF;
11085
11086     -- Flatten and insert the mfr data
11087     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
11088     IF NOT FOUND THEN
11089         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
11090         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
11091         IF NOT FOUND THEN
11092             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
11093         END IF;
11094     END IF;
11095
11096     -- Gather and insert the field entry data
11097     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
11098
11099     -- Located URI magic
11100     IF TG_OP = 'INSERT' THEN
11101         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11102         IF NOT FOUND THEN
11103             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11104         END IF;
11105     ELSE
11106         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
11107         IF NOT FOUND THEN
11108             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
11109         END IF;
11110     END IF;
11111
11112     -- (re)map metarecord-bib linking
11113     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
11114         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
11115         IF NOT FOUND THEN
11116             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11117         END IF;
11118     ELSE -- we're doing an update, and we're not deleted, remap
11119         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_update' AND enabled;
11120         IF NOT FOUND THEN
11121             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
11122         END IF;
11123     END IF;
11124
11125     RETURN NEW;
11126 END;
11127 $func$ LANGUAGE PLPGSQL;
11128
11129 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
11130 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 ();
11131
11132 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
11133 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
11134
11135 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT ) RETURNS SETOF RECORD AS $func$
11136 DECLARE
11137     xpath_list  TEXT[];
11138     select_list TEXT[];
11139     where_list  TEXT[];
11140     q           TEXT;
11141     out_record  RECORD;
11142     empty_test  RECORD;
11143 BEGIN
11144     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
11145  
11146     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
11147  
11148     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
11149         IF xpath_list[i] = 'null()' THEN
11150             select_list := ARRAY_APPEND( select_list, 'NULL::TEXT AS c_' || i );
11151         ELSE
11152             select_list := ARRAY_APPEND(
11153                 select_list,
11154                 $sel$
11155                 EXPLODE_ARRAY(
11156                     COALESCE(
11157                         NULLIF(
11158                             oils_xpath(
11159                                 $sel$ ||
11160                                     quote_literal(
11161                                         CASE
11162                                             WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
11163                                             ELSE xpath_list[i] || '//text()'
11164                                         END
11165                                     ) ||
11166                                 $sel$,
11167                                 $sel$ || document_field || $sel$
11168                             ),
11169                            '{}'::TEXT[]
11170                         ),
11171                         '{NULL}'::TEXT[]
11172                     )
11173                 ) AS c_$sel$ || i
11174             );
11175             where_list := ARRAY_APPEND(
11176                 where_list,
11177                 'c_' || i || ' IS NOT NULL'
11178             );
11179         END IF;
11180     END LOOP;
11181  
11182     q := $q$
11183 SELECT * FROM (
11184     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
11185 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' OR ' );
11186     -- RAISE NOTICE 'query: %', q;
11187  
11188     FOR out_record IN EXECUTE q LOOP
11189         RETURN NEXT out_record;
11190     END LOOP;
11191  
11192     RETURN;
11193 END;
11194 $func$ LANGUAGE PLPGSQL IMMUTABLE;
11195
11196 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
11197 DECLARE
11198
11199     owning_lib      TEXT;
11200     circ_lib        TEXT;
11201     call_number     TEXT;
11202     copy_number     TEXT;
11203     status          TEXT;
11204     location        TEXT;
11205     circulate       TEXT;
11206     deposit         TEXT;
11207     deposit_amount  TEXT;
11208     ref             TEXT;
11209     holdable        TEXT;
11210     price           TEXT;
11211     barcode         TEXT;
11212     circ_modifier   TEXT;
11213     circ_as_type    TEXT;
11214     alert_message   TEXT;
11215     opac_visible    TEXT;
11216     pub_note        TEXT;
11217     priv_note       TEXT;
11218
11219     attr_def        RECORD;
11220     tmp_attr_set    RECORD;
11221     attr_set        vandelay.import_item%ROWTYPE;
11222
11223     xpath           TEXT;
11224
11225 BEGIN
11226
11227     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
11228
11229     IF FOUND THEN
11230
11231         attr_set.definition := attr_def.id; 
11232     
11233         -- Build the combined XPath
11234     
11235         owning_lib :=
11236             CASE
11237                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
11238                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
11239                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
11240             END;
11241     
11242         circ_lib :=
11243             CASE
11244                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
11245                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
11246                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
11247             END;
11248     
11249         call_number :=
11250             CASE
11251                 WHEN attr_def.call_number IS NULL THEN 'null()'
11252                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
11253                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
11254             END;
11255     
11256         copy_number :=
11257             CASE
11258                 WHEN attr_def.copy_number IS NULL THEN 'null()'
11259                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
11260                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
11261             END;
11262     
11263         status :=
11264             CASE
11265                 WHEN attr_def.status IS NULL THEN 'null()'
11266                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
11267                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
11268             END;
11269     
11270         location :=
11271             CASE
11272                 WHEN attr_def.location IS NULL THEN 'null()'
11273                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
11274                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
11275             END;
11276     
11277         circulate :=
11278             CASE
11279                 WHEN attr_def.circulate IS NULL THEN 'null()'
11280                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
11281                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
11282             END;
11283     
11284         deposit :=
11285             CASE
11286                 WHEN attr_def.deposit IS NULL THEN 'null()'
11287                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
11288                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
11289             END;
11290     
11291         deposit_amount :=
11292             CASE
11293                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
11294                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
11295                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
11296             END;
11297     
11298         ref :=
11299             CASE
11300                 WHEN attr_def.ref IS NULL THEN 'null()'
11301                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
11302                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
11303             END;
11304     
11305         holdable :=
11306             CASE
11307                 WHEN attr_def.holdable IS NULL THEN 'null()'
11308                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
11309                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
11310             END;
11311     
11312         price :=
11313             CASE
11314                 WHEN attr_def.price IS NULL THEN 'null()'
11315                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
11316                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
11317             END;
11318     
11319         barcode :=
11320             CASE
11321                 WHEN attr_def.barcode IS NULL THEN 'null()'
11322                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
11323                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
11324             END;
11325     
11326         circ_modifier :=
11327             CASE
11328                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
11329                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
11330                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
11331             END;
11332     
11333         circ_as_type :=
11334             CASE
11335                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
11336                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
11337                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
11338             END;
11339     
11340         alert_message :=
11341             CASE
11342                 WHEN attr_def.alert_message IS NULL THEN 'null()'
11343                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
11344                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
11345             END;
11346     
11347         opac_visible :=
11348             CASE
11349                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
11350                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
11351                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
11352             END;
11353
11354         pub_note :=
11355             CASE
11356                 WHEN attr_def.pub_note IS NULL THEN 'null()'
11357                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
11358                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
11359             END;
11360         priv_note :=
11361             CASE
11362                 WHEN attr_def.priv_note IS NULL THEN 'null()'
11363                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
11364                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
11365             END;
11366     
11367     
11368         xpath := 
11369             owning_lib      || '|' || 
11370             circ_lib        || '|' || 
11371             call_number     || '|' || 
11372             copy_number     || '|' || 
11373             status          || '|' || 
11374             location        || '|' || 
11375             circulate       || '|' || 
11376             deposit         || '|' || 
11377             deposit_amount  || '|' || 
11378             ref             || '|' || 
11379             holdable        || '|' || 
11380             price           || '|' || 
11381             barcode         || '|' || 
11382             circ_modifier   || '|' || 
11383             circ_as_type    || '|' || 
11384             alert_message   || '|' || 
11385             pub_note        || '|' || 
11386             priv_note       || '|' || 
11387             opac_visible;
11388
11389         -- RAISE NOTICE 'XPath: %', xpath;
11390         
11391         FOR tmp_attr_set IN
11392                 SELECT  *
11393                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
11394                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
11395                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
11396                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
11397         LOOP
11398     
11399             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
11400             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
11401
11402             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
11403             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
11404     
11405             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
11406             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
11407             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
11408     
11409             SELECT  id INTO attr_set.location
11410               FROM  asset.copy_location
11411               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
11412                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
11413     
11414             attr_set.circulate      :=
11415                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
11416                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
11417
11418             attr_set.deposit        :=
11419                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
11420                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
11421
11422             attr_set.holdable       :=
11423                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
11424                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
11425
11426             attr_set.opac_visible   :=
11427                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
11428                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
11429
11430             attr_set.ref            :=
11431                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
11432                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
11433     
11434             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
11435             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
11436             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
11437     
11438             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
11439             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
11440             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
11441             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
11442             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11443             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
11444             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
11445             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11446     
11447             RETURN NEXT attr_set;
11448     
11449         END LOOP;
11450     
11451     END IF;
11452
11453     RETURN;
11454
11455 END;
11456 $$ LANGUAGE PLPGSQL;
11457
11458 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
11459 DECLARE
11460     attr_def    BIGINT;
11461     item_data   vandelay.import_item%ROWTYPE;
11462 BEGIN
11463
11464     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
11465
11466     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
11467         INSERT INTO vandelay.import_item (
11468             record,
11469             definition,
11470             owning_lib,
11471             circ_lib,
11472             call_number,
11473             copy_number,
11474             status,
11475             location,
11476             circulate,
11477             deposit,
11478             deposit_amount,
11479             ref,
11480             holdable,
11481             price,
11482             barcode,
11483             circ_modifier,
11484             circ_as_type,
11485             alert_message,
11486             pub_note,
11487             priv_note,
11488             opac_visible
11489         ) VALUES (
11490             NEW.id,
11491             item_data.definition,
11492             item_data.owning_lib,
11493             item_data.circ_lib,
11494             item_data.call_number,
11495             item_data.copy_number,
11496             item_data.status,
11497             item_data.location,
11498             item_data.circulate,
11499             item_data.deposit,
11500             item_data.deposit_amount,
11501             item_data.ref,
11502             item_data.holdable,
11503             item_data.price,
11504             item_data.barcode,
11505             item_data.circ_modifier,
11506             item_data.circ_as_type,
11507             item_data.alert_message,
11508             item_data.pub_note,
11509             item_data.priv_note,
11510             item_data.opac_visible
11511         );
11512     END LOOP;
11513
11514     RETURN NULL;
11515 END;
11516 $func$ LANGUAGE PLPGSQL;
11517
11518 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11519 BEGIN
11520     EXECUTE $$
11521         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11522     $$;
11523         RETURN TRUE;
11524 END;
11525 $creator$ LANGUAGE 'plpgsql';
11526
11527 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11528 BEGIN
11529     EXECUTE $$
11530         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11531             audit_id    BIGINT                          PRIMARY KEY,
11532             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11533             audit_action        TEXT                            NOT NULL,
11534             LIKE $$ || sch || $$.$$ || tbl || $$
11535         );
11536     $$;
11537         RETURN TRUE;
11538 END;
11539 $creator$ LANGUAGE 'plpgsql';
11540
11541 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11542 BEGIN
11543     EXECUTE $$
11544         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11545         RETURNS TRIGGER AS $func$
11546         BEGIN
11547             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11548                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11549                     now(),
11550                     SUBSTR(TG_OP,1,1),
11551                     OLD.*;
11552             RETURN NULL;
11553         END;
11554         $func$ LANGUAGE 'plpgsql';
11555     $$;
11556         RETURN TRUE;
11557 END;
11558 $creator$ LANGUAGE 'plpgsql';
11559
11560 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11561 BEGIN
11562     EXECUTE $$
11563         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11564             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11565             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11566     $$;
11567         RETURN TRUE;
11568 END;
11569 $creator$ LANGUAGE 'plpgsql';
11570
11571 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11572 BEGIN
11573     EXECUTE $$
11574         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11575             SELECT      -1, now() as audit_time, '-' as audit_action, *
11576               FROM      $$ || sch || $$.$$ || tbl || $$
11577                 UNION ALL
11578             SELECT      *
11579               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11580     $$;
11581         RETURN TRUE;
11582 END;
11583 $creator$ LANGUAGE 'plpgsql';
11584
11585 -- The main event
11586
11587 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11588 BEGIN
11589     PERFORM acq.create_acq_seq(sch, tbl);
11590     PERFORM acq.create_acq_history(sch, tbl);
11591     PERFORM acq.create_acq_func(sch, tbl);
11592     PERFORM acq.create_acq_update_trigger(sch, tbl);
11593     PERFORM acq.create_acq_lifecycle(sch, tbl);
11594     RETURN TRUE;
11595 END;
11596 $creator$ LANGUAGE 'plpgsql';
11597
11598 ALTER TABLE acq.lineitem DROP COLUMN item_count;
11599
11600 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11601     SELECT  fund.id AS fund,
11602             fund_debit.encumbrance AS encumbrance,
11603             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11604       FROM acq.fund AS fund
11605                         LEFT JOIN acq.fund_debit AS fund_debit
11606                                 ON ( fund.id = fund_debit.fund )
11607       GROUP BY 1,2;
11608
11609 CREATE TABLE acq.debit_attribution (
11610         id                     INT         NOT NULL PRIMARY KEY,
11611         fund_debit             INT         NOT NULL
11612                                            REFERENCES acq.fund_debit
11613                                            DEFERRABLE INITIALLY DEFERRED,
11614     debit_amount           NUMERIC     NOT NULL,
11615         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11616                                            DEFERRABLE INITIALLY DEFERRED,
11617     credit_amount          NUMERIC
11618 );
11619
11620 CREATE INDEX acq_attribution_debit_idx
11621         ON acq.debit_attribution( fund_debit );
11622
11623 CREATE INDEX acq_attribution_credit_idx
11624         ON acq.debit_attribution( funding_source_credit );
11625
11626 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11627 /*
11628 Function to attribute expenditures and encumbrances to funding source credits,
11629 and thereby to funding sources.
11630
11631 Read the debits in chonological order, attributing each one to one or
11632 more funding source credits.  Constraints:
11633
11634 1. Don't attribute more to a credit than the amount of the credit.
11635
11636 2. For a given fund, don't attribute more to a funding source than the
11637 source has allocated to that fund.
11638
11639 3. Attribute debits to credits with deadlines before attributing them to
11640 credits without deadlines.  Otherwise attribute to the earliest credits
11641 first, based on the deadline date when present, or on the effective date
11642 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11643 This ordering is defined by an ORDER BY clause on the view
11644 acq.ordered_funding_source_credit.
11645
11646 Start by truncating the table acq.debit_attribution.  Then insert a row
11647 into that table for each attribution.  If a debit cannot be fully
11648 attributed, insert a row for the unattributable balance, with the 
11649 funding_source_credit and credit_amount columns NULL.
11650 */
11651 DECLARE
11652         curr_fund_source_bal RECORD;
11653         seqno                INT;     -- sequence num for credits applicable to a fund
11654         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11655         fc                   RECORD;  -- used for loading t_fund_credit table
11656         sc                   RECORD;  -- used for loading t_fund_credit table
11657         --
11658         -- Used exclusively in the main loop:
11659         --
11660         deb                 RECORD;   -- current row from acq.fund_debit table
11661         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11662         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11663         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11664         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11665         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11666         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11667         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11668         attrib_count        INT;      -- populates id of acq.debit_attribution
11669 BEGIN
11670         --
11671         -- Load a temporary table.  For each combination of fund and funding source,
11672         -- load an entry with the total amount allocated to that fund by that source.
11673         -- This sum may reflect transfers as well as original allocations.  We will
11674         -- reduce this balance whenever we attribute debits to it.
11675         --
11676         CREATE TEMP TABLE t_fund_source_bal
11677         ON COMMIT DROP AS
11678                 SELECT
11679                         fund AS fund,
11680                         funding_source AS source,
11681                         sum( amount ) AS balance
11682                 FROM
11683                         acq.fund_allocation
11684                 GROUP BY
11685                         fund,
11686                         funding_source
11687                 HAVING
11688                         sum( amount ) > 0;
11689         --
11690         CREATE INDEX t_fund_source_bal_idx
11691                 ON t_fund_source_bal( fund, source );
11692         -------------------------------------------------------------------------------
11693         --
11694         -- Load another temporary table.  For each fund, load zero or more
11695         -- funding source credits from which that fund can get money.
11696         --
11697         CREATE TEMP TABLE t_fund_credit (
11698                 fund        INT,
11699                 seq         INT,
11700                 credit      INT
11701         ) ON COMMIT DROP;
11702         --
11703         FOR fc IN
11704                 SELECT DISTINCT fund
11705                 FROM acq.fund_allocation
11706                 ORDER BY fund
11707         LOOP                  -- Loop over the funds
11708                 seqno := 1;
11709                 FOR sc IN
11710                         SELECT
11711                                 ofsc.id
11712                         FROM
11713                                 acq.ordered_funding_source_credit AS ofsc
11714                         WHERE
11715                                 ofsc.funding_source IN
11716                                 (
11717                                         SELECT funding_source
11718                                         FROM acq.fund_allocation
11719                                         WHERE fund = fc.fund
11720                                 )
11721                 ORDER BY
11722                     ofsc.sort_priority,
11723                     ofsc.sort_date,
11724                     ofsc.id
11725                 LOOP                        -- Add each credit to the list
11726                         INSERT INTO t_fund_credit (
11727                                 fund,
11728                                 seq,
11729                                 credit
11730                         ) VALUES (
11731                                 fc.fund,
11732                                 seqno,
11733                                 sc.id
11734                         );
11735                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11736                         seqno := seqno + 1;
11737                 END LOOP;     -- Loop over credits for a given fund
11738         END LOOP;         -- Loop over funds
11739         --
11740         CREATE INDEX t_fund_credit_idx
11741                 ON t_fund_credit( fund, seq );
11742         -------------------------------------------------------------------------------
11743         --
11744         -- Load yet another temporary table.  This one is a list of funding source
11745         -- credits, with their balances.  We shall reduce those balances as we
11746         -- attribute debits to them.
11747         --
11748         CREATE TEMP TABLE t_credit
11749         ON COMMIT DROP AS
11750         SELECT
11751             fsc.id AS credit,
11752             fsc.funding_source AS source,
11753             fsc.amount AS balance,
11754             fs.currency_type AS currency_type
11755         FROM
11756             acq.funding_source_credit AS fsc,
11757             acq.funding_source fs
11758         WHERE
11759             fsc.funding_source = fs.id
11760                         AND fsc.amount > 0;
11761         --
11762         CREATE INDEX t_credit_idx
11763                 ON t_credit( credit );
11764         --
11765         -------------------------------------------------------------------------------
11766         --
11767         -- Now that we have loaded the lookup tables: loop through the debits,
11768         -- attributing each one to one or more funding source credits.
11769         -- 
11770         truncate table acq.debit_attribution;
11771         --
11772         attrib_count := 0;
11773         FOR deb in
11774                 SELECT
11775                         fd.id,
11776                         fd.fund,
11777                         fd.amount,
11778                         f.currency_type,
11779                         fd.encumbrance
11780                 FROM
11781                         acq.fund_debit fd,
11782                         acq.fund f
11783                 WHERE
11784                         fd.fund = f.id
11785                 ORDER BY
11786                         fd.id
11787         LOOP
11788                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11789                 --
11790                 debit_balance := deb.amount;
11791                 --
11792                 -- Loop over the funding source credits that are eligible
11793                 -- to pay for this debit
11794                 --
11795                 FOR fund_credit IN
11796                         SELECT
11797                                 credit
11798                         FROM
11799                                 t_fund_credit
11800                         WHERE
11801                                 fund = deb.fund
11802                         ORDER BY
11803                                 seq
11804                 LOOP
11805                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11806                         --
11807                         -- Look up the balance for this credit.  If it's zero, then
11808                         -- it's not useful, so treat it as if you didn't find it.
11809                         -- (Actually there shouldn't be any zero balances in the table,
11810                         -- but we check just to make sure.)
11811                         --
11812                         SELECT *
11813                         INTO curr_credit_bal
11814                         FROM t_credit
11815                         WHERE
11816                                 credit = fund_credit.credit
11817                                 AND balance > 0;
11818                         --
11819                         IF curr_credit_bal IS NULL THEN
11820                                 --
11821                                 -- This credit is exhausted; try the next one.
11822                                 --
11823                                 CONTINUE;
11824                         END IF;
11825                         --
11826                         --
11827                         -- At this point we have an applicable credit with some money left.
11828                         -- Now see if the relevant funding_source has any money left.
11829                         --
11830                         -- Look up the balance of the allocation for this combination of
11831                         -- fund and source.  If you find such an entry, but it has a zero
11832                         -- balance, then it's not useful, so treat it as unfound.
11833                         -- (Actually there shouldn't be any zero balances in the table,
11834                         -- but we check just to make sure.)
11835                         --
11836                         SELECT *
11837                         INTO curr_fund_source_bal
11838                         FROM t_fund_source_bal
11839                         WHERE
11840                                 fund = deb.fund
11841                                 AND source = curr_credit_bal.source
11842                                 AND balance > 0;
11843                         --
11844                         IF curr_fund_source_bal IS NULL THEN
11845                                 --
11846                                 -- This fund/source doesn't exist or is already exhausted,
11847                                 -- so we can't use this credit.  Go on to the next one.
11848                                 --
11849                                 CONTINUE;
11850                         END IF;
11851                         --
11852                         -- Convert the available balances to the currency of the fund
11853                         --
11854                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11855                                 curr_credit_bal.currency_type, deb.currency_type );
11856                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11857                                 curr_credit_bal.currency_type, deb.currency_type );
11858                         --
11859                         -- Determine how much we can attribute to this credit: the minimum
11860                         -- of the debit amount, the fund/source balance, and the
11861                         -- credit balance
11862                         --
11863                         --RAISE NOTICE '   deb bal %', debit_balance;
11864                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11865                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11866                         --
11867                         conv_attr_amount := NULL;
11868                         attr_amount := debit_balance;
11869                         --
11870                         IF attr_amount > conv_alloc_balance THEN
11871                                 attr_amount := conv_alloc_balance;
11872                                 conv_attr_amount := curr_fund_source_bal.balance;
11873                         END IF;
11874                         IF attr_amount > conv_cred_balance THEN
11875                                 attr_amount := conv_cred_balance;
11876                                 conv_attr_amount := curr_credit_bal.balance;
11877                         END IF;
11878                         --
11879                         -- If we're attributing all of one of the balances, then that's how
11880                         -- much we will deduct from the balances, and we already captured
11881                         -- that amount above.  Otherwise we must convert the amount of the
11882                         -- attribution from the currency of the fund back to the currency of
11883                         -- the funding source.
11884                         --
11885                         IF conv_attr_amount IS NULL THEN
11886                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11887                                         deb.currency_type, curr_credit_bal.currency_type );
11888                         END IF;
11889                         --
11890                         -- Insert a row to record the attribution
11891                         --
11892                         attrib_count := attrib_count + 1;
11893                         INSERT INTO acq.debit_attribution (
11894                                 id,
11895                                 fund_debit,
11896                                 debit_amount,
11897                                 funding_source_credit,
11898                                 credit_amount
11899                         ) VALUES (
11900                                 attrib_count,
11901                                 deb.id,
11902                                 attr_amount,
11903                                 curr_credit_bal.credit,
11904                                 conv_attr_amount
11905                         );
11906                         --
11907                         -- Subtract the attributed amount from the various balances
11908                         --
11909                         debit_balance := debit_balance - attr_amount;
11910                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11911                         --
11912                         IF curr_fund_source_bal.balance <= 0 THEN
11913                                 --
11914                                 -- This allocation is exhausted.  Delete it so
11915                                 -- that we don't waste time looking at it again.
11916                                 --
11917                                 DELETE FROM t_fund_source_bal
11918                                 WHERE
11919                                         fund = curr_fund_source_bal.fund
11920                                         AND source = curr_fund_source_bal.source;
11921                         ELSE
11922                                 UPDATE t_fund_source_bal
11923                                 SET balance = balance - conv_attr_amount
11924                                 WHERE
11925                                         fund = curr_fund_source_bal.fund
11926                                         AND source = curr_fund_source_bal.source;
11927                         END IF;
11928                         --
11929                         IF curr_credit_bal.balance <= 0 THEN
11930                                 --
11931                                 -- This funding source credit is exhausted.  Delete it
11932                                 -- so that we don't waste time looking at it again.
11933                                 --
11934                                 --DELETE FROM t_credit
11935                                 --WHERE
11936                                 --      credit = curr_credit_bal.credit;
11937                                 --
11938                                 DELETE FROM t_fund_credit
11939                                 WHERE
11940                                         credit = curr_credit_bal.credit;
11941                         ELSE
11942                                 UPDATE t_credit
11943                                 SET balance = curr_credit_bal.balance
11944                                 WHERE
11945                                         credit = curr_credit_bal.credit;
11946                         END IF;
11947                         --
11948                         -- Are we done with this debit yet?
11949                         --
11950                         IF debit_balance <= 0 THEN
11951                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11952                         END IF;
11953                 END LOOP;       -- End loop over credits
11954                 --
11955                 IF debit_balance <> 0 THEN
11956                         --
11957                         -- We weren't able to attribute this debit, or at least not
11958                         -- all of it.  Insert a row for the unattributed balance.
11959                         --
11960                         attrib_count := attrib_count + 1;
11961                         INSERT INTO acq.debit_attribution (
11962                                 id,
11963                                 fund_debit,
11964                                 debit_amount,
11965                                 funding_source_credit,
11966                                 credit_amount
11967                         ) VALUES (
11968                                 attrib_count,
11969                                 deb.id,
11970                                 debit_balance,
11971                                 NULL,
11972                                 NULL
11973                         );
11974                 END IF;
11975         END LOOP;   -- End of loop over debits
11976 END;
11977 $$ LANGUAGE 'plpgsql';
11978
11979 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11980 DECLARE
11981     query TEXT;
11982     output TEXT;
11983 BEGIN
11984     query := $q$
11985         SELECT  regexp_replace(
11986                     oils_xpath_string(
11987                         $q$ || quote_literal($3) || $q$,
11988                         marc,
11989                         ' '
11990                     ),
11991                     $q$ || quote_literal($4) || $q$,
11992                     '',
11993                     'g')
11994           FROM  $q$ || $1 || $q$
11995           WHERE id = $q$ || $2;
11996
11997     EXECUTE query INTO output;
11998
11999     -- RAISE NOTICE 'query: %, output; %', query, output;
12000
12001     RETURN output;
12002 END;
12003 $$ LANGUAGE PLPGSQL IMMUTABLE;
12004
12005 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
12006     SELECT extract_marc_field($1,$2,$3,'');
12007 $$ LANGUAGE SQL IMMUTABLE;
12008
12009 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
12010 DECLARE
12011     moved_objects INT := 0;
12012     source_cn     asset.call_number%ROWTYPE;
12013     target_cn     asset.call_number%ROWTYPE;
12014     metarec       metabib.metarecord%ROWTYPE;
12015     hold          action.hold_request%ROWTYPE;
12016     ser_rec       serial.record_entry%ROWTYPE;
12017     uri_count     INT := 0;
12018     counter       INT := 0;
12019     uri_datafield TEXT;
12020     uri_text      TEXT := '';
12021 BEGIN
12022
12023     -- move any 856 entries on records that have at least one MARC-mapped URI entry
12024     SELECT  INTO uri_count COUNT(*)
12025       FROM  asset.uri_call_number_map m
12026             JOIN asset.call_number cn ON (m.call_number = cn.id)
12027       WHERE cn.record = source_record;
12028
12029     IF uri_count > 0 THEN
12030
12031         SELECT  COUNT(*) INTO counter
12032           FROM  oils_xpath_table(
12033                     'id',
12034                     'marc',
12035                     'biblio.record_entry',
12036                     '//*[@tag="856"]',
12037                     'id=' || source_record
12038                 ) as t(i int,c text);
12039
12040         FOR i IN 1 .. counter LOOP
12041             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
12042                         ' tag="856"' || 
12043                         ' ind1="' || FIRST(ind1) || '"'  || 
12044                         ' ind2="' || FIRST(ind2) || '">' || 
12045                         array_to_string(
12046                             array_accum(
12047                                 '<subfield code="' || subfield || '">' ||
12048                                 regexp_replace(
12049                                     regexp_replace(
12050                                         regexp_replace(data,'&','&amp;','g'),
12051                                         '>', '&gt;', 'g'
12052                                     ),
12053                                     '<', '&lt;', 'g'
12054                                 ) || '</subfield>'
12055                             ), ''
12056                         ) || '</datafield>' INTO uri_datafield
12057               FROM  oils_xpath_table(
12058                         'id',
12059                         'marc',
12060                         'biblio.record_entry',
12061                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
12062                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
12063                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
12064                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
12065                         'id=' || source_record
12066                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
12067
12068             uri_text := uri_text || uri_datafield;
12069         END LOOP;
12070
12071         IF uri_text <> '' THEN
12072             UPDATE  biblio.record_entry
12073               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
12074               WHERE id = target_record;
12075         END IF;
12076
12077     END IF;
12078
12079     -- Find and move metarecords to the target record
12080     SELECT  INTO metarec *
12081       FROM  metabib.metarecord
12082       WHERE master_record = source_record;
12083
12084     IF FOUND THEN
12085         UPDATE  metabib.metarecord
12086           SET   master_record = target_record,
12087             mods = NULL
12088           WHERE id = metarec.id;
12089
12090         moved_objects := moved_objects + 1;
12091     END IF;
12092
12093     -- Find call numbers attached to the source ...
12094     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
12095
12096         SELECT  INTO target_cn *
12097           FROM  asset.call_number
12098           WHERE label = source_cn.label
12099             AND owning_lib = source_cn.owning_lib
12100             AND record = target_record;
12101
12102         -- ... and if there's a conflicting one on the target ...
12103         IF FOUND THEN
12104
12105             -- ... move the copies to that, and ...
12106             UPDATE  asset.copy
12107               SET   call_number = target_cn.id
12108               WHERE call_number = source_cn.id;
12109
12110             -- ... move V holds to the move-target call number
12111             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
12112
12113                 UPDATE  action.hold_request
12114                   SET   target = target_cn.id
12115                   WHERE id = hold.id;
12116
12117                 moved_objects := moved_objects + 1;
12118             END LOOP;
12119
12120         -- ... if not ...
12121         ELSE
12122             -- ... just move the call number to the target record
12123             UPDATE  asset.call_number
12124               SET   record = target_record
12125               WHERE id = source_cn.id;
12126         END IF;
12127
12128         moved_objects := moved_objects + 1;
12129     END LOOP;
12130
12131     -- Find T holds targeting the source record ...
12132     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
12133
12134         -- ... and move them to the target record
12135         UPDATE  action.hold_request
12136           SET   target = target_record
12137           WHERE id = hold.id;
12138
12139         moved_objects := moved_objects + 1;
12140     END LOOP;
12141
12142     -- Find serial records targeting the source record ...
12143     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
12144         -- ... and move them to the target record
12145         UPDATE  serial.record_entry
12146           SET   record = target_record
12147           WHERE id = ser_rec.id;
12148
12149         moved_objects := moved_objects + 1;
12150     END LOOP;
12151
12152     -- Finally, "delete" the source record
12153     DELETE FROM biblio.record_entry WHERE id = source_record;
12154
12155     -- That's all, folks!
12156     RETURN moved_objects;
12157 END;
12158 $func$ LANGUAGE plpgsql;
12159
12160 CREATE OR REPLACE FUNCTION acq.transfer_fund(
12161         old_fund   IN INT,
12162         old_amount IN NUMERIC,     -- in currency of old fund
12163         new_fund   IN INT,
12164         new_amount IN NUMERIC,     -- in currency of new fund
12165         user_id    IN INT,
12166         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
12167         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
12168 ) RETURNS VOID AS $$
12169 /* -------------------------------------------------------------------------------
12170
12171 Function to transfer money from one fund to another.
12172
12173 A transfer is represented as a pair of entries in acq.fund_allocation, with a
12174 negative amount for the old (losing) fund and a positive amount for the new
12175 (gaining) fund.  In some cases there may be more than one such pair of entries
12176 in order to pull the money from different funding sources, or more specifically
12177 from different funding source credits.  For each such pair there is also an
12178 entry in acq.fund_transfer.
12179
12180 Since funding_source is a non-nullable column in acq.fund_allocation, we must
12181 choose a funding source for the transferred money to come from.  This choice
12182 must meet two constraints, so far as possible:
12183
12184 1. The amount transferred from a given funding source must not exceed the
12185 amount allocated to the old fund by the funding source.  To that end we
12186 compare the amount being transferred to the amount allocated.
12187
12188 2. We shouldn't transfer money that has already been spent or encumbered, as
12189 defined by the funding attribution process.  We attribute expenses to the
12190 oldest funding source credits first.  In order to avoid transferring that
12191 attributed money, we reverse the priority, transferring from the newest funding
12192 source credits first.  There can be no guarantee that this approach will
12193 avoid overcommitting a fund, but no other approach can do any better.
12194
12195 In this context the age of a funding source credit is defined by the
12196 deadline_date for credits with deadline_dates, and by the effective_date for
12197 credits without deadline_dates, with the proviso that credits with deadline_dates
12198 are all considered "older" than those without.
12199
12200 ----------
12201
12202 In the signature for this function, there is one last parameter commented out,
12203 named "funding_source_in".  Correspondingly, the WHERE clause for the query
12204 driving the main loop has an OR clause commented out, which references the
12205 funding_source_in parameter.
12206
12207 If these lines are uncommented, this function will allow the user optionally to
12208 restrict a fund transfer to a specified funding source.  If the source
12209 parameter is left NULL, then there will be no such restriction.
12210
12211 ------------------------------------------------------------------------------- */ 
12212 DECLARE
12213         same_currency      BOOLEAN;
12214         currency_ratio     NUMERIC;
12215         old_fund_currency  TEXT;
12216         old_remaining      NUMERIC;  -- in currency of old fund
12217         new_fund_currency  TEXT;
12218         new_fund_active    BOOLEAN;
12219         new_remaining      NUMERIC;  -- in currency of new fund
12220         curr_old_amt       NUMERIC;  -- in currency of old fund
12221         curr_new_amt       NUMERIC;  -- in currency of new fund
12222         source_addition    NUMERIC;  -- in currency of funding source
12223         source_deduction   NUMERIC;  -- in currency of funding source
12224         orig_allocated_amt NUMERIC;  -- in currency of funding source
12225         allocated_amt      NUMERIC;  -- in currency of fund
12226         source             RECORD;
12227 BEGIN
12228         --
12229         -- Sanity checks
12230         --
12231         IF old_fund IS NULL THEN
12232                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
12233         END IF;
12234         --
12235         IF old_amount IS NULL THEN
12236                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
12237         END IF;
12238         --
12239         -- The new fund and its amount must be both NULL or both not NULL.
12240         --
12241         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
12242                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
12243         END IF;
12244         --
12245         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
12246                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
12247         END IF;
12248         --
12249         IF user_id IS NULL THEN
12250                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
12251         END IF;
12252         --
12253         -- Initialize the amounts to be transferred, each denominated
12254         -- in the currency of its respective fund.  They will be
12255         -- reduced on each iteration of the loop.
12256         --
12257         old_remaining := old_amount;
12258         new_remaining := new_amount;
12259         --
12260         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
12261         --      old_amount, old_fund, new_amount, new_fund;
12262         --
12263         -- Get the currency types of the old and new funds.
12264         --
12265         SELECT
12266                 currency_type
12267         INTO
12268                 old_fund_currency
12269         FROM
12270                 acq.fund
12271         WHERE
12272                 id = old_fund;
12273         --
12274         IF old_fund_currency IS NULL THEN
12275                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
12276         END IF;
12277         --
12278         IF new_fund IS NOT NULL THEN
12279                 SELECT
12280                         currency_type,
12281                         active
12282                 INTO
12283                         new_fund_currency,
12284                         new_fund_active
12285                 FROM
12286                         acq.fund
12287                 WHERE
12288                         id = new_fund;
12289                 --
12290                 IF new_fund_currency IS NULL THEN
12291                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
12292                 ELSIF NOT new_fund_active THEN
12293                         --
12294                         -- No point in putting money into a fund from whence you can't spend it
12295                         --
12296                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
12297                 END IF;
12298                 --
12299                 IF new_amount = old_amount THEN
12300                         same_currency := true;
12301                         currency_ratio := 1;
12302                 ELSE
12303                         --
12304                         -- We'll have to translate currency between funds.  We presume that
12305                         -- the calling code has already applied an appropriate exchange rate,
12306                         -- so we'll apply the same conversion to each sub-transfer.
12307                         --
12308                         same_currency := false;
12309                         currency_ratio := new_amount / old_amount;
12310                 END IF;
12311         END IF;
12312         --
12313         -- Identify the funding source(s) from which we want to transfer the money.
12314         -- The principle is that we want to transfer the newest money first, because
12315         -- we spend the oldest money first.  The priority for spending is defined
12316         -- by a sort of the view acq.ordered_funding_source_credit.
12317         --
12318         FOR source in
12319                 SELECT
12320                         ofsc.id,
12321                         ofsc.funding_source,
12322                         ofsc.amount,
12323                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
12324                                 AS converted_amt,
12325                         fs.currency_type
12326                 FROM
12327                         acq.ordered_funding_source_credit AS ofsc,
12328                         acq.funding_source fs
12329                 WHERE
12330                         ofsc.funding_source = fs.id
12331                         and ofsc.funding_source IN
12332                         (
12333                                 SELECT funding_source
12334                                 FROM acq.fund_allocation
12335                                 WHERE fund = old_fund
12336                         )
12337                         -- and
12338                         -- (
12339                         --      ofsc.funding_source = funding_source_in
12340                         --      OR funding_source_in IS NULL
12341                         -- )
12342                 ORDER BY
12343                         ofsc.sort_priority desc,
12344                         ofsc.sort_date desc,
12345                         ofsc.id desc
12346         LOOP
12347                 --
12348                 -- Determine how much money the old fund got from this funding source,
12349                 -- denominated in the currency types of the source and of the fund.
12350                 -- This result may reflect transfers from previous iterations.
12351                 --
12352                 SELECT
12353                         COALESCE( sum( amount ), 0 ),
12354                         COALESCE( sum( amount )
12355                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
12356                 INTO
12357                         orig_allocated_amt,     -- in currency of the source
12358                         allocated_amt           -- in currency of the old fund
12359                 FROM
12360                         acq.fund_allocation
12361                 WHERE
12362                         fund = old_fund
12363                         and funding_source = source.funding_source;
12364                 --      
12365                 -- Determine how much to transfer from this credit, in the currency
12366                 -- of the fund.   Begin with the amount remaining to be attributed:
12367                 --
12368                 curr_old_amt := old_remaining;
12369                 --
12370                 -- Can't attribute more than was allocated from the fund:
12371                 --
12372                 IF curr_old_amt > allocated_amt THEN
12373                         curr_old_amt := allocated_amt;
12374                 END IF;
12375                 --
12376                 -- Can't attribute more than the amount of the current credit:
12377                 --
12378                 IF curr_old_amt > source.converted_amt THEN
12379                         curr_old_amt := source.converted_amt;
12380                 END IF;
12381                 --
12382                 curr_old_amt := trunc( curr_old_amt, 2 );
12383                 --
12384                 old_remaining := old_remaining - curr_old_amt;
12385                 --
12386                 -- Determine the amount to be deducted, if any,
12387                 -- from the old allocation.
12388                 --
12389                 IF old_remaining > 0 THEN
12390                         --
12391                         -- In this case we're using the whole allocation, so use that
12392                         -- amount directly instead of applying a currency translation
12393                         -- and thereby inviting round-off errors.
12394                         --
12395                         source_deduction := - orig_allocated_amt;
12396                 ELSE 
12397                         source_deduction := trunc(
12398                                 ( - curr_old_amt ) *
12399                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
12400                                 2 );
12401                 END IF;
12402                 --
12403                 IF source_deduction <> 0 THEN
12404                         --
12405                         -- Insert negative allocation for old fund in fund_allocation,
12406                         -- converted into the currency of the funding source
12407                         --
12408                         INSERT INTO acq.fund_allocation (
12409                                 funding_source,
12410                                 fund,
12411                                 amount,
12412                                 allocator,
12413                                 note
12414                         ) VALUES (
12415                                 source.funding_source,
12416                                 old_fund,
12417                                 source_deduction,
12418                                 user_id,
12419                                 'Transfer to fund ' || new_fund
12420                         );
12421                 END IF;
12422                 --
12423                 IF new_fund IS NOT NULL THEN
12424                         --
12425                         -- Determine how much to add to the new fund, in
12426                         -- its currency, and how much remains to be added:
12427                         --
12428                         IF same_currency THEN
12429                                 curr_new_amt := curr_old_amt;
12430                         ELSE
12431                                 IF old_remaining = 0 THEN
12432                                         --
12433                                         -- This is the last iteration, so nothing should be left
12434                                         --
12435                                         curr_new_amt := new_remaining;
12436                                         new_remaining := 0;
12437                                 ELSE
12438                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
12439                                         new_remaining := new_remaining - curr_new_amt;
12440                                 END IF;
12441                         END IF;
12442                         --
12443                         -- Determine how much to add, if any,
12444                         -- to the new fund's allocation.
12445                         --
12446                         IF old_remaining > 0 THEN
12447                                 --
12448                                 -- In this case we're using the whole allocation, so use that amount
12449                                 -- amount directly instead of applying a currency translation and
12450                                 -- thereby inviting round-off errors.
12451                                 --
12452                                 source_addition := orig_allocated_amt;
12453                         ELSIF source.currency_type = old_fund_currency THEN
12454                                 --
12455                                 -- In this case we don't need a round trip currency translation,
12456                                 -- thereby inviting round-off errors:
12457                                 --
12458                                 source_addition := curr_old_amt;
12459                         ELSE 
12460                                 source_addition := trunc(
12461                                         curr_new_amt *
12462                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
12463                                         2 );
12464                         END IF;
12465                         --
12466                         IF source_addition <> 0 THEN
12467                                 --
12468                                 -- Insert positive allocation for new fund in fund_allocation,
12469                                 -- converted to the currency of the founding source
12470                                 --
12471                                 INSERT INTO acq.fund_allocation (
12472                                         funding_source,
12473                                         fund,
12474                                         amount,
12475                                         allocator,
12476                                         note
12477                                 ) VALUES (
12478                                         source.funding_source,
12479                                         new_fund,
12480                                         source_addition,
12481                                         user_id,
12482                                         'Transfer from fund ' || old_fund
12483                                 );
12484                         END IF;
12485                 END IF;
12486                 --
12487                 IF trunc( curr_old_amt, 2 ) <> 0
12488                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12489                         --
12490                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12491                         --
12492                         INSERT INTO acq.fund_transfer (
12493                                 src_fund,
12494                                 src_amount,
12495                                 dest_fund,
12496                                 dest_amount,
12497                                 transfer_user,
12498                                 note,
12499                                 funding_source_credit
12500                         ) VALUES (
12501                                 old_fund,
12502                                 trunc( curr_old_amt, 2 ),
12503                                 new_fund,
12504                                 trunc( curr_new_amt, 2 ),
12505                                 user_id,
12506                                 xfer_note,
12507                                 source.id
12508                         );
12509                 END IF;
12510                 --
12511                 if old_remaining <= 0 THEN
12512                         EXIT;                   -- Nothing more to be transferred
12513                 END IF;
12514         END LOOP;
12515 END;
12516 $$ LANGUAGE plpgsql;
12517
12518 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12519         old_year INTEGER,
12520         user_id INTEGER,
12521         org_unit_id INTEGER
12522 ) RETURNS VOID AS $$
12523 DECLARE
12524 --
12525 new_id      INT;
12526 old_fund    RECORD;
12527 org_found   BOOLEAN;
12528 --
12529 BEGIN
12530         --
12531         -- Sanity checks
12532         --
12533         IF old_year IS NULL THEN
12534                 RAISE EXCEPTION 'Input year argument is NULL';
12535         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12536                 RAISE EXCEPTION 'Input year is out of range';
12537         END IF;
12538         --
12539         IF user_id IS NULL THEN
12540                 RAISE EXCEPTION 'Input user id argument is NULL';
12541         END IF;
12542         --
12543         IF org_unit_id IS NULL THEN
12544                 RAISE EXCEPTION 'Org unit id argument is NULL';
12545         ELSE
12546                 SELECT TRUE INTO org_found
12547                 FROM actor.org_unit
12548                 WHERE id = org_unit_id;
12549                 --
12550                 IF org_found IS NULL THEN
12551                         RAISE EXCEPTION 'Org unit id is invalid';
12552                 END IF;
12553         END IF;
12554         --
12555         -- Loop over the applicable funds
12556         --
12557         FOR old_fund in SELECT * FROM acq.fund
12558         WHERE
12559                 year = old_year
12560                 AND propagate
12561                 AND org = org_unit_id
12562         LOOP
12563                 BEGIN
12564                         INSERT INTO acq.fund (
12565                                 org,
12566                                 name,
12567                                 year,
12568                                 currency_type,
12569                                 code,
12570                                 rollover,
12571                                 propagate,
12572                                 balance_warning_percent,
12573                                 balance_stop_percent
12574                         ) VALUES (
12575                                 old_fund.org,
12576                                 old_fund.name,
12577                                 old_year + 1,
12578                                 old_fund.currency_type,
12579                                 old_fund.code,
12580                                 old_fund.rollover,
12581                                 true,
12582                                 old_fund.balance_warning_percent,
12583                                 old_fund.balance_stop_percent
12584                         )
12585                         RETURNING id INTO new_id;
12586                 EXCEPTION
12587                         WHEN unique_violation THEN
12588                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12589                                 CONTINUE;
12590                 END;
12591                 --RAISE NOTICE 'Propagating fund % to fund %',
12592                 --      old_fund.code, new_id;
12593         END LOOP;
12594 END;
12595 $$ LANGUAGE plpgsql;
12596
12597 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12598         old_year INTEGER,
12599         user_id INTEGER,
12600         org_unit_id INTEGER
12601 ) RETURNS VOID AS $$
12602 DECLARE
12603 --
12604 new_id      INT;
12605 old_fund    RECORD;
12606 org_found   BOOLEAN;
12607 --
12608 BEGIN
12609         --
12610         -- Sanity checks
12611         --
12612         IF old_year IS NULL THEN
12613                 RAISE EXCEPTION 'Input year argument is NULL';
12614         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12615                 RAISE EXCEPTION 'Input year is out of range';
12616         END IF;
12617         --
12618         IF user_id IS NULL THEN
12619                 RAISE EXCEPTION 'Input user id argument is NULL';
12620         END IF;
12621         --
12622         IF org_unit_id IS NULL THEN
12623                 RAISE EXCEPTION 'Org unit id argument is NULL';
12624         ELSE
12625                 SELECT TRUE INTO org_found
12626                 FROM actor.org_unit
12627                 WHERE id = org_unit_id;
12628                 --
12629                 IF org_found IS NULL THEN
12630                         RAISE EXCEPTION 'Org unit id is invalid';
12631                 END IF;
12632         END IF;
12633         --
12634         -- Loop over the applicable funds
12635         --
12636         FOR old_fund in SELECT * FROM acq.fund
12637         WHERE
12638                 year = old_year
12639                 AND propagate
12640                 AND org in (
12641                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12642                 )
12643         LOOP
12644                 BEGIN
12645                         INSERT INTO acq.fund (
12646                                 org,
12647                                 name,
12648                                 year,
12649                                 currency_type,
12650                                 code,
12651                                 rollover,
12652                                 propagate,
12653                                 balance_warning_percent,
12654                                 balance_stop_percent
12655                         ) VALUES (
12656                                 old_fund.org,
12657                                 old_fund.name,
12658                                 old_year + 1,
12659                                 old_fund.currency_type,
12660                                 old_fund.code,
12661                                 old_fund.rollover,
12662                                 true,
12663                                 old_fund.balance_warning_percent,
12664                                 old_fund.balance_stop_percent
12665                         )
12666                         RETURNING id INTO new_id;
12667                 EXCEPTION
12668                         WHEN unique_violation THEN
12669                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12670                                 CONTINUE;
12671                 END;
12672                 --RAISE NOTICE 'Propagating fund % to fund %',
12673                 --      old_fund.code, new_id;
12674         END LOOP;
12675 END;
12676 $$ LANGUAGE plpgsql;
12677
12678 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12679         old_year INTEGER,
12680         user_id INTEGER,
12681         org_unit_id INTEGER
12682 ) RETURNS VOID AS $$
12683 DECLARE
12684 --
12685 new_fund    INT;
12686 new_year    INT := old_year + 1;
12687 org_found   BOOL;
12688 xfer_amount NUMERIC;
12689 roll_fund   RECORD;
12690 deb         RECORD;
12691 detail      RECORD;
12692 --
12693 BEGIN
12694         --
12695         -- Sanity checks
12696         --
12697         IF old_year IS NULL THEN
12698                 RAISE EXCEPTION 'Input year argument is NULL';
12699     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12700         RAISE EXCEPTION 'Input year is out of range';
12701         END IF;
12702         --
12703         IF user_id IS NULL THEN
12704                 RAISE EXCEPTION 'Input user id argument is NULL';
12705         END IF;
12706         --
12707         IF org_unit_id IS NULL THEN
12708                 RAISE EXCEPTION 'Org unit id argument is NULL';
12709         ELSE
12710                 --
12711                 -- Validate the org unit
12712                 --
12713                 SELECT TRUE
12714                 INTO org_found
12715                 FROM actor.org_unit
12716                 WHERE id = org_unit_id;
12717                 --
12718                 IF org_found IS NULL THEN
12719                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12720                 END IF;
12721         END IF;
12722         --
12723         -- Loop over the propagable funds to identify the details
12724         -- from the old fund plus the id of the new one, if it exists.
12725         --
12726         FOR roll_fund in
12727         SELECT
12728             oldf.id AS old_fund,
12729             oldf.org,
12730             oldf.name,
12731             oldf.currency_type,
12732             oldf.code,
12733                 oldf.rollover,
12734             newf.id AS new_fund_id
12735         FROM
12736         acq.fund AS oldf
12737         LEFT JOIN acq.fund AS newf
12738                 ON ( oldf.code = newf.code )
12739         WHERE
12740                     oldf.org = org_unit_id
12741                 and oldf.year = old_year
12742                 and oldf.propagate
12743         and newf.year = new_year
12744         LOOP
12745                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12746                 --
12747                 IF roll_fund.new_fund_id IS NULL THEN
12748                         --
12749                         -- The old fund hasn't been propagated yet.  Propagate it now.
12750                         --
12751                         INSERT INTO acq.fund (
12752                                 org,
12753                                 name,
12754                                 year,
12755                                 currency_type,
12756                                 code,
12757                                 rollover,
12758                                 propagate,
12759                                 balance_warning_percent,
12760                                 balance_stop_percent
12761                         ) VALUES (
12762                                 roll_fund.org,
12763                                 roll_fund.name,
12764                                 new_year,
12765                                 roll_fund.currency_type,
12766                                 roll_fund.code,
12767                                 true,
12768                                 true,
12769                                 roll_fund.balance_warning_percent,
12770                                 roll_fund.balance_stop_percent
12771                         )
12772                         RETURNING id INTO new_fund;
12773                 ELSE
12774                         new_fund = roll_fund.new_fund_id;
12775                 END IF;
12776                 --
12777                 -- Determine the amount to transfer
12778                 --
12779                 SELECT amount
12780                 INTO xfer_amount
12781                 FROM acq.fund_spent_balance
12782                 WHERE fund = roll_fund.old_fund;
12783                 --
12784                 IF xfer_amount <> 0 THEN
12785                         IF roll_fund.rollover THEN
12786                                 --
12787                                 -- Transfer balance from old fund to new
12788                                 --
12789                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12790                                 --
12791                                 PERFORM acq.transfer_fund(
12792                                         roll_fund.old_fund,
12793                                         xfer_amount,
12794                                         new_fund,
12795                                         xfer_amount,
12796                                         user_id,
12797                                         'Rollover'
12798                                 );
12799                         ELSE
12800                                 --
12801                                 -- Transfer balance from old fund to the void
12802                                 --
12803                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12804                                 --
12805                                 PERFORM acq.transfer_fund(
12806                                         roll_fund.old_fund,
12807                                         xfer_amount,
12808                                         NULL,
12809                                         NULL,
12810                                         user_id,
12811                                         'Rollover'
12812                                 );
12813                         END IF;
12814                 END IF;
12815                 --
12816                 IF roll_fund.rollover THEN
12817                         --
12818                         -- Move any lineitems from the old fund to the new one
12819                         -- where the associated debit is an encumbrance.
12820                         --
12821                         -- Any other tables tying expenditure details to funds should
12822                         -- receive similar treatment.  At this writing there are none.
12823                         --
12824                         UPDATE acq.lineitem_detail
12825                         SET fund = new_fund
12826                         WHERE
12827                         fund = roll_fund.old_fund -- this condition may be redundant
12828                         AND fund_debit in
12829                         (
12830                                 SELECT id
12831                                 FROM acq.fund_debit
12832                                 WHERE
12833                                 fund = roll_fund.old_fund
12834                                 AND encumbrance
12835                         );
12836                         --
12837                         -- Move encumbrance debits from the old fund to the new fund
12838                         --
12839                         UPDATE acq.fund_debit
12840                         SET fund = new_fund
12841                         wHERE
12842                                 fund = roll_fund.old_fund
12843                                 AND encumbrance;
12844                 END IF;
12845                 --
12846                 -- Mark old fund as inactive, now that we've closed it
12847                 --
12848                 UPDATE acq.fund
12849                 SET active = FALSE
12850                 WHERE id = roll_fund.old_fund;
12851         END LOOP;
12852 END;
12853 $$ LANGUAGE plpgsql;
12854
12855 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12856         old_year INTEGER,
12857         user_id INTEGER,
12858         org_unit_id INTEGER
12859 ) RETURNS VOID AS $$
12860 DECLARE
12861 --
12862 new_fund    INT;
12863 new_year    INT := old_year + 1;
12864 org_found   BOOL;
12865 xfer_amount NUMERIC;
12866 roll_fund   RECORD;
12867 deb         RECORD;
12868 detail      RECORD;
12869 --
12870 BEGIN
12871         --
12872         -- Sanity checks
12873         --
12874         IF old_year IS NULL THEN
12875                 RAISE EXCEPTION 'Input year argument is NULL';
12876     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12877         RAISE EXCEPTION 'Input year is out of range';
12878         END IF;
12879         --
12880         IF user_id IS NULL THEN
12881                 RAISE EXCEPTION 'Input user id argument is NULL';
12882         END IF;
12883         --
12884         IF org_unit_id IS NULL THEN
12885                 RAISE EXCEPTION 'Org unit id argument is NULL';
12886         ELSE
12887                 --
12888                 -- Validate the org unit
12889                 --
12890                 SELECT TRUE
12891                 INTO org_found
12892                 FROM actor.org_unit
12893                 WHERE id = org_unit_id;
12894                 --
12895                 IF org_found IS NULL THEN
12896                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12897                 END IF;
12898         END IF;
12899         --
12900         -- Loop over the propagable funds to identify the details
12901         -- from the old fund plus the id of the new one, if it exists.
12902         --
12903         FOR roll_fund in
12904         SELECT
12905             oldf.id AS old_fund,
12906             oldf.org,
12907             oldf.name,
12908             oldf.currency_type,
12909             oldf.code,
12910                 oldf.rollover,
12911             newf.id AS new_fund_id
12912         FROM
12913         acq.fund AS oldf
12914         LEFT JOIN acq.fund AS newf
12915                 ON ( oldf.code = newf.code )
12916         WHERE
12917                     oldf.year = old_year
12918                 AND oldf.propagate
12919         AND newf.year = new_year
12920                 AND oldf.org in (
12921                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12922                 )
12923         LOOP
12924                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12925                 --
12926                 IF roll_fund.new_fund_id IS NULL THEN
12927                         --
12928                         -- The old fund hasn't been propagated yet.  Propagate it now.
12929                         --
12930                         INSERT INTO acq.fund (
12931                                 org,
12932                                 name,
12933                                 year,
12934                                 currency_type,
12935                                 code,
12936                                 rollover,
12937                                 propagate,
12938                                 balance_warning_percent,
12939                                 balance_stop_percent
12940                         ) VALUES (
12941                                 roll_fund.org,
12942                                 roll_fund.name,
12943                                 new_year,
12944                                 roll_fund.currency_type,
12945                                 roll_fund.code,
12946                                 true,
12947                                 true,
12948                                 roll_fund.balance_warning_percent,
12949                                 roll_fund.balance_stop_percent
12950                         )
12951                         RETURNING id INTO new_fund;
12952                 ELSE
12953                         new_fund = roll_fund.new_fund_id;
12954                 END IF;
12955                 --
12956                 -- Determine the amount to transfer
12957                 --
12958                 SELECT amount
12959                 INTO xfer_amount
12960                 FROM acq.fund_spent_balance
12961                 WHERE fund = roll_fund.old_fund;
12962                 --
12963                 IF xfer_amount <> 0 THEN
12964                         IF roll_fund.rollover THEN
12965                                 --
12966                                 -- Transfer balance from old fund to new
12967                                 --
12968                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12969                                 --
12970                                 PERFORM acq.transfer_fund(
12971                                         roll_fund.old_fund,
12972                                         xfer_amount,
12973                                         new_fund,
12974                                         xfer_amount,
12975                                         user_id,
12976                                         'Rollover'
12977                                 );
12978                         ELSE
12979                                 --
12980                                 -- Transfer balance from old fund to the void
12981                                 --
12982                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12983                                 --
12984                                 PERFORM acq.transfer_fund(
12985                                         roll_fund.old_fund,
12986                                         xfer_amount,
12987                                         NULL,
12988                                         NULL,
12989                                         user_id,
12990                                         'Rollover'
12991                                 );
12992                         END IF;
12993                 END IF;
12994                 --
12995                 IF roll_fund.rollover THEN
12996                         --
12997                         -- Move any lineitems from the old fund to the new one
12998                         -- where the associated debit is an encumbrance.
12999                         --
13000                         -- Any other tables tying expenditure details to funds should
13001                         -- receive similar treatment.  At this writing there are none.
13002                         --
13003                         UPDATE acq.lineitem_detail
13004                         SET fund = new_fund
13005                         WHERE
13006                         fund = roll_fund.old_fund -- this condition may be redundant
13007                         AND fund_debit in
13008                         (
13009                                 SELECT id
13010                                 FROM acq.fund_debit
13011                                 WHERE
13012                                 fund = roll_fund.old_fund
13013                                 AND encumbrance
13014                         );
13015                         --
13016                         -- Move encumbrance debits from the old fund to the new fund
13017                         --
13018                         UPDATE acq.fund_debit
13019                         SET fund = new_fund
13020                         wHERE
13021                                 fund = roll_fund.old_fund
13022                                 AND encumbrance;
13023                 END IF;
13024                 --
13025                 -- Mark old fund as inactive, now that we've closed it
13026                 --
13027                 UPDATE acq.fund
13028                 SET active = FALSE
13029                 WHERE id = roll_fund.old_fund;
13030         END LOOP;
13031 END;
13032 $$ LANGUAGE plpgsql;
13033
13034 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
13035     SELECT regexp_replace($1, ',', '', 'g');
13036 $$ LANGUAGE SQL STRICT IMMUTABLE;
13037
13038 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
13039     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
13040 $$ LANGUAGE SQL STRICT IMMUTABLE;
13041
13042 CREATE TABLE acq.distribution_formula_application (
13043     id BIGSERIAL PRIMARY KEY,
13044     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
13045     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
13046     formula INT NOT NULL
13047         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
13048     lineitem INT NOT NULL
13049         REFERENCES acq.lineitem( id )
13050                 ON DELETE CASCADE
13051                 DEFERRABLE INITIALLY DEFERRED
13052 );
13053
13054 CREATE INDEX acqdfa_df_idx
13055     ON acq.distribution_formula_application(formula);
13056 CREATE INDEX acqdfa_li_idx
13057     ON acq.distribution_formula_application(lineitem);
13058 CREATE INDEX acqdfa_creator_idx
13059     ON acq.distribution_formula_application(creator);
13060
13061 CREATE TABLE acq.user_request_type (
13062     id      SERIAL  PRIMARY KEY,
13063     label   TEXT    NOT NULL UNIQUE -- i18n-ize
13064 );
13065
13066 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
13067 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
13068 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
13069 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
13070 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
13071
13072 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
13073
13074 CREATE TABLE acq.cancel_reason (
13075         id            SERIAL            PRIMARY KEY,
13076         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
13077                                         DEFERRABLE INITIALLY DEFERRED,
13078         label         TEXT              NOT NULL,
13079         description   TEXT              NOT NULL,
13080         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
13081         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
13082 );
13083
13084 -- Reserve ids 1-999 for stock reasons
13085 -- Reserve ids 1000-1999 for EDI reasons
13086 -- 2000+ are available for staff to create
13087
13088 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
13089
13090 CREATE TABLE acq.user_request (
13091     id                  SERIAL  PRIMARY KEY,
13092     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
13093     hold                BOOL    NOT NULL DEFAULT TRUE,
13094
13095     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
13096     holdable_formats    TEXT,           -- nullable, for use in hold creation
13097     phone_notify        TEXT,
13098     email_notify        BOOL    NOT NULL DEFAULT TRUE,
13099     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
13100     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
13101     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
13102     need_before         TIMESTAMPTZ,    -- don't create holds after this
13103     max_fee             TEXT,
13104
13105     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
13106     isxn                TEXT,
13107     title               TEXT,
13108     volume              TEXT,
13109     author              TEXT,
13110     article_title       TEXT,
13111     article_pages       TEXT,
13112     publisher           TEXT,
13113     location            TEXT,
13114     pubdate             TEXT,
13115     mentioned           TEXT,
13116     other_info          TEXT,
13117         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
13118                                              DEFERRABLE INITIALLY DEFERRED
13119 );
13120
13121 CREATE TABLE acq.lineitem_alert_text (
13122         id               SERIAL         PRIMARY KEY,
13123         code             TEXT           NOT NULL,
13124         description      TEXT,
13125         owning_lib       INT            NOT NULL
13126                                         REFERENCES actor.org_unit(id)
13127                                         DEFERRABLE INITIALLY DEFERRED,
13128         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
13129 );
13130
13131 ALTER TABLE acq.lineitem_note
13132         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
13133                                          DEFERRABLE INITIALLY DEFERRED;
13134
13135 -- add ON DELETE CASCADE clause
13136
13137 ALTER TABLE acq.lineitem_note
13138         DROP CONSTRAINT lineitem_note_lineitem_fkey;
13139
13140 ALTER TABLE acq.lineitem_note
13141         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13142                 ON DELETE CASCADE
13143                 DEFERRABLE INITIALLY DEFERRED;
13144
13145 ALTER TABLE acq.lineitem_note
13146         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13147
13148 CREATE TABLE acq.invoice_method (
13149     code    TEXT    PRIMARY KEY,
13150     name    TEXT    NOT NULL -- i18n-ize
13151 );
13152 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
13153 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
13154
13155 CREATE TABLE acq.invoice_payment_method (
13156         code      TEXT     PRIMARY KEY,
13157         name      TEXT     NOT NULL
13158 );
13159
13160 CREATE TABLE acq.invoice (
13161     id             SERIAL      PRIMARY KEY,
13162     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
13163     provider       INT         NOT NULL REFERENCES acq.provider (id),
13164     shipper        INT         NOT NULL REFERENCES acq.provider (id),
13165     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
13166     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
13167     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
13168     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
13169         payment_auth   TEXT,
13170         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
13171                                    DEFERRABLE INITIALLY DEFERRED,
13172         note           TEXT,
13173     complete       BOOL        NOT NULL DEFAULT FALSE,
13174     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
13175 );
13176
13177 CREATE TABLE acq.invoice_entry (
13178     id              SERIAL      PRIMARY KEY,
13179     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
13180     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13181     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
13182     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
13183     phys_item_count INT, -- and how many did staff count
13184     note            TEXT,
13185     billed_per_item BOOL,
13186     cost_billed     NUMERIC(8,2),
13187     actual_cost     NUMERIC(8,2),
13188         amount_paid     NUMERIC (8,2)
13189 );
13190
13191 CREATE TABLE acq.invoice_item_type (
13192     code    TEXT    PRIMARY KEY,
13193     name    TEXT    NOT NULL, -- i18n-ize
13194         prorate BOOL    NOT NULL DEFAULT FALSE
13195 );
13196
13197 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
13198 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
13199 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
13200 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
13201 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
13202 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
13203
13204 CREATE TABLE acq.po_item (
13205         id              SERIAL      PRIMARY KEY,
13206         purchase_order  INT         REFERENCES acq.purchase_order (id)
13207                                     ON UPDATE CASCADE ON DELETE SET NULL
13208                                     DEFERRABLE INITIALLY DEFERRED,
13209         fund_debit      INT         REFERENCES acq.fund_debit (id)
13210                                     DEFERRABLE INITIALLY DEFERRED,
13211         inv_item_type   TEXT        NOT NULL
13212                                     REFERENCES acq.invoice_item_type (code)
13213                                     DEFERRABLE INITIALLY DEFERRED,
13214         title           TEXT,
13215         author          TEXT,
13216         note            TEXT,
13217         estimated_cost  NUMERIC(8,2),
13218         fund            INT         REFERENCES acq.fund (id)
13219                                     DEFERRABLE INITIALLY DEFERRED,
13220         target          BIGINT
13221 );
13222
13223 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
13224     id              SERIAL      PRIMARY KEY,
13225     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
13226     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13227     fund_debit      INT         REFERENCES acq.fund_debit (id),
13228     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
13229     title           TEXT,
13230     author          TEXT,
13231     note            TEXT,
13232     cost_billed     NUMERIC(8,2),
13233     actual_cost     NUMERIC(8,2),
13234     fund            INT         REFERENCES acq.fund (id)
13235                                 DEFERRABLE INITIALLY DEFERRED,
13236     amount_paid     NUMERIC (8,2),
13237     po_item         INT         REFERENCES acq.po_item (id)
13238                                 DEFERRABLE INITIALLY DEFERRED,
13239     target          BIGINT
13240 );
13241
13242 CREATE TABLE acq.edi_message (
13243     id               SERIAL          PRIMARY KEY,
13244     account          INTEGER         REFERENCES acq.edi_account(id)
13245                                      DEFERRABLE INITIALLY DEFERRED,
13246     remote_file      TEXT,
13247     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
13248     translate_time   TIMESTAMPTZ,
13249     process_time     TIMESTAMPTZ,
13250     error_time       TIMESTAMPTZ,
13251     status           TEXT            NOT NULL DEFAULT 'new'
13252                                      CONSTRAINT status_value CHECK
13253                                      ( status IN (
13254                                         'new',          -- needs to be translated
13255                                         'translated',   -- needs to be processed
13256                                         'trans_error',  -- error in translation step
13257                                         'processed',    -- needs to have remote_file deleted
13258                                         'proc_error',   -- error in processing step
13259                                         'delete_error', -- error in deletion
13260                                         'retry',        -- need to retry
13261                                         'complete'      -- done
13262                                      )),
13263     edi              TEXT,
13264     jedi             TEXT,
13265     error            TEXT,
13266     purchase_order   INT             REFERENCES acq.purchase_order
13267                                      DEFERRABLE INITIALLY DEFERRED,
13268     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
13269                                      CHECK ( message_type IN (
13270                                         'ORDERS',
13271                                         'ORDRSP',
13272                                         'INVOIC',
13273                                         'OSTENQ',
13274                                         'OSTRPT'
13275                                      ))
13276 );
13277
13278 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
13279
13280 ALTER TABLE acq.provider_address
13281         ADD COLUMN fax_phone TEXT;
13282
13283 ALTER TABLE acq.provider_contact_address
13284         ADD COLUMN fax_phone TEXT;
13285
13286 CREATE TABLE acq.provider_note (
13287     id      SERIAL              PRIMARY KEY,
13288     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
13289     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13290     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13291     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13292     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13293     value       TEXT            NOT NULL
13294 );
13295 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
13296 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
13297 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
13298
13299 -- For each fund: the total allocation from all sources, in the
13300 -- currency of the fund (or 0 if there are no allocations)
13301
13302 CREATE VIEW acq.all_fund_allocation_total AS
13303 SELECT
13304     f.id AS fund,
13305     COALESCE( SUM( a.amount * acq.exchange_ratio(
13306         s.currency_type, f.currency_type))::numeric(100,2), 0 )
13307     AS amount
13308 FROM
13309     acq.fund f
13310         LEFT JOIN acq.fund_allocation a
13311             ON a.fund = f.id
13312         LEFT JOIN acq.funding_source s
13313             ON a.funding_source = s.id
13314 GROUP BY
13315     f.id;
13316
13317 -- For every fund: the total encumbrances (or 0 if none),
13318 -- in the currency of the fund.
13319
13320 CREATE VIEW acq.all_fund_encumbrance_total AS
13321 SELECT
13322         f.id AS fund,
13323         COALESCE( encumb.amount, 0 ) AS amount
13324 FROM
13325         acq.fund AS f
13326                 LEFT JOIN (
13327                         SELECT
13328                                 fund,
13329                                 sum( amount ) AS amount
13330                         FROM
13331                                 acq.fund_debit
13332                         WHERE
13333                                 encumbrance
13334                         GROUP BY fund
13335                 ) AS encumb
13336                         ON f.id = encumb.fund;
13337
13338 -- For every fund: the total spent (or 0 if none),
13339 -- in the currency of the fund.
13340
13341 CREATE VIEW acq.all_fund_spent_total AS
13342 SELECT
13343     f.id AS fund,
13344     COALESCE( spent.amount, 0 ) AS amount
13345 FROM
13346     acq.fund AS f
13347         LEFT JOIN (
13348             SELECT
13349                 fund,
13350                 sum( amount ) AS amount
13351             FROM
13352                 acq.fund_debit
13353             WHERE
13354                 NOT encumbrance
13355             GROUP BY fund
13356         ) AS spent
13357             ON f.id = spent.fund;
13358
13359 -- For each fund: the amount not yet spent, in the currency
13360 -- of the fund.  May include encumbrances.
13361
13362 CREATE VIEW acq.all_fund_spent_balance AS
13363 SELECT
13364         c.fund,
13365         c.amount - d.amount AS amount
13366 FROM acq.all_fund_allocation_total c
13367     LEFT JOIN acq.all_fund_spent_total d USING (fund);
13368
13369 -- For each fund: the amount neither spent nor encumbered,
13370 -- in the currency of the fund
13371
13372 CREATE VIEW acq.all_fund_combined_balance AS
13373 SELECT
13374      a.fund,
13375      a.amount - COALESCE( c.amount, 0 ) AS amount
13376 FROM
13377      acq.all_fund_allocation_total a
13378         LEFT OUTER JOIN (
13379             SELECT
13380                 fund,
13381                 SUM( amount ) AS amount
13382             FROM
13383                 acq.fund_debit
13384             GROUP BY
13385                 fund
13386         ) AS c USING ( fund );
13387
13388 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 $$
13389 DECLARE
13390         suffix TEXT;
13391         bucket_row RECORD;
13392         picklist_row RECORD;
13393         queue_row RECORD;
13394         folder_row RECORD;
13395 BEGIN
13396
13397     -- do some initial cleanup 
13398     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
13399     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
13400     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
13401
13402     -- actor.*
13403     IF del_cards THEN
13404         DELETE FROM actor.card where usr = src_usr;
13405     ELSE
13406         IF deactivate_cards THEN
13407             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
13408         END IF;
13409         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
13410     END IF;
13411
13412
13413     IF del_addrs THEN
13414         DELETE FROM actor.usr_address WHERE usr = src_usr;
13415     ELSE
13416         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
13417     END IF;
13418
13419     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
13420     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
13421     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
13422     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
13423     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
13424
13425     -- permission.*
13426     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
13427     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
13428     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
13429     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
13430
13431
13432     -- container.*
13433         
13434         -- For each *_bucket table: transfer every bucket belonging to src_usr
13435         -- into the custody of dest_usr.
13436         --
13437         -- In order to avoid colliding with an existing bucket owned by
13438         -- the destination user, append the source user's id (in parenthesese)
13439         -- to the name.  If you still get a collision, add successive
13440         -- spaces to the name and keep trying until you succeed.
13441         --
13442         FOR bucket_row in
13443                 SELECT id, name
13444                 FROM   container.biblio_record_entry_bucket
13445                 WHERE  owner = src_usr
13446         LOOP
13447                 suffix := ' (' || src_usr || ')';
13448                 LOOP
13449                         BEGIN
13450                                 UPDATE  container.biblio_record_entry_bucket
13451                                 SET     owner = dest_usr, name = name || suffix
13452                                 WHERE   id = bucket_row.id;
13453                         EXCEPTION WHEN unique_violation THEN
13454                                 suffix := suffix || ' ';
13455                                 CONTINUE;
13456                         END;
13457                         EXIT;
13458                 END LOOP;
13459         END LOOP;
13460
13461         FOR bucket_row in
13462                 SELECT id, name
13463                 FROM   container.call_number_bucket
13464                 WHERE  owner = src_usr
13465         LOOP
13466                 suffix := ' (' || src_usr || ')';
13467                 LOOP
13468                         BEGIN
13469                                 UPDATE  container.call_number_bucket
13470                                 SET     owner = dest_usr, name = name || suffix
13471                                 WHERE   id = bucket_row.id;
13472                         EXCEPTION WHEN unique_violation THEN
13473                                 suffix := suffix || ' ';
13474                                 CONTINUE;
13475                         END;
13476                         EXIT;
13477                 END LOOP;
13478         END LOOP;
13479
13480         FOR bucket_row in
13481                 SELECT id, name
13482                 FROM   container.copy_bucket
13483                 WHERE  owner = src_usr
13484         LOOP
13485                 suffix := ' (' || src_usr || ')';
13486                 LOOP
13487                         BEGIN
13488                                 UPDATE  container.copy_bucket
13489                                 SET     owner = dest_usr, name = name || suffix
13490                                 WHERE   id = bucket_row.id;
13491                         EXCEPTION WHEN unique_violation THEN
13492                                 suffix := suffix || ' ';
13493                                 CONTINUE;
13494                         END;
13495                         EXIT;
13496                 END LOOP;
13497         END LOOP;
13498
13499         FOR bucket_row in
13500                 SELECT id, name
13501                 FROM   container.user_bucket
13502                 WHERE  owner = src_usr
13503         LOOP
13504                 suffix := ' (' || src_usr || ')';
13505                 LOOP
13506                         BEGIN
13507                                 UPDATE  container.user_bucket
13508                                 SET     owner = dest_usr, name = name || suffix
13509                                 WHERE   id = bucket_row.id;
13510                         EXCEPTION WHEN unique_violation THEN
13511                                 suffix := suffix || ' ';
13512                                 CONTINUE;
13513                         END;
13514                         EXIT;
13515                 END LOOP;
13516         END LOOP;
13517
13518         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13519
13520     -- vandelay.*
13521         -- transfer queues the same way we transfer buckets (see above)
13522         FOR queue_row in
13523                 SELECT id, name
13524                 FROM   vandelay.queue
13525                 WHERE  owner = src_usr
13526         LOOP
13527                 suffix := ' (' || src_usr || ')';
13528                 LOOP
13529                         BEGIN
13530                                 UPDATE  vandelay.queue
13531                                 SET     owner = dest_usr, name = name || suffix
13532                                 WHERE   id = queue_row.id;
13533                         EXCEPTION WHEN unique_violation THEN
13534                                 suffix := suffix || ' ';
13535                                 CONTINUE;
13536                         END;
13537                         EXIT;
13538                 END LOOP;
13539         END LOOP;
13540
13541     -- money.*
13542     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13543     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13544     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13545     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13546     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13547
13548     -- action.*
13549     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13550     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13551     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13552
13553     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13554     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13555     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13556     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13557
13558     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13559     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13560     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13561     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13562     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13563
13564     -- acq.*
13565     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13566         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13567
13568         -- transfer picklists the same way we transfer buckets (see above)
13569         FOR picklist_row in
13570                 SELECT id, name
13571                 FROM   acq.picklist
13572                 WHERE  owner = src_usr
13573         LOOP
13574                 suffix := ' (' || src_usr || ')';
13575                 LOOP
13576                         BEGIN
13577                                 UPDATE  acq.picklist
13578                                 SET     owner = dest_usr, name = name || suffix
13579                                 WHERE   id = picklist_row.id;
13580                         EXCEPTION WHEN unique_violation THEN
13581                                 suffix := suffix || ' ';
13582                                 CONTINUE;
13583                         END;
13584                         EXIT;
13585                 END LOOP;
13586         END LOOP;
13587
13588     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13589     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13590     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13591     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13592     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13593     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13594     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13595     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13596
13597     -- asset.*
13598     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13599     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13600     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13601     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13602     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13603     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13604
13605     -- serial.*
13606     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13607     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13608
13609     -- reporter.*
13610     -- It's not uncommon to define the reporter schema in a replica 
13611     -- DB only, so don't assume these tables exist in the write DB.
13612     BEGIN
13613         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13614     EXCEPTION WHEN undefined_table THEN
13615         -- do nothing
13616     END;
13617     BEGIN
13618         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13619     EXCEPTION WHEN undefined_table THEN
13620         -- do nothing
13621     END;
13622     BEGIN
13623         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13624     EXCEPTION WHEN undefined_table THEN
13625         -- do nothing
13626     END;
13627     BEGIN
13628                 -- transfer folders the same way we transfer buckets (see above)
13629                 FOR folder_row in
13630                         SELECT id, name
13631                         FROM   reporter.template_folder
13632                         WHERE  owner = src_usr
13633                 LOOP
13634                         suffix := ' (' || src_usr || ')';
13635                         LOOP
13636                                 BEGIN
13637                                         UPDATE  reporter.template_folder
13638                                         SET     owner = dest_usr, name = name || suffix
13639                                         WHERE   id = folder_row.id;
13640                                 EXCEPTION WHEN unique_violation THEN
13641                                         suffix := suffix || ' ';
13642                                         CONTINUE;
13643                                 END;
13644                                 EXIT;
13645                         END LOOP;
13646                 END LOOP;
13647     EXCEPTION WHEN undefined_table THEN
13648         -- do nothing
13649     END;
13650     BEGIN
13651                 -- transfer folders the same way we transfer buckets (see above)
13652                 FOR folder_row in
13653                         SELECT id, name
13654                         FROM   reporter.report_folder
13655                         WHERE  owner = src_usr
13656                 LOOP
13657                         suffix := ' (' || src_usr || ')';
13658                         LOOP
13659                                 BEGIN
13660                                         UPDATE  reporter.report_folder
13661                                         SET     owner = dest_usr, name = name || suffix
13662                                         WHERE   id = folder_row.id;
13663                                 EXCEPTION WHEN unique_violation THEN
13664                                         suffix := suffix || ' ';
13665                                         CONTINUE;
13666                                 END;
13667                                 EXIT;
13668                         END LOOP;
13669                 END LOOP;
13670     EXCEPTION WHEN undefined_table THEN
13671         -- do nothing
13672     END;
13673     BEGIN
13674                 -- transfer folders the same way we transfer buckets (see above)
13675                 FOR folder_row in
13676                         SELECT id, name
13677                         FROM   reporter.output_folder
13678                         WHERE  owner = src_usr
13679                 LOOP
13680                         suffix := ' (' || src_usr || ')';
13681                         LOOP
13682                                 BEGIN
13683                                         UPDATE  reporter.output_folder
13684                                         SET     owner = dest_usr, name = name || suffix
13685                                         WHERE   id = folder_row.id;
13686                                 EXCEPTION WHEN unique_violation THEN
13687                                         suffix := suffix || ' ';
13688                                         CONTINUE;
13689                                 END;
13690                                 EXIT;
13691                         END LOOP;
13692                 END LOOP;
13693     EXCEPTION WHEN undefined_table THEN
13694         -- do nothing
13695     END;
13696
13697     -- Finally, delete the source user
13698     DELETE FROM actor.usr WHERE id = src_usr;
13699
13700 END;
13701 $$ LANGUAGE plpgsql;
13702
13703 -- The "add" trigger functions should protect against existing NULLed values, just in case
13704 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13705 BEGIN
13706     IF NOT NEW.voided THEN
13707         UPDATE  money.materialized_billable_xact_summary
13708           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13709             last_billing_ts = NEW.billing_ts,
13710             last_billing_note = NEW.note,
13711             last_billing_type = NEW.billing_type,
13712             balance_owed = balance_owed + NEW.amount
13713           WHERE id = NEW.xact;
13714     END IF;
13715
13716     RETURN NEW;
13717 END;
13718 $$ LANGUAGE PLPGSQL;
13719
13720 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13721 BEGIN
13722     IF NOT NEW.voided THEN
13723         UPDATE  money.materialized_billable_xact_summary
13724           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13725             last_payment_ts = NEW.payment_ts,
13726             last_payment_note = NEW.note,
13727             last_payment_type = TG_ARGV[0],
13728             balance_owed = balance_owed - NEW.amount
13729           WHERE id = NEW.xact;
13730     END IF;
13731
13732     RETURN NEW;
13733 END;
13734 $$ LANGUAGE PLPGSQL;
13735
13736 -- Refresh the mat view with the corrected underlying view
13737 TRUNCATE money.materialized_billable_xact_summary;
13738 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13739
13740 -- Now redefine the view as a window onto the materialized view
13741 CREATE OR REPLACE VIEW money.billable_xact_summary AS
13742     SELECT * FROM money.materialized_billable_xact_summary;
13743
13744 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13745     user_id    IN INTEGER,
13746     perm_code  IN TEXT
13747 )
13748 RETURNS SETOF INTEGER AS $$
13749 --
13750 -- Return a set of all the org units for which a given user has a given
13751 -- permission, granted directly (not through inheritance from a parent
13752 -- org unit).
13753 --
13754 -- The permissions apply to a minimum depth of the org unit hierarchy,
13755 -- for the org unit(s) to which the user is assigned.  (They also apply
13756 -- to the subordinates of those org units, but we don't report the
13757 -- subordinates here.)
13758 --
13759 -- For purposes of this function, the permission.usr_work_ou_map table
13760 -- defines which users belong to which org units.  I.e. we ignore the
13761 -- home_ou column of actor.usr.
13762 --
13763 -- The result set may contain duplicates, which should be eliminated
13764 -- by a DISTINCT clause.
13765 --
13766 DECLARE
13767     b_super       BOOLEAN;
13768     n_perm        INTEGER;
13769     n_min_depth   INTEGER;
13770     n_work_ou     INTEGER;
13771     n_curr_ou     INTEGER;
13772     n_depth       INTEGER;
13773     n_curr_depth  INTEGER;
13774 BEGIN
13775     --
13776     -- Check for superuser
13777     --
13778     SELECT INTO b_super
13779         super_user
13780     FROM
13781         actor.usr
13782     WHERE
13783         id = user_id;
13784     --
13785     IF NOT FOUND THEN
13786         return;             -- No user?  No permissions.
13787     ELSIF b_super THEN
13788         --
13789         -- Super user has all permissions everywhere
13790         --
13791         FOR n_work_ou IN
13792             SELECT
13793                 id
13794             FROM
13795                 actor.org_unit
13796             WHERE
13797                 parent_ou IS NULL
13798         LOOP
13799             RETURN NEXT n_work_ou;
13800         END LOOP;
13801         RETURN;
13802     END IF;
13803     --
13804     -- Translate the permission name
13805     -- to a numeric permission id
13806     --
13807     SELECT INTO n_perm
13808         id
13809     FROM
13810         permission.perm_list
13811     WHERE
13812         code = perm_code;
13813     --
13814     IF NOT FOUND THEN
13815         RETURN;               -- No such permission
13816     END IF;
13817     --
13818     -- Find the highest-level org unit (i.e. the minimum depth)
13819     -- to which the permission is applied for this user
13820     --
13821     -- This query is modified from the one in permission.usr_perms().
13822     --
13823     SELECT INTO n_min_depth
13824         min( depth )
13825     FROM    (
13826         SELECT depth
13827           FROM permission.usr_perm_map upm
13828          WHERE upm.usr = user_id
13829            AND (upm.perm = n_perm OR upm.perm = -1)
13830                     UNION
13831         SELECT  gpm.depth
13832           FROM  permission.grp_perm_map gpm
13833           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13834             AND gpm.grp IN (
13835                SELECT   (permission.grp_ancestors(
13836                     (SELECT profile FROM actor.usr WHERE id = user_id)
13837                 )).id
13838             )
13839                     UNION
13840         SELECT  p.depth
13841           FROM  permission.grp_perm_map p
13842           WHERE (p.perm = n_perm OR p.perm = -1)
13843             AND p.grp IN (
13844                 SELECT (permission.grp_ancestors(m.grp)).id
13845                 FROM   permission.usr_grp_map m
13846                 WHERE  m.usr = user_id
13847             )
13848     ) AS x;
13849     --
13850     IF NOT FOUND THEN
13851         RETURN;                -- No such permission for this user
13852     END IF;
13853     --
13854     -- Identify the org units to which the user is assigned.  Note that
13855     -- we pay no attention to the home_ou column in actor.usr.
13856     --
13857     FOR n_work_ou IN
13858         SELECT
13859             work_ou
13860         FROM
13861             permission.usr_work_ou_map
13862         WHERE
13863             usr = user_id
13864     LOOP            -- For each org unit to which the user is assigned
13865         --
13866         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13867         -- We take it on faith that this depth agrees with the actual hierarchy
13868         -- defined in actor.org_unit.
13869         --
13870         SELECT INTO n_depth
13871             type.depth
13872         FROM
13873             actor.org_unit_type type
13874                 INNER JOIN actor.org_unit ou
13875                     ON ( ou.ou_type = type.id )
13876         WHERE
13877             ou.id = n_work_ou;
13878         --
13879         IF NOT FOUND THEN
13880             CONTINUE;        -- Maybe raise exception?
13881         END IF;
13882         --
13883         -- Compare the depth of the work org unit to the
13884         -- minimum depth, and branch accordingly
13885         --
13886         IF n_depth = n_min_depth THEN
13887             --
13888             -- The org unit is at the right depth, so return it.
13889             --
13890             RETURN NEXT n_work_ou;
13891         ELSIF n_depth > n_min_depth THEN
13892             --
13893             -- Traverse the org unit tree toward the root,
13894             -- until you reach the minimum depth determined above
13895             --
13896             n_curr_depth := n_depth;
13897             n_curr_ou := n_work_ou;
13898             WHILE n_curr_depth > n_min_depth LOOP
13899                 SELECT INTO n_curr_ou
13900                     parent_ou
13901                 FROM
13902                     actor.org_unit
13903                 WHERE
13904                     id = n_curr_ou;
13905                 --
13906                 IF FOUND THEN
13907                     n_curr_depth := n_curr_depth - 1;
13908                 ELSE
13909                     --
13910                     -- This can happen only if the hierarchy defined in
13911                     -- actor.org_unit is corrupted, or out of sync with
13912                     -- the depths defined in actor.org_unit_type.
13913                     -- Maybe we should raise an exception here, instead
13914                     -- of silently ignoring the problem.
13915                     --
13916                     n_curr_ou = NULL;
13917                     EXIT;
13918                 END IF;
13919             END LOOP;
13920             --
13921             IF n_curr_ou IS NOT NULL THEN
13922                 RETURN NEXT n_curr_ou;
13923             END IF;
13924         ELSE
13925             --
13926             -- The permission applies only at a depth greater than the work org unit.
13927             -- Use connectby() to find all dependent org units at the specified depth.
13928             --
13929             FOR n_curr_ou IN
13930                 SELECT ou::INTEGER
13931                 FROM connectby(
13932                         'actor.org_unit',         -- table name
13933                         'id',                     -- key column
13934                         'parent_ou',              -- recursive foreign key
13935                         n_work_ou::TEXT,          -- id of starting point
13936                         (n_min_depth - n_depth)   -- max depth to search, relative
13937                     )                             --   to starting point
13938                     AS t(
13939                         ou text,            -- dependent org unit
13940                         parent_ou text,     -- (ignore)
13941                         level int           -- depth relative to starting point
13942                     )
13943                 WHERE
13944                     level = n_min_depth - n_depth
13945             LOOP
13946                 RETURN NEXT n_curr_ou;
13947             END LOOP;
13948         END IF;
13949         --
13950     END LOOP;
13951     --
13952     RETURN;
13953     --
13954 END;
13955 $$ LANGUAGE 'plpgsql';
13956
13957 ALTER TABLE acq.purchase_order
13958         ADD COLUMN cancel_reason INT
13959                 REFERENCES acq.cancel_reason( id )
13960             DEFERRABLE INITIALLY DEFERRED,
13961         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13962
13963 -- Build the history table and lifecycle view
13964 -- for acq.purchase_order
13965
13966 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
13967
13968 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
13969
13970 ALTER TABLE acq.lineitem
13971         ADD COLUMN cancel_reason INT
13972                 REFERENCES acq.cancel_reason( id )
13973             DEFERRABLE INITIALLY DEFERRED,
13974         ADD COLUMN estimated_unit_price NUMERIC,
13975         ADD COLUMN claim_policy INT
13976                 REFERENCES acq.claim_policy
13977                 DEFERRABLE INITIALLY DEFERRED,
13978         ALTER COLUMN eg_bib_id SET DATA TYPE bigint;
13979
13980 -- Build the history table and lifecycle view
13981 -- for acq.lineitem
13982
13983 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
13984 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
13985
13986 ALTER TABLE acq.lineitem_detail
13987         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13988                                             DEFERRABLE INITIALLY DEFERRED;
13989
13990 ALTER TABLE acq.lineitem_detail
13991         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13992
13993 ALTER TABLE acq.lineitem_detail
13994         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13995                 ON DELETE CASCADE
13996                 DEFERRABLE INITIALLY DEFERRED;
13997
13998 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13999
14000 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
14001         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
14002
14003 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
14004         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
14005
14006 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT, force_add INT ) RETURNS TEXT AS $_$
14007
14008     use MARC::Record;
14009     use MARC::File::XML (BinaryEncoding => 'UTF-8');
14010     use strict;
14011
14012     my $target_xml = shift;
14013     my $source_xml = shift;
14014     my $field_spec = shift;
14015     my $force_add = shift || 0;
14016
14017     my $target_r = MARC::Record->new_from_xml( $target_xml );
14018     my $source_r = MARC::Record->new_from_xml( $source_xml );
14019
14020     return $target_xml unless ($target_r && $source_r);
14021
14022     my @field_list = split(',', $field_spec);
14023
14024     my %fields;
14025     for my $f (@field_list) {
14026         $f =~ s/^\s*//; $f =~ s/\s*$//;
14027         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14028             my $field = $1;
14029             $field =~ s/\s+//;
14030             my $sf = $2;
14031             $sf =~ s/\s+//;
14032             my $match = $3;
14033             $match =~ s/^\s*//; $match =~ s/\s*$//;
14034             $fields{$field} = { sf => [ split('', $sf) ] };
14035             if ($match) {
14036                 my ($msf,$mre) = split('~', $match);
14037                 if (length($msf) > 0 and length($mre) > 0) {
14038                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14039                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14040                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14041                 }
14042             }
14043         }
14044     }
14045
14046     for my $f ( keys %fields) {
14047         if ( @{$fields{$f}{sf}} ) {
14048             for my $from_field ($source_r->field( $f )) {
14049                 my @tos = $target_r->field( $f );
14050                 if (!@tos) {
14051                     next if (exists($fields{$f}{match}) and !$force_add);
14052                     my @new_fields = map { $_->clone } $source_r->field( $f );
14053                     $target_r->insert_fields_ordered( @new_fields );
14054                 } else {
14055                     for my $to_field (@tos) {
14056                         if (exists($fields{$f}{match})) {
14057                             next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14058                         }
14059                         my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
14060                         $to_field->add_subfields( @new_sf );
14061                     }
14062                 }
14063             }
14064         } else {
14065             my @new_fields = map { $_->clone } $source_r->field( $f );
14066             $target_r->insert_fields_ordered( @new_fields );
14067         }
14068     }
14069
14070     $target_xml = $target_r->as_xml_record;
14071     $target_xml =~ s/^<\?.+?\?>$//mo;
14072     $target_xml =~ s/\n//sgo;
14073     $target_xml =~ s/>\s+</></sgo;
14074
14075     return $target_xml;
14076
14077 $_$ LANGUAGE PLPERLU;
14078
14079 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14080     SELECT vandelay.add_field( $1, $2, $3, 0 );
14081 $_$ LANGUAGE SQL;
14082
14083 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14084
14085     use MARC::Record;
14086     use MARC::File::XML (BinaryEncoding => 'UTF-8');
14087     use strict;
14088
14089     my $xml = shift;
14090     my $r = MARC::Record->new_from_xml( $xml );
14091
14092     return $xml unless ($r);
14093
14094     my $field_spec = shift;
14095     my @field_list = split(',', $field_spec);
14096
14097     my %fields;
14098     for my $f (@field_list) {
14099         $f =~ s/^\s*//; $f =~ s/\s*$//;
14100         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
14101             my $field = $1;
14102             $field =~ s/\s+//;
14103             my $sf = $2;
14104             $sf =~ s/\s+//;
14105             my $match = $3;
14106             $match =~ s/^\s*//; $match =~ s/\s*$//;
14107             $fields{$field} = { sf => [ split('', $sf) ] };
14108             if ($match) {
14109                 my ($msf,$mre) = split('~', $match);
14110                 if (length($msf) > 0 and length($mre) > 0) {
14111                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
14112                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
14113                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
14114                 }
14115             }
14116         }
14117     }
14118
14119     for my $f ( keys %fields) {
14120         for my $to_field ($r->field( $f )) {
14121             if (exists($fields{$f}{match})) {
14122                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
14123             }
14124
14125             if ( @{$fields{$f}{sf}} ) {
14126                 $to_field->delete_subfield(code => $fields{$f}{sf});
14127             } else {
14128                 $r->delete_field( $to_field );
14129             }
14130         }
14131     }
14132
14133     $xml = $r->as_xml_record;
14134     $xml =~ s/^<\?.+?\?>$//mo;
14135     $xml =~ s/\n//sgo;
14136     $xml =~ s/>\s+</></sgo;
14137
14138     return $xml;
14139
14140 $_$ LANGUAGE PLPERLU;
14141
14142 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14143 DECLARE
14144     xml_output TEXT;
14145     parsed_target TEXT;
14146     curr_field TEXT;
14147 BEGIN
14148
14149     parsed_target := vandelay.strip_field( target_xml, ''); -- this dance normalizes the format of the xml for the IF below
14150
14151     FOR curr_field IN SELECT UNNEST( STRING_TO_ARRAY(field, ',') ) LOOP -- naive split, but it's the same we use in the perl
14152
14153         xml_output := vandelay.strip_field( parsed_target, curr_field);
14154
14155         IF xml_output <> parsed_target  AND curr_field ~ E'~' THEN
14156             -- we removed something, and there was a regexp restriction in the curr_field definition, so proceed
14157             xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 1 );
14158         ELSIF curr_field !~ E'~' THEN
14159             -- No regexp restriction, add the curr_field
14160             xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 0 );
14161         END IF;
14162
14163         parsed_target := xml_output; -- in prep for any following loop iterations
14164
14165     END LOOP;
14166
14167     RETURN xml_output;
14168 END;
14169 $_$ LANGUAGE PLPGSQL;
14170
14171 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
14172     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
14173 $_$ LANGUAGE SQL;
14174
14175 CREATE VIEW action.unfulfilled_hold_max_loop AS
14176         SELECT  hold,
14177                 max(count) AS max
14178         FROM    action.unfulfilled_hold_loops
14179         GROUP BY 1;
14180
14181 ALTER TABLE acq.lineitem_attr
14182         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
14183
14184 ALTER TABLE acq.lineitem_attr
14185         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
14186                 ON DELETE CASCADE
14187                 DEFERRABLE INITIALLY DEFERRED;
14188
14189 ALTER TABLE acq.po_note
14190         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
14191
14192 CREATE TABLE vandelay.merge_profile (
14193     id              BIGSERIAL   PRIMARY KEY,
14194     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
14195     name            TEXT        NOT NULL,
14196     add_spec        TEXT,
14197     replace_spec    TEXT,
14198     strip_spec      TEXT,
14199     preserve_spec   TEXT,
14200     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
14201     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))
14202 );
14203
14204 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
14205 DECLARE
14206     attr        RECORD;
14207     attr_def    RECORD;
14208     eg_rec      RECORD;
14209     id_value    TEXT;
14210     exact_id    BIGINT;
14211 BEGIN
14212
14213     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
14214
14215     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
14216
14217     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
14218         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
14219
14220         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
14221             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
14222             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
14223             IF exact_id IS NOT NULL THEN
14224                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
14225             END IF;
14226         END IF;
14227     END IF;
14228
14229     IF exact_id IS NULL THEN
14230         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
14231
14232             -- All numbers? check for an id match
14233             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
14234                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
14235                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14236                 END LOOP;
14237             END IF;
14238
14239             -- Looks like an ISBN? check for an isbn match
14240             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
14241                 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
14242                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
14243                     IF FOUND THEN
14244                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
14245                     END IF;
14246                 END LOOP;
14247
14248                 -- subcheck for isbn-as-tcn
14249                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
14250                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14251                 END LOOP;
14252             END IF;
14253
14254             -- check for an OCLC tcn_value match
14255             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
14256                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
14257                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14258                 END LOOP;
14259             END IF;
14260
14261             -- check for a direct tcn_value match
14262             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
14263                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14264             END LOOP;
14265
14266             -- check for a direct item barcode match
14267             FOR eg_rec IN
14268                     SELECT  DISTINCT b.*
14269                       FROM  biblio.record_entry b
14270                             JOIN asset.call_number cn ON (cn.record = b.id)
14271                             JOIN asset.copy cp ON (cp.call_number = cn.id)
14272                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
14273             LOOP
14274                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14275             END LOOP;
14276
14277         END LOOP;
14278     END IF;
14279
14280     RETURN NULL;
14281 END;
14282 $func$ LANGUAGE PLPGSQL;
14283
14284 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 $_$
14285     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
14286 $_$ LANGUAGE SQL;
14287
14288 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
14289 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
14290 DECLARE
14291     output              vandelay.compile_profile%ROWTYPE;
14292     profile             vandelay.merge_profile%ROWTYPE;
14293     profile_tmpl        TEXT;
14294     profile_tmpl_owner  TEXT;
14295     add_rule            TEXT := '';
14296     strip_rule          TEXT := '';
14297     replace_rule        TEXT := '';
14298     preserve_rule       TEXT := '';
14299
14300 BEGIN
14301
14302     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
14303     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
14304
14305     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
14306         SELECT  p.* INTO profile
14307           FROM  vandelay.merge_profile p
14308                 JOIN actor.org_unit u ON (u.id = p.owner)
14309           WHERE p.name = profile_tmpl
14310                 AND u.shortname = profile_tmpl_owner;
14311
14312         IF profile.id IS NOT NULL THEN
14313             add_rule := COALESCE(profile.add_spec,'');
14314             strip_rule := COALESCE(profile.strip_spec,'');
14315             replace_rule := COALESCE(profile.replace_spec,'');
14316             preserve_rule := COALESCE(profile.preserve_spec,'');
14317         END IF;
14318     END IF;
14319
14320     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),','),'');
14321     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),','),'');
14322     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),','),'');
14323     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),','),'');
14324
14325     output.add_rule := BTRIM(add_rule,',');
14326     output.replace_rule := BTRIM(replace_rule,',');
14327     output.strip_rule := BTRIM(strip_rule,',');
14328     output.preserve_rule := BTRIM(preserve_rule,',');
14329
14330     RETURN output;
14331 END;
14332 $_$ LANGUAGE PLPGSQL;
14333
14334 -- Template-based marc munging functions
14335 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14336 DECLARE
14337     merge_profile   vandelay.merge_profile%ROWTYPE;
14338     dyn_profile     vandelay.compile_profile%ROWTYPE;
14339     editor_string   TEXT;
14340     editor_id       INT;
14341     source_marc     TEXT;
14342     target_marc     TEXT;
14343     eg_marc         TEXT;
14344     replace_rule    TEXT;
14345     match_count     INT;
14346 BEGIN
14347
14348     SELECT  b.marc INTO eg_marc
14349       FROM  biblio.record_entry b
14350       WHERE b.id = eg_id
14351       LIMIT 1;
14352
14353     IF eg_marc IS NULL OR v_marc IS NULL THEN
14354         -- RAISE NOTICE 'no marc for template or bib record';
14355         RETURN FALSE;
14356     END IF;
14357
14358     dyn_profile := vandelay.compile_profile( v_marc );
14359
14360     IF merge_profile_id IS NOT NULL THEN
14361         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14362         IF FOUND THEN
14363             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14364             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14365             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14366             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14367         END IF;
14368     END IF;
14369
14370     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14371         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14372         RETURN FALSE;
14373     END IF;
14374
14375     IF dyn_profile.replace_rule <> '' THEN
14376         source_marc = v_marc;
14377         target_marc = eg_marc;
14378         replace_rule = dyn_profile.replace_rule;
14379     ELSE
14380         source_marc = eg_marc;
14381         target_marc = v_marc;
14382         replace_rule = dyn_profile.preserve_rule;
14383     END IF;
14384
14385     UPDATE  biblio.record_entry
14386       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14387       WHERE id = eg_id;
14388
14389     IF NOT FOUND THEN
14390         -- RAISE NOTICE 'update of biblio.record_entry failed';
14391         RETURN FALSE;
14392     END IF;
14393
14394     RETURN TRUE;
14395
14396 END;
14397 $$ LANGUAGE PLPGSQL;
14398
14399 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
14400     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
14401 $$ LANGUAGE SQL;
14402
14403 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14404 DECLARE
14405     merge_profile   vandelay.merge_profile%ROWTYPE;
14406     dyn_profile     vandelay.compile_profile%ROWTYPE;
14407     editor_string   TEXT;
14408     editor_id       INT;
14409     source_marc     TEXT;
14410     target_marc     TEXT;
14411     eg_marc         TEXT;
14412     v_marc          TEXT;
14413     replace_rule    TEXT;
14414     match_count     INT;
14415 BEGIN
14416
14417     SELECT  q.marc INTO v_marc
14418       FROM  vandelay.queued_record q
14419             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
14420       LIMIT 1;
14421
14422     IF v_marc IS NULL THEN
14423         -- RAISE NOTICE 'no marc for vandelay or bib record';
14424         RETURN FALSE;
14425     END IF;
14426
14427     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
14428         UPDATE  vandelay.queued_bib_record
14429           SET   imported_as = eg_id,
14430                 import_time = NOW()
14431           WHERE id = import_id;
14432
14433         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
14434
14435         IF editor_string IS NOT NULL AND editor_string <> '' THEN
14436             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
14437
14438             IF editor_id IS NULL THEN
14439                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
14440             END IF;
14441
14442             IF editor_id IS NOT NULL THEN
14443                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
14444             END IF;
14445         END IF;
14446
14447         RETURN TRUE;
14448     END IF;
14449
14450     -- RAISE NOTICE 'update of biblio.record_entry failed';
14451
14452     RETURN FALSE;
14453
14454 END;
14455 $$ LANGUAGE PLPGSQL;
14456
14457 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14458 DECLARE
14459     eg_id           BIGINT;
14460     match_count     INT;
14461     match_attr      vandelay.bib_attr_definition%ROWTYPE;
14462 BEGIN
14463
14464     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
14465
14466     IF FOUND THEN
14467         -- RAISE NOTICE 'already imported, cannot auto-overlay'
14468         RETURN FALSE;
14469     END IF;
14470
14471     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
14472
14473     IF match_count <> 1 THEN
14474         -- RAISE NOTICE 'not an exact match';
14475         RETURN FALSE;
14476     END IF;
14477
14478     SELECT  d.* INTO match_attr
14479       FROM  vandelay.bib_attr_definition d
14480             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
14481             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
14482       WHERE m.queued_record = import_id;
14483
14484     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
14485         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
14486         RETURN FALSE;
14487     END IF;
14488
14489     SELECT  m.eg_record INTO eg_id
14490       FROM  vandelay.bib_match m
14491       WHERE m.queued_record = import_id
14492       LIMIT 1;
14493
14494     IF eg_id IS NULL THEN
14495         RETURN FALSE;
14496     END IF;
14497
14498     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
14499 END;
14500 $$ LANGUAGE PLPGSQL;
14501
14502 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14503 DECLARE
14504     queued_record   vandelay.queued_bib_record%ROWTYPE;
14505 BEGIN
14506
14507     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
14508
14509         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14510             RETURN NEXT queued_record.id;
14511         END IF;
14512
14513     END LOOP;
14514
14515     RETURN;
14516
14517 END;
14518 $$ LANGUAGE PLPGSQL;
14519
14520 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14521     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14522 $$ LANGUAGE SQL;
14523
14524 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14525 DECLARE
14526     merge_profile   vandelay.merge_profile%ROWTYPE;
14527     dyn_profile     vandelay.compile_profile%ROWTYPE;
14528     source_marc     TEXT;
14529     target_marc     TEXT;
14530     eg_marc         TEXT;
14531     v_marc          TEXT;
14532     replace_rule    TEXT;
14533     match_count     INT;
14534 BEGIN
14535
14536     SELECT  b.marc INTO eg_marc
14537       FROM  authority.record_entry b
14538             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14539       LIMIT 1;
14540
14541     SELECT  q.marc INTO v_marc
14542       FROM  vandelay.queued_record q
14543             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14544       LIMIT 1;
14545
14546     IF eg_marc IS NULL OR v_marc IS NULL THEN
14547         -- RAISE NOTICE 'no marc for vandelay or authority record';
14548         RETURN FALSE;
14549     END IF;
14550
14551     dyn_profile := vandelay.compile_profile( v_marc );
14552
14553     IF merge_profile_id IS NOT NULL THEN
14554         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14555         IF FOUND THEN
14556             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14557             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14558             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14559             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14560         END IF;
14561     END IF;
14562
14563     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14564         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14565         RETURN FALSE;
14566     END IF;
14567
14568     IF dyn_profile.replace_rule <> '' THEN
14569         source_marc = v_marc;
14570         target_marc = eg_marc;
14571         replace_rule = dyn_profile.replace_rule;
14572     ELSE
14573         source_marc = eg_marc;
14574         target_marc = v_marc;
14575         replace_rule = dyn_profile.preserve_rule;
14576     END IF;
14577
14578     UPDATE  authority.record_entry
14579       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14580       WHERE id = eg_id;
14581
14582     IF FOUND THEN
14583         UPDATE  vandelay.queued_authority_record
14584           SET   imported_as = eg_id,
14585                 import_time = NOW()
14586           WHERE id = import_id;
14587         RETURN TRUE;
14588     END IF;
14589
14590     -- RAISE NOTICE 'update of authority.record_entry failed';
14591
14592     RETURN FALSE;
14593
14594 END;
14595 $$ LANGUAGE PLPGSQL;
14596
14597 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14598 DECLARE
14599     eg_id           BIGINT;
14600     match_count     INT;
14601 BEGIN
14602     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14603
14604     IF match_count <> 1 THEN
14605         -- RAISE NOTICE 'not an exact match';
14606         RETURN FALSE;
14607     END IF;
14608
14609     SELECT  m.eg_record INTO eg_id
14610       FROM  vandelay.authority_match m
14611       WHERE m.queued_record = import_id
14612       LIMIT 1;
14613
14614     IF eg_id IS NULL THEN
14615         RETURN FALSE;
14616     END IF;
14617
14618     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14619 END;
14620 $$ LANGUAGE PLPGSQL;
14621
14622 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14623 DECLARE
14624     queued_record   vandelay.queued_authority_record%ROWTYPE;
14625 BEGIN
14626
14627     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14628
14629         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14630             RETURN NEXT queued_record.id;
14631         END IF;
14632
14633     END LOOP;
14634
14635     RETURN;
14636
14637 END;
14638 $$ LANGUAGE PLPGSQL;
14639
14640 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14641     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14642 $$ LANGUAGE SQL;
14643
14644 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14645 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14646 DECLARE
14647     eg_tcn          TEXT;
14648     eg_tcn_source   TEXT;
14649     output          vandelay.tcn_data%ROWTYPE;
14650 BEGIN
14651
14652     -- 001/003
14653     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14654     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14655
14656         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14657         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14658             eg_tcn_source := 'System Local';
14659         END IF;
14660
14661         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14662
14663         IF NOT FOUND THEN
14664             output.used := FALSE;
14665         ELSE
14666             output.used := TRUE;
14667         END IF;
14668
14669         output.tcn := eg_tcn;
14670         output.tcn_source := eg_tcn_source;
14671         RETURN NEXT output;
14672
14673     END IF;
14674
14675     -- 901 ab
14676     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14677     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14678
14679         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14680         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14681             eg_tcn_source := 'System Local';
14682         END IF;
14683
14684         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14685
14686         IF NOT FOUND THEN
14687             output.used := FALSE;
14688         ELSE
14689             output.used := TRUE;
14690         END IF;
14691
14692         output.tcn := eg_tcn;
14693         output.tcn_source := eg_tcn_source;
14694         RETURN NEXT output;
14695
14696     END IF;
14697
14698     -- 039 ab
14699     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14700     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14701
14702         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14703         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14704             eg_tcn_source := 'System Local';
14705         END IF;
14706
14707         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14708
14709         IF NOT FOUND THEN
14710             output.used := FALSE;
14711         ELSE
14712             output.used := TRUE;
14713         END IF;
14714
14715         output.tcn := eg_tcn;
14716         output.tcn_source := eg_tcn_source;
14717         RETURN NEXT output;
14718
14719     END IF;
14720
14721     -- 020 a
14722     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14723     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14724
14725         eg_tcn_source := 'ISBN';
14726
14727         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14728
14729         IF NOT FOUND THEN
14730             output.used := FALSE;
14731         ELSE
14732             output.used := TRUE;
14733         END IF;
14734
14735         output.tcn := eg_tcn;
14736         output.tcn_source := eg_tcn_source;
14737         RETURN NEXT output;
14738
14739     END IF;
14740
14741     -- 022 a
14742     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14743     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14744
14745         eg_tcn_source := 'ISSN';
14746
14747         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14748
14749         IF NOT FOUND THEN
14750             output.used := FALSE;
14751         ELSE
14752             output.used := TRUE;
14753         END IF;
14754
14755         output.tcn := eg_tcn;
14756         output.tcn_source := eg_tcn_source;
14757         RETURN NEXT output;
14758
14759     END IF;
14760
14761     -- 010 a
14762     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14763     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14764
14765         eg_tcn_source := 'LCCN';
14766
14767         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14768
14769         IF NOT FOUND THEN
14770             output.used := FALSE;
14771         ELSE
14772             output.used := TRUE;
14773         END IF;
14774
14775         output.tcn := eg_tcn;
14776         output.tcn_source := eg_tcn_source;
14777         RETURN NEXT output;
14778
14779     END IF;
14780
14781     -- 035 a
14782     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14783     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14784
14785         eg_tcn_source := 'System Legacy';
14786
14787         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14788
14789         IF NOT FOUND THEN
14790             output.used := FALSE;
14791         ELSE
14792             output.used := TRUE;
14793         END IF;
14794
14795         output.tcn := eg_tcn;
14796         output.tcn_source := eg_tcn_source;
14797         RETURN NEXT output;
14798
14799     END IF;
14800
14801     RETURN;
14802 END;
14803 $_$ LANGUAGE PLPGSQL;
14804
14805 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14806
14807 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);
14808
14809 -- remove invalid data ... there was no fkey before, boo
14810 DELETE FROM metabib.series_field_entry WHERE source NOT IN (SELECT id FROM biblio.record_entry);
14811 DELETE FROM metabib.series_field_entry WHERE field NOT IN (SELECT id FROM config.metabib_field);
14812
14813 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14814 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14815 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14816 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14817 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14818
14819 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14820 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14821 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14822 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14823
14824 ALTER TABLE metabib.series_field_entry
14825         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14826                 REFERENCES biblio.record_entry (id)
14827                 ON DELETE CASCADE
14828                 DEFERRABLE INITIALLY DEFERRED;
14829
14830 ALTER TABLE metabib.series_field_entry
14831         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14832                 REFERENCES config.metabib_field (id)
14833                 ON DELETE CASCADE
14834                 DEFERRABLE INITIALLY DEFERRED;
14835
14836 CREATE TABLE acq.claim_policy_action (
14837         id              SERIAL       PRIMARY KEY,
14838         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14839                                  ON DELETE CASCADE
14840                                      DEFERRABLE INITIALLY DEFERRED,
14841         action_interval INTERVAL     NOT NULL,
14842         action          INT          NOT NULL REFERENCES acq.claim_event_type
14843                                      DEFERRABLE INITIALLY DEFERRED,
14844         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14845 );
14846
14847 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14848 DECLARE
14849     value       TEXT; 
14850     atype       TEXT; 
14851     prov        INT;
14852     pos         INT;
14853     adef        RECORD;
14854     xpath_string    TEXT;
14855 BEGIN
14856     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14857     
14858         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14859       
14860         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14861             IF (atype = 'lineitem_provider_attr_definition') THEN
14862                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14863                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14864             END IF;
14865             
14866             IF (atype = 'lineitem_provider_attr_definition') THEN
14867                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14868             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14869                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14870             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14871                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14872             END IF;
14873       
14874             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14875
14876             IF (adef.code = 'title' OR adef.code = 'author') THEN
14877                 -- title and author should not be split
14878                 -- FIXME: once oils_xpath can grok XPATH 2.0 functions, we can use
14879                 -- string-join in the xpath and remove this special case
14880                 SELECT extract_acq_marc_field(id, xpath_string, adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14881                 IF (value IS NOT NULL AND value <> '') THEN
14882                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14883                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14884                 END IF;
14885             ELSE
14886                 pos := 1;
14887
14888                 LOOP
14889                     SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14890       
14891                     IF (value IS NOT NULL AND value <> '') THEN
14892                         INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14893                             VALUES (NEW.id, adef.id, atype, adef.code, value);
14894                     ELSE
14895                         EXIT;
14896                     END IF;
14897
14898                     pos := pos + 1;
14899                 END LOOP;
14900             END IF;
14901
14902         END IF;
14903
14904     END LOOP;
14905
14906     RETURN NULL;
14907 END;
14908 $function$ LANGUAGE PLPGSQL;
14909
14910 UPDATE config.metabib_field SET label = name;
14911 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14912
14913 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_field_class_fkey
14914          FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14915
14916 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14917
14918 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14919
14920 CREATE TABLE config.metabib_search_alias (
14921     alias       TEXT    PRIMARY KEY,
14922     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14923     field       INT     REFERENCES config.metabib_field (id)
14924 );
14925
14926 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14927 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14928 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14929 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14930 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14931 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14932 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14933 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14934
14935 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14936 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14937 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14938 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14939 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14940 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14941 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14942 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14943 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14944 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14945 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14946 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14947 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14948
14949 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14950 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14951 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14952 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14953 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14954 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14955 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14956 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14957
14958 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14959 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14960 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14961 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14962 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14963
14964 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14965 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14966 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14967
14968 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14969 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;
14970 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;
14971 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;
14972 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;
14973
14974 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14975 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14976 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14977 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14978
14979 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14980 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14981 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14982 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14983 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14984 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14985 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14986 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14987 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14988 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14989 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14990 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14991 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14992 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14993
14994 CREATE TABLE asset.opac_visible_copies (
14995   id        BIGINT primary key, -- copy id
14996   record    BIGINT,
14997   circ_lib  INTEGER
14998 );
14999 COMMENT ON TABLE asset.opac_visible_copies IS $$
15000 Materialized view of copies that are visible in the OPAC, used by
15001 search.query_parser_fts() to speed up OPAC visibility checks on large
15002 databases.  Contents are maintained by a set of triggers.
15003 $$;
15004 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
15005
15006 CREATE OR REPLACE FUNCTION search.query_parser_fts (
15007
15008     param_search_ou INT,
15009     param_depth     INT,
15010     param_query     TEXT,
15011     param_statuses  INT[],
15012     param_locations INT[],
15013     param_offset    INT,
15014     param_check     INT,
15015     param_limit     INT,
15016     metarecord      BOOL,
15017     staff           BOOL
15018  
15019 ) RETURNS SETOF search.search_result AS $func$
15020 DECLARE
15021
15022     current_res         search.search_result%ROWTYPE;
15023     search_org_list     INT[];
15024
15025     check_limit         INT;
15026     core_limit          INT;
15027     core_offset         INT;
15028     tmp_int             INT;
15029
15030     core_result         RECORD;
15031     core_cursor         REFCURSOR;
15032     core_rel_query      TEXT;
15033
15034     total_count         INT := 0;
15035     check_count         INT := 0;
15036     deleted_count       INT := 0;
15037     visible_count       INT := 0;
15038     excluded_count      INT := 0;
15039
15040 BEGIN
15041
15042     check_limit := COALESCE( param_check, 1000 );
15043     core_limit  := COALESCE( param_limit, 25000 );
15044     core_offset := COALESCE( param_offset, 0 );
15045
15046     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
15047
15048     IF param_search_ou > 0 THEN
15049         IF param_depth IS NOT NULL THEN
15050             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
15051         ELSE
15052             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
15053         END IF;
15054     ELSIF param_search_ou < 0 THEN
15055         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
15056     ELSIF param_search_ou = 0 THEN
15057         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
15058     END IF;
15059
15060     OPEN core_cursor FOR EXECUTE param_query;
15061
15062     LOOP
15063
15064         FETCH core_cursor INTO core_result;
15065         EXIT WHEN NOT FOUND;
15066         EXIT WHEN total_count >= core_limit;
15067
15068         total_count := total_count + 1;
15069
15070         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
15071
15072         check_count := check_count + 1;
15073
15074         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15075         IF NOT FOUND THEN
15076             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
15077             deleted_count := deleted_count + 1;
15078             CONTINUE;
15079         END IF;
15080
15081         PERFORM 1
15082           FROM  biblio.record_entry b
15083                 JOIN config.bib_source s ON (b.source = s.id)
15084           WHERE s.transcendant
15085                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
15086
15087         IF FOUND THEN
15088             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
15089             visible_count := visible_count + 1;
15090
15091             current_res.id = core_result.id;
15092             current_res.rel = core_result.rel;
15093
15094             tmp_int := 1;
15095             IF metarecord THEN
15096                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15097             END IF;
15098
15099             IF tmp_int = 1 THEN
15100                 current_res.record = core_result.records[1];
15101             ELSE
15102                 current_res.record = NULL;
15103             END IF;
15104
15105             RETURN NEXT current_res;
15106
15107             CONTINUE;
15108         END IF;
15109
15110         PERFORM 1
15111           FROM  asset.call_number cn
15112                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
15113                 JOIN asset.uri uri ON (map.uri = uri.id)
15114           WHERE NOT cn.deleted
15115                 AND cn.label = '##URI##'
15116                 AND uri.active
15117                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
15118                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15119                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15120           LIMIT 1;
15121
15122         IF FOUND THEN
15123             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
15124             visible_count := visible_count + 1;
15125
15126             current_res.id = core_result.id;
15127             current_res.rel = core_result.rel;
15128
15129             tmp_int := 1;
15130             IF metarecord THEN
15131                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15132             END IF;
15133
15134             IF tmp_int = 1 THEN
15135                 current_res.record = core_result.records[1];
15136             ELSE
15137                 current_res.record = NULL;
15138             END IF;
15139
15140             RETURN NEXT current_res;
15141
15142             CONTINUE;
15143         END IF;
15144
15145         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
15146
15147             PERFORM 1
15148               FROM  asset.call_number cn
15149                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15150               WHERE NOT cn.deleted
15151                     AND NOT cp.deleted
15152                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
15153                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15154                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15155               LIMIT 1;
15156
15157             IF NOT FOUND THEN
15158                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
15159                 excluded_count := excluded_count + 1;
15160                 CONTINUE;
15161             END IF;
15162
15163         END IF;
15164
15165         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
15166
15167             PERFORM 1
15168               FROM  asset.call_number cn
15169                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15170               WHERE NOT cn.deleted
15171                     AND NOT cp.deleted
15172                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
15173                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15174                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15175               LIMIT 1;
15176
15177             IF NOT FOUND THEN
15178                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
15179                 excluded_count := excluded_count + 1;
15180                 CONTINUE;
15181             END IF;
15182
15183         END IF;
15184
15185         IF staff IS NULL OR NOT staff THEN
15186
15187             PERFORM 1
15188               FROM  asset.opac_visible_copies
15189               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15190                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15191               LIMIT 1;
15192
15193             IF NOT FOUND THEN
15194                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15195                 excluded_count := excluded_count + 1;
15196                 CONTINUE;
15197             END IF;
15198
15199         ELSE
15200
15201             PERFORM 1
15202               FROM  asset.call_number cn
15203                     JOIN asset.copy cp ON (cp.call_number = cn.id)
15204                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
15205               WHERE NOT cn.deleted
15206                     AND NOT cp.deleted
15207                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
15208                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15209               LIMIT 1;
15210
15211             IF NOT FOUND THEN
15212
15213                 PERFORM 1
15214                   FROM  asset.call_number cn
15215                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
15216                   LIMIT 1;
15217
15218                 IF FOUND THEN
15219                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15220                     excluded_count := excluded_count + 1;
15221                     CONTINUE;
15222                 END IF;
15223
15224             END IF;
15225
15226         END IF;
15227
15228         visible_count := visible_count + 1;
15229
15230         current_res.id = core_result.id;
15231         current_res.rel = core_result.rel;
15232
15233         tmp_int := 1;
15234         IF metarecord THEN
15235             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15236         END IF;
15237
15238         IF tmp_int = 1 THEN
15239             current_res.record = core_result.records[1];
15240         ELSE
15241             current_res.record = NULL;
15242         END IF;
15243
15244         RETURN NEXT current_res;
15245
15246         IF visible_count % 1000 = 0 THEN
15247             -- RAISE NOTICE ' % visible so far ... ', visible_count;
15248         END IF;
15249
15250     END LOOP;
15251
15252     current_res.id = NULL;
15253     current_res.rel = NULL;
15254     current_res.record = NULL;
15255     current_res.total = total_count;
15256     current_res.checked = check_count;
15257     current_res.deleted = deleted_count;
15258     current_res.visible = visible_count;
15259     current_res.excluded = excluded_count;
15260
15261     CLOSE core_cursor;
15262
15263     RETURN NEXT current_res;
15264
15265 END;
15266 $func$ LANGUAGE PLPGSQL;
15267
15268 ALTER TABLE biblio.record_entry ADD COLUMN owner INT;
15269 ALTER TABLE biblio.record_entry
15270          ADD CONSTRAINT biblio_record_entry_owner_fkey FOREIGN KEY (owner)
15271          REFERENCES actor.org_unit (id)
15272          DEFERRABLE INITIALLY DEFERRED;
15273
15274 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
15275
15276 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
15277 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
15278
15279 DROP VIEW auditor.biblio_record_entry_lifecycle;
15280
15281 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
15282
15283 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
15284         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
15285 $$ LANGUAGE SQL STRICT IMMUTABLE;
15286
15287 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
15288     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
15289 $$ LANGUAGE SQL STRICT IMMUTABLE;
15290
15291 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
15292     return lc(shift);
15293 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15294
15295 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
15296     return uc(shift);
15297 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15298
15299 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
15300     use Unicode::Normalize;
15301
15302     my $x = NFD(shift);
15303     $x =~ s/\pM+//go;
15304     return $x;
15305
15306 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15307
15308 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
15309     use Unicode::Normalize;
15310
15311     my $x = NFC(shift);
15312     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
15313     return $x;
15314
15315 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15316
15317 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
15318 DECLARE
15319     setting RECORD;
15320     cur_org INT;
15321 BEGIN
15322     cur_org := org_id;
15323     LOOP
15324         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
15325         IF FOUND THEN
15326             RETURN NEXT setting;
15327         END IF;
15328         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
15329         EXIT WHEN cur_org IS NULL;
15330     END LOOP;
15331     RETURN;
15332 END;
15333 $$ LANGUAGE plpgsql STABLE;
15334
15335 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
15336 DECLARE
15337     counter INT;
15338     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
15339 BEGIN
15340
15341     SELECT  COUNT(*) INTO counter
15342       FROM  oils_xpath_table(
15343                 'id',
15344                 'marc',
15345                 'acq.lineitem',
15346                 '//*[@tag="' || tag || '"]',
15347                 'id=' || lineitem
15348             ) as t(i int,c text);
15349
15350     FOR i IN 1 .. counter LOOP
15351         FOR lida IN
15352             SELECT  *
15353               FROM  (   SELECT  id,i,t,v
15354                           FROM  oils_xpath_table(
15355                                     'id',
15356                                     'marc',
15357                                     'acq.lineitem',
15358                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
15359                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
15360                                     'id=' || lineitem
15361                                 ) as t(id int,t text,v text)
15362                     )x
15363         LOOP
15364             RETURN NEXT lida;
15365         END LOOP;
15366     END LOOP;
15367
15368     RETURN;
15369 END;
15370 $$ LANGUAGE PLPGSQL;
15371
15372 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
15373 DECLARE
15374     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
15375     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
15376     result      config.i18n_core%ROWTYPE;
15377     fallback    TEXT;
15378     keyfield    TEXT := keyclass || '.' || keycol;
15379 BEGIN
15380
15381     -- Try the full locale
15382     SELECT  * INTO result
15383       FROM  config.i18n_core
15384       WHERE fq_field = keyfield
15385             AND identity_value = keyvalue
15386             AND translation = locale;
15387
15388     -- Try just the language
15389     IF NOT FOUND THEN
15390         SELECT  * INTO result
15391           FROM  config.i18n_core
15392           WHERE fq_field = keyfield
15393                 AND identity_value = keyvalue
15394                 AND translation = language;
15395     END IF;
15396
15397     -- Fall back to the string we passed in in the first place
15398     IF NOT FOUND THEN
15399     EXECUTE
15400             'SELECT ' ||
15401                 keycol ||
15402             ' FROM ' || keytable ||
15403             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
15404                 INTO fallback;
15405         RETURN fallback;
15406     END IF;
15407
15408     RETURN result.string;
15409 END;
15410 $func$ LANGUAGE PLPGSQL STABLE;
15411
15412 SELECT auditor.create_auditor ( 'acq', 'invoice' );
15413
15414 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
15415
15416 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
15417
15418 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
15419     3, 1, 'delivered_but_lost',
15420     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
15421
15422 CREATE TABLE config.global_flag (
15423     label   TEXT    NOT NULL
15424 ) INHERITS (config.internal_flag);
15425 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
15426
15427 INSERT INTO config.global_flag (name, label, enabled)
15428     VALUES (
15429         'cat.bib.use_id_for_tcn',
15430         oils_i18n_gettext(
15431             'cat.bib.use_id_for_tcn',
15432             'Cat: Use Internal ID for TCN Value',
15433             'cgf', 
15434             'label'
15435         ),
15436         TRUE
15437     );
15438
15439 -- resolves performance issue noted by EG Indiana
15440
15441 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
15442
15443 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
15444
15445 -- 1.6 included stock indexes from 1 through 15, but didn't increase the
15446 -- sequence value to leave room for additional stock indexes in subsequent
15447 -- releases (hello!), so custom added indexes will conflict with these.
15448
15449 -- The following function changes the ID of an existing custom index
15450 -- (and any references to that index) to the target ID; if no target ID
15451 -- is supplied, then it adds 100 to the source ID. So this could break if a site
15452 -- has custom indexes at both 16 and 116, for example - but if that's the
15453 -- case anywhere, I'm throwing my hands up in surrender:
15454
15455 CREATE OR REPLACE FUNCTION config.modify_metabib_field(source INT, target INT) RETURNS INT AS $func$
15456 DECLARE
15457     f_class TEXT;
15458     check_id INT;
15459     target_id INT;
15460 BEGIN
15461     SELECT field_class INTO f_class FROM config.metabib_field WHERE id = source;
15462     IF NOT FOUND THEN
15463         RETURN 0;
15464     END IF;
15465     IF target IS NULL THEN
15466         target_id = source + 100;
15467     ELSE
15468         target_id = target;
15469     END IF;
15470     SELECT id FROM config.metabib_field INTO check_id WHERE id = target_id;
15471     IF FOUND THEN
15472         RAISE NOTICE 'Cannot bump config.metabib_field.id from % to %; the target ID already exists.', source, target_id;
15473         RETURN 0;
15474     END IF;
15475     UPDATE config.metabib_field SET id = target_id WHERE id = source;
15476     EXECUTE ' UPDATE metabib.' || f_class || '_field_entry SET field = ' || target_id || ' WHERE field = ' || source;
15477     UPDATE config.metabib_field_index_norm_map SET field = target_id WHERE field = source;
15478     UPDATE search.relevance_adjustment SET field = target_id WHERE field = source;
15479     RETURN 1;
15480 END;
15481 $func$ LANGUAGE PLPGSQL;
15482
15483 -- To avoid sequential scans against the large metabib.*_field_entry tables
15484 CREATE INDEX metabib_author_field_entry_field ON metabib.author_field_entry(field);
15485 CREATE INDEX metabib_keyword_field_entry_field ON metabib.keyword_field_entry(field);
15486 CREATE INDEX metabib_series_field_entry_field ON metabib.series_field_entry(field);
15487 CREATE INDEX metabib_subject_field_entry_field ON metabib.subject_field_entry(field);
15488 CREATE INDEX metabib_title_field_entry_field ON metabib.title_field_entry(field);
15489
15490 -- Now update those custom indexes
15491 SELECT config.modify_metabib_field(id, NULL)
15492     FROM config.metabib_field
15493     WHERE id > 15 AND id < 100 AND field_class || name <> 'subjectcomplete';
15494
15495 -- Ensure "subject|complete" is id = 16, if it exists
15496 SELECT config.modify_metabib_field(id, 16)
15497     FROM config.metabib_field
15498     WHERE id <> 16 AND field_class || name = 'subjectcomplete';
15499
15500 -- And bump the config.metabib_field sequence to a minimum of 100 to avoid problems in the future
15501 SELECT setval('config.metabib_field_id_seq', GREATEST(100, (SELECT MAX(id) + 1 FROM config.metabib_field)));
15502
15503 -- And drop the temporary indexes that we just created
15504 DROP INDEX metabib.metabib_author_field_entry_field;
15505 DROP INDEX metabib.metabib_keyword_field_entry_field;
15506 DROP INDEX metabib.metabib_series_field_entry_field;
15507 DROP INDEX metabib.metabib_subject_field_entry_field;
15508 DROP INDEX metabib.metabib_title_field_entry_field;
15509
15510 -- Now we can go ahead and insert the additional stock indexes
15511
15512 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath )
15513     SELECT  16, 'subject', 'complete', oils_i18n_gettext(16, 'All Subjects', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject//text()$$
15514       WHERE NOT EXISTS (select id from config.metabib_field where field_class = 'subject' and name = 'complete'); -- in case it's already there
15515
15516 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15517     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
15518 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15519     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15520 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15521     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/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     (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 );
15524 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15525     (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 );
15526 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15527     (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 );
15528 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15529     (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 );
15530 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15531     (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 );
15532 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15533     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
15534
15535 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15536  
15537
15538 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
15539
15540 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
15541 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
15542 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
15543 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
15544 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
15545 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
15546 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
15547
15548 CREATE TABLE metabib.identifier_field_entry (
15549         id              BIGSERIAL       PRIMARY KEY,
15550         source          BIGINT          NOT NULL,
15551         field           INT             NOT NULL,
15552         value           TEXT            NOT NULL,
15553         index_vector    tsvector        NOT NULL
15554 );
15555 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15556         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
15557         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
15558
15559 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
15560 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
15561     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
15562 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
15563
15564 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
15565     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15566 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
15567     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15568
15569 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
15570     use Business::ISBN;
15571     use strict;
15572     use warnings;
15573
15574     # For each ISBN found in a single string containing a set of ISBNs:
15575     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
15576     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
15577
15578     my $input = shift;
15579     my $output = '';
15580
15581     foreach my $word (split(/\s/, $input)) {
15582         my $isbn = Business::ISBN->new($word);
15583
15584         # First check the checksum; if it is not valid, fix it and add the original
15585         # bad-checksum ISBN to the output
15586         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
15587             $output .= $isbn->isbn() . " ";
15588             $isbn->fix_checksum();
15589         }
15590
15591         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
15592         # and add the normalized original ISBN to the output
15593         if ($isbn && $isbn->is_valid()) {
15594             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
15595             $output .= $isbn->isbn . " ";
15596
15597             # If we successfully converted the ISBN to its counterpart, add the
15598             # converted ISBN to the output as well
15599             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15600         }
15601     }
15602     return $output if $output;
15603
15604     # If there were no valid ISBNs, just return the raw input
15605     return $input;
15606 $func$ LANGUAGE PLPERLU;
15607
15608 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15609 /*
15610  * Copyright (C) 2010 Merrimack Valley Library Consortium
15611  * Jason Stephenson <jstephenson@mvlc.org>
15612  * Copyright (C) 2010 Laurentian University
15613  * Dan Scott <dscott@laurentian.ca>
15614  *
15615  * The translate_isbn1013 function takes an input ISBN and returns the
15616  * following in a single space-delimited string if the input ISBN is valid:
15617  *   - The normalized input ISBN (hyphens stripped)
15618  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15619  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15620  */
15621 $$;
15622
15623 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15624 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15625 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15626 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15627 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15628 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15629
15630 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15631         'ISBN 10/13 conversion',
15632         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15633         'translate_isbn1013',
15634         0
15635 );
15636
15637 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15638         'Replace',
15639         'Replace all occurences of first parameter in the string with the second parameter.',
15640         'replace',
15641         2
15642 );
15643
15644 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15645     SELECT  m.id, i.id, 1
15646       FROM  config.metabib_field m,
15647             config.index_normalizer i
15648       WHERE i.func IN ('first_word')
15649             AND m.id IN (18);
15650
15651 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15652     SELECT  m.id, i.id, 2
15653       FROM  config.metabib_field m,
15654             config.index_normalizer i
15655       WHERE i.func IN ('translate_isbn1013')
15656             AND m.id IN (18);
15657
15658 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15659     SELECT  m.id, i.id, $$['-','']$$
15660       FROM  config.metabib_field m,
15661             config.index_normalizer i
15662       WHERE i.func IN ('replace')
15663             AND m.id IN (19);
15664
15665 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15666     SELECT  m.id, i.id, $$[' ','']$$
15667       FROM  config.metabib_field m,
15668             config.index_normalizer i
15669       WHERE i.func IN ('replace')
15670             AND m.id IN (19);
15671
15672 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15673
15674 UPDATE  config.metabib_field_index_norm_map
15675   SET   params = REPLACE(params,E'\'','"')
15676   WHERE params IS NOT NULL AND params <> '';
15677
15678 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15679
15680 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15681
15682 ALTER TABLE config.circ_modifier
15683         ADD COLUMN avg_wait_time INTERVAL;
15684
15685 --CREATE TABLE actor.usr_password_reset (
15686 --  id SERIAL PRIMARY KEY,
15687 --  uuid TEXT NOT NULL, 
15688 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15689 --  request_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(), 
15690 --  has_been_reset BOOL NOT NULL DEFAULT false
15691 --);
15692 --COMMENT ON TABLE actor.usr_password_reset IS $$
15693 --/*
15694 -- * Copyright (C) 2010 Laurentian University
15695 -- * Dan Scott <dscott@laurentian.ca>
15696 -- *
15697 -- * Self-serve password reset requests
15698 -- *
15699 -- * ****
15700 -- *
15701 -- * This program is free software; you can redistribute it and/or
15702 -- * modify it under the terms of the GNU General Public License
15703 -- * as published by the Free Software Foundation; either version 2
15704 -- * of the License, or (at your option) any later version.
15705 -- *
15706 -- * This program is distributed in the hope that it will be useful,
15707 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15708 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15709 -- * GNU General Public License for more details.
15710 -- */
15711 --$$;
15712 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15713 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15714 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15715 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15716
15717 -- Use the identifier search class tsconfig
15718 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15719 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15720     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15721     FOR EACH ROW
15722     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15723
15724 INSERT INTO config.global_flag (name,label,enabled)
15725     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15726 INSERT INTO config.global_flag (name,label,enabled)
15727     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15728
15729 -- turn a JSON scalar into an SQL TEXT value
15730 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15731     use JSON::XS;                    
15732     my $json = shift();
15733     my $txt;
15734     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15735     return undef if ($@);
15736     return $txt
15737 $f$ LANGUAGE PLPERLU;
15738
15739 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15740 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15741 DECLARE
15742     c               action.circulation%ROWTYPE;
15743     view_age        INTERVAL;
15744     usr_view_age    actor.usr_setting%ROWTYPE;
15745     usr_view_start  actor.usr_setting%ROWTYPE;
15746 BEGIN
15747     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15748     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15749
15750     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15751         -- User opted in and supplied a retention age
15752         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15753             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15754         ELSE
15755             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15756         END IF;
15757     ELSIF usr_view_start.value IS NOT NULL THEN
15758         -- User opted in
15759         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15760     ELSE
15761         -- User did not opt in
15762         RETURN;
15763     END IF;
15764
15765     FOR c IN
15766         SELECT  *
15767           FROM  action.circulation
15768           WHERE usr = usr_id
15769                 AND parent_circ IS NULL
15770                 AND xact_start > NOW() - view_age
15771           ORDER BY xact_start
15772     LOOP
15773         RETURN NEXT c;
15774     END LOOP;
15775
15776     RETURN;
15777 END;
15778 $func$ LANGUAGE PLPGSQL;
15779
15780 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15781 DECLARE
15782     usr_keep_age    actor.usr_setting%ROWTYPE;
15783     usr_keep_start  actor.usr_setting%ROWTYPE;
15784     org_keep_age    INTERVAL;
15785     org_keep_count  INT;
15786
15787     keep_age        INTERVAL;
15788
15789     target_acp      RECORD;
15790     circ_chain_head action.circulation%ROWTYPE;
15791     circ_chain_tail action.circulation%ROWTYPE;
15792
15793     purge_position  INT;
15794     count_purged    INT;
15795 BEGIN
15796
15797     count_purged := 0;
15798
15799     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15800
15801     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15802     IF org_keep_count IS NULL THEN
15803         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15804     END IF;
15805
15806     -- First, find copies with more than keep_count non-renewal circs
15807     FOR target_acp IN
15808         SELECT  target_copy,
15809                 COUNT(*) AS total_real_circs
15810           FROM  action.circulation
15811           WHERE parent_circ IS NULL
15812                 AND xact_finish IS NOT NULL
15813           GROUP BY target_copy
15814           HAVING COUNT(*) > org_keep_count
15815     LOOP
15816         purge_position := 0;
15817         -- And, for those, select circs that are finished and older than keep_age
15818         FOR circ_chain_head IN
15819             SELECT  *
15820               FROM  action.circulation
15821               WHERE target_copy = target_acp.target_copy
15822                     AND parent_circ IS NULL
15823               ORDER BY xact_start
15824         LOOP
15825
15826             -- Stop once we've purged enough circs to hit org_keep_count
15827             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15828
15829             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15830             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15831
15832             -- Now get the user settings, if any, to block purging if the user wants to keep more circs
15833             usr_keep_age.value := NULL;
15834             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15835
15836             usr_keep_start.value := NULL;
15837             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start';
15838
15839             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15840                 IF oils_json_to_text(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ) THEN
15841                     keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15842                 ELSE
15843                     keep_age := oils_json_to_text(usr_keep_age.value)::INTERVAL;
15844                 END IF;
15845             ELSIF usr_keep_start.value IS NOT NULL THEN
15846                 keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15847             ELSE
15848                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTERVAL );
15849             END IF;
15850
15851             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15852
15853             -- We've passed the purging tests, purge the circ chain starting at the end
15854             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15855             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15856                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15857                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15858             END LOOP;
15859
15860             count_purged := count_purged + 1;
15861             purge_position := purge_position + 1;
15862
15863         END LOOP;
15864     END LOOP;
15865 END;
15866 $func$ LANGUAGE PLPGSQL;
15867
15868 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15869 DECLARE
15870     h               action.hold_request%ROWTYPE;
15871     view_age        INTERVAL;
15872     view_count      INT;
15873     usr_view_count  actor.usr_setting%ROWTYPE;
15874     usr_view_age    actor.usr_setting%ROWTYPE;
15875     usr_view_start  actor.usr_setting%ROWTYPE;
15876 BEGIN
15877     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15878     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15879     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15880
15881     FOR h IN
15882         SELECT  *
15883           FROM  action.hold_request
15884           WHERE usr = usr_id
15885                 AND fulfillment_time IS NULL
15886                 AND cancel_time IS NULL
15887           ORDER BY request_time DESC
15888     LOOP
15889         RETURN NEXT h;
15890     END LOOP;
15891
15892     IF usr_view_start.value IS NULL THEN
15893         RETURN;
15894     END IF;
15895
15896     IF usr_view_age.value IS NOT NULL THEN
15897         -- User opted in and supplied a retention age
15898         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15899             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15900         ELSE
15901             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15902         END IF;
15903     ELSE
15904         -- User opted in
15905         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15906     END IF;
15907
15908     IF usr_view_count.value IS NOT NULL THEN
15909         view_count := oils_json_to_text(usr_view_count.value)::INT;
15910     ELSE
15911         view_count := 1000;
15912     END IF;
15913
15914     -- show some fulfilled/canceled holds
15915     FOR h IN
15916         SELECT  *
15917           FROM  action.hold_request
15918           WHERE usr = usr_id
15919                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15920                 AND request_time > NOW() - view_age
15921           ORDER BY request_time DESC
15922           LIMIT view_count
15923     LOOP
15924         RETURN NEXT h;
15925     END LOOP;
15926
15927     RETURN;
15928 END;
15929 $func$ LANGUAGE PLPGSQL;
15930
15931 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15932
15933 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15934
15935 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15936
15937 DROP TABLE IF EXISTS serial.issuance CASCADE;
15938
15939 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15940
15941 DROP TABLE IF EXISTS serial.subscription CASCADE;
15942
15943 CREATE TABLE asset.copy_template (
15944         id             SERIAL   PRIMARY KEY,
15945         owning_lib     INT      NOT NULL
15946                                 REFERENCES actor.org_unit (id)
15947                                 DEFERRABLE INITIALLY DEFERRED,
15948         creator        BIGINT   NOT NULL
15949                                 REFERENCES actor.usr (id)
15950                                 DEFERRABLE INITIALLY DEFERRED,
15951         editor         BIGINT   NOT NULL
15952                                 REFERENCES actor.usr (id)
15953                                 DEFERRABLE INITIALLY DEFERRED,
15954         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15955         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15956         name           TEXT     NOT NULL,
15957         -- columns above this point are attributes of the template itself
15958         -- columns after this point are attributes of the copy this template modifies/creates
15959         circ_lib       INT      REFERENCES actor.org_unit (id)
15960                                 DEFERRABLE INITIALLY DEFERRED,
15961         status         INT      REFERENCES config.copy_status (id)
15962                                 DEFERRABLE INITIALLY DEFERRED,
15963         location       INT      REFERENCES asset.copy_location (id)
15964                                 DEFERRABLE INITIALLY DEFERRED,
15965         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15966                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15967         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15968                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15969         age_protect    INT,
15970         circulate      BOOL,
15971         deposit        BOOL,
15972         ref            BOOL,
15973         holdable       BOOL,
15974         deposit_amount NUMERIC(6,2),
15975         price          NUMERIC(8,2),
15976         circ_modifier  TEXT,
15977         circ_as_type   TEXT,
15978         alert_message  TEXT,
15979         opac_visible   BOOL,
15980         floating       BOOL,
15981         mint_condition BOOL
15982 );
15983
15984 CREATE TABLE serial.subscription (
15985         id                     SERIAL       PRIMARY KEY,
15986         owning_lib             INT          NOT NULL DEFAULT 1
15987                                             REFERENCES actor.org_unit (id)
15988                                             ON DELETE SET NULL
15989                                             DEFERRABLE INITIALLY DEFERRED,
15990         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15991         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15992         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15993                                             ON DELETE SET NULL
15994                                             DEFERRABLE INITIALLY DEFERRED,
15995         expected_date_offset   INTERVAL
15996         -- acquisitions/business-side tables link to here
15997 );
15998 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
15999 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
16000
16001 --at least one distribution per org_unit holding issues
16002 CREATE TABLE serial.distribution (
16003         id                    SERIAL  PRIMARY KEY,
16004         record_entry          BIGINT  REFERENCES serial.record_entry (id)
16005                                       ON DELETE SET NULL
16006                                       DEFERRABLE INITIALLY DEFERRED,
16007         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
16008                                           summary_method IS NULL
16009                                           OR summary_method IN ( 'add_to_sre',
16010                                           'merge_with_sre', 'use_sre_only',
16011                                           'use_sdist_only')),
16012         subscription          INT     NOT NULL
16013                                       REFERENCES serial.subscription (id)
16014                                                                   ON DELETE CASCADE
16015                                                                   DEFERRABLE INITIALLY DEFERRED,
16016         holding_lib           INT     NOT NULL
16017                                       REFERENCES actor.org_unit (id)
16018                                                                   DEFERRABLE INITIALLY DEFERRED,
16019         label                 TEXT    NOT NULL,
16020         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
16021                                       DEFERRABLE INITIALLY DEFERRED,
16022         receive_unit_template INT     REFERENCES asset.copy_template (id)
16023                                       DEFERRABLE INITIALLY DEFERRED,
16024         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
16025                                       DEFERRABLE INITIALLY DEFERRED,
16026         bind_unit_template    INT     REFERENCES asset.copy_template (id)
16027                                       DEFERRABLE INITIALLY DEFERRED,
16028         unit_label_prefix     TEXT,
16029         unit_label_suffix     TEXT
16030 );
16031 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
16032 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
16033
16034 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
16035
16036 CREATE TABLE serial.stream (
16037         id              SERIAL  PRIMARY KEY,
16038         distribution    INT     NOT NULL
16039                                 REFERENCES serial.distribution (id)
16040                                 ON DELETE CASCADE
16041                                 DEFERRABLE INITIALLY DEFERRED,
16042         routing_label   TEXT
16043 );
16044 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
16045
16046 CREATE UNIQUE INDEX label_once_per_dist
16047         ON serial.stream (distribution, routing_label)
16048         WHERE routing_label IS NOT NULL;
16049
16050 CREATE TABLE serial.routing_list_user (
16051         id             SERIAL       PRIMARY KEY,
16052         stream         INT          NOT NULL
16053                                     REFERENCES serial.stream
16054                                     ON DELETE CASCADE
16055                                     DEFERRABLE INITIALLY DEFERRED,
16056         pos            INT          NOT NULL DEFAULT 1,
16057         reader         INT          REFERENCES actor.usr
16058                                     ON DELETE CASCADE
16059                                     DEFERRABLE INITIALLY DEFERRED,
16060         department     TEXT,
16061         note           TEXT,
16062         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
16063         CONSTRAINT reader_or_dept CHECK
16064         (
16065             -- Recipient is a person or a department, but not both
16066                 (reader IS NOT NULL AND department IS NULL) OR
16067                 (reader IS NULL AND department IS NOT NULL)
16068         )
16069 );
16070 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
16071 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
16072
16073 CREATE TABLE serial.caption_and_pattern (
16074         id           SERIAL       PRIMARY KEY,
16075         subscription INT          NOT NULL REFERENCES serial.subscription (id)
16076                                   ON DELETE CASCADE
16077                                   DEFERRABLE INITIALLY DEFERRED,
16078         type         TEXT         NOT NULL
16079                                   CONSTRAINT cap_type CHECK ( type in
16080                                   ( 'basic', 'supplement', 'index' )),
16081         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
16082         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
16083         end_date     TIMESTAMP WITH TIME ZONE,
16084         active       BOOL         NOT NULL DEFAULT FALSE,
16085         pattern_code TEXT         NOT NULL,       -- must contain JSON
16086         enum_1       TEXT,
16087         enum_2       TEXT,
16088         enum_3       TEXT,
16089         enum_4       TEXT,
16090         enum_5       TEXT,
16091         enum_6       TEXT,
16092         chron_1      TEXT,
16093         chron_2      TEXT,
16094         chron_3      TEXT,
16095         chron_4      TEXT,
16096         chron_5      TEXT
16097 );
16098 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
16099
16100 CREATE TABLE serial.issuance (
16101         id              SERIAL    PRIMARY KEY,
16102         creator         INT       NOT NULL
16103                                   REFERENCES actor.usr (id)
16104                                                           DEFERRABLE INITIALLY DEFERRED,
16105         editor          INT       NOT NULL
16106                                   REFERENCES actor.usr (id)
16107                                   DEFERRABLE INITIALLY DEFERRED,
16108         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16109         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16110         subscription    INT       NOT NULL
16111                                   REFERENCES serial.subscription (id)
16112                                   ON DELETE CASCADE
16113                                   DEFERRABLE INITIALLY DEFERRED,
16114         label           TEXT,
16115         date_published  TIMESTAMP WITH TIME ZONE,
16116         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
16117                               DEFERRABLE INITIALLY DEFERRED,
16118         holding_code    TEXT,
16119         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
16120                                   (
16121                                       holding_type IS NULL
16122                                       OR holding_type IN ('basic','supplement','index')
16123                                   ),
16124         holding_link_id INT
16125         -- TODO: add columns for separate enumeration/chronology values
16126 );
16127 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
16128 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
16129 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
16130
16131 CREATE TABLE serial.unit (
16132         label           TEXT,
16133         label_sort_key  TEXT,
16134         contents        TEXT    NOT NULL
16135 ) INHERITS (asset.copy);
16136 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
16137 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
16138 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
16139 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
16140 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
16141
16142 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
16143
16144 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
16145
16146 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16147
16148 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
16149
16150 CREATE TABLE serial.item (
16151         id              SERIAL  PRIMARY KEY,
16152         creator         INT     NOT NULL
16153                                 REFERENCES actor.usr (id)
16154                                 DEFERRABLE INITIALLY DEFERRED,
16155         editor          INT     NOT NULL
16156                                 REFERENCES actor.usr (id)
16157                                 DEFERRABLE INITIALLY DEFERRED,
16158         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16159         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
16160         issuance        INT     NOT NULL
16161                                 REFERENCES serial.issuance (id)
16162                                 ON DELETE CASCADE
16163                                 DEFERRABLE INITIALLY DEFERRED,
16164         stream          INT     NOT NULL
16165                                 REFERENCES serial.stream (id)
16166                                 ON DELETE CASCADE
16167                                 DEFERRABLE INITIALLY DEFERRED,
16168         unit            INT     REFERENCES serial.unit (id)
16169                                 ON DELETE SET NULL
16170                                 DEFERRABLE INITIALLY DEFERRED,
16171         uri             INT     REFERENCES asset.uri (id)
16172                                 ON DELETE SET NULL
16173                                 DEFERRABLE INITIALLY DEFERRED,
16174         date_expected   TIMESTAMP WITH TIME ZONE,
16175         date_received   TIMESTAMP WITH TIME ZONE,
16176         status          TEXT    CONSTRAINT valid_status CHECK (
16177                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
16178                                'Expected', 'Not Held', 'Not Published', 'Received'))
16179                             DEFAULT 'Expected',
16180         shadowed        BOOL    NOT NULL DEFAULT FALSE
16181 );
16182 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
16183 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
16184 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
16185 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
16186 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
16187 CREATE INDEX serial_item_status_idx ON serial.item (status);
16188
16189 CREATE TABLE serial.item_note (
16190         id          SERIAL  PRIMARY KEY,
16191         item        INT     NOT NULL
16192                             REFERENCES serial.item (id)
16193                             ON DELETE CASCADE
16194                             DEFERRABLE INITIALLY DEFERRED,
16195         creator     INT     NOT NULL
16196                             REFERENCES actor.usr (id)
16197                             DEFERRABLE INITIALLY DEFERRED,
16198         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
16199         pub         BOOL    NOT NULL    DEFAULT FALSE,
16200         title       TEXT    NOT NULL,
16201         value       TEXT    NOT NULL
16202 );
16203 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
16204
16205 CREATE TABLE serial.basic_summary (
16206         id                  SERIAL  PRIMARY KEY,
16207         distribution        INT     NOT NULL
16208                                     REFERENCES serial.distribution (id)
16209                                     ON DELETE CASCADE
16210                                     DEFERRABLE INITIALLY DEFERRED,
16211         generated_coverage  TEXT    NOT NULL,
16212         textual_holdings    TEXT,
16213         show_generated      BOOL    NOT NULL DEFAULT TRUE
16214 );
16215 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
16216
16217 CREATE TABLE serial.supplement_summary (
16218         id                  SERIAL  PRIMARY KEY,
16219         distribution        INT     NOT NULL
16220                                     REFERENCES serial.distribution (id)
16221                                     ON DELETE CASCADE
16222                                     DEFERRABLE INITIALLY DEFERRED,
16223         generated_coverage  TEXT    NOT NULL,
16224         textual_holdings    TEXT,
16225         show_generated      BOOL    NOT NULL DEFAULT TRUE
16226 );
16227 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
16228
16229 CREATE TABLE serial.index_summary (
16230         id                  SERIAL  PRIMARY KEY,
16231         distribution        INT     NOT NULL
16232                                     REFERENCES serial.distribution (id)
16233                                     ON DELETE CASCADE
16234                                     DEFERRABLE INITIALLY DEFERRED,
16235         generated_coverage  TEXT    NOT NULL,
16236         textual_holdings    TEXT,
16237         show_generated      BOOL    NOT NULL DEFAULT TRUE
16238 );
16239 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
16240
16241 -- 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.
16242
16243 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
16244 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16245
16246 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
16247 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;
16248
16249 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
16250 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
16251
16252 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
16253 RETURNS INTEGER AS $$
16254 BEGIN
16255         RETURN EXTRACT( EPOCH FROM interval_val );
16256 END;
16257 $$ LANGUAGE plpgsql;
16258
16259 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
16260 RETURNS INTEGER AS $$
16261 BEGIN
16262         RETURN config.interval_to_seconds( interval_string::INTERVAL );
16263 END;
16264 $$ LANGUAGE plpgsql;
16265
16266 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
16267     'temp',
16268     oils_i18n_gettext(
16269         'temp',
16270         'Temporary bucket which gets deleted after use.',
16271         'cbrebt',
16272         'label'
16273     )
16274 );
16275
16276 -- 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.
16277
16278 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
16279 BEGIN
16280
16281     IF xml_is_well_formed(NEW.marc) THEN
16282         RETURN NEW;
16283     ELSE
16284         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
16285     END IF;
16286     
16287 END;
16288 $func$ LANGUAGE PLPGSQL;
16289
16290 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();
16291
16292 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();
16293
16294 ALTER TABLE serial.record_entry
16295         ALTER COLUMN marc DROP NOT NULL;
16296
16297 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
16298 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
16299 <xsl:stylesheet
16300     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
16301     xmlns:marc="http://www.loc.gov/MARC21/slim"
16302     version="1.0">
16303 <!--
16304 Copyright (C) 2010  Equinox Software, Inc.
16305 Galen Charlton <gmc@esilibrary.cOM.
16306
16307 This program is free software; you can redistribute it and/or
16308 modify it under the terms of the GNU General Public License
16309 as published by the Free Software Foundation; either version 2
16310 of the License, or (at your option) any later version.
16311
16312 This program is distributed in the hope that it will be useful,
16313 but WITHOUT ANY WARRANTY; without even the implied warranty of
16314 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16315 GNU General Public License for more details.
16316
16317 marc21_expand_880.xsl - stylesheet used during indexing to
16318                         map alternative graphical representations
16319                         of MARC fields stored in 880 fields
16320                         to the corresponding tag name and value.
16321
16322 For example, if a MARC record for a Chinese book has
16323
16324 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16325 880.00 $6 245-01/$1 $a八十三年短篇小說選
16326
16327 this stylesheet will transform it to the equivalent of
16328
16329 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16330 245.00 $6 245-01/$1 $a八十三年短篇小說選
16331
16332 -->
16333     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
16334
16335     <xsl:template match="@*|node()">
16336         <xsl:copy>
16337             <xsl:apply-templates select="@*|node()"/>
16338         </xsl:copy>
16339     </xsl:template>
16340
16341     <xsl:template match="//marc:datafield[@tag='880']">
16342         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
16343             <marc:datafield>
16344                 <xsl:attribute name="tag">
16345                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
16346                 </xsl:attribute>
16347                 <xsl:attribute name="ind1">
16348                     <xsl:value-of select="@ind1" />
16349                 </xsl:attribute>
16350                 <xsl:attribute name="ind2">
16351                     <xsl:value-of select="@ind2" />
16352                 </xsl:attribute>
16353                 <xsl:apply-templates />
16354             </marc:datafield>
16355         </xsl:if>
16356     </xsl:template>
16357     
16358 </xsl:stylesheet>$$);
16359
16360 -- fix broken prefix and namespace URI for the
16361 -- mods32 transform found in some databases
16362 -- that started out at version 1.2 or earlier
16363 UPDATE config.xml_transform
16364 SET namespace_uri = 'http://www.loc.gov/mods/v3'
16365 WHERE name = 'mods32'
16366 AND namespace_uri = 'http://www.loc.gov/mods/'
16367 AND xslt LIKE '%xmlns="http://www.loc.gov/mods/v3"%';
16368
16369 UPDATE config.xml_transform
16370 SET prefix = 'mods32'
16371 WHERE name = 'mods32'
16372 AND prefix = 'mods'
16373 AND EXISTS (SELECT xpath FROM config.metabib_field WHERE xpath ~ 'mods32:');
16374
16375 -- Splitting the ingest trigger up into little bits
16376
16377 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
16378     flag INTEGER PRIMARY KEY
16379 ) ON COMMIT DROP;
16380 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
16381
16382 -- cause failure if either of the tables we want to drop have rows
16383 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
16384 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
16385
16386 DROP TABLE IF EXISTS asset.copy_transparency_map;
16387 DROP TABLE IF EXISTS asset.copy_transparency;
16388
16389 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
16390
16391 -- We won't necessarily use all of these, but they are here for completeness.
16392 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
16393 -- Values are the EDI code value + 1000
16394
16395 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
16396 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
16397 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
16398 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
16399 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
16400 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
16401 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
16402 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
16403 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
16404 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
16405 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
16406 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
16407 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
16408 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
16409 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
16410 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
16411 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
16412 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
16413 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
16414 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
16415 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
16416 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
16417 ('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).'),
16418 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
16419 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
16420 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
16421 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
16422 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
16423 ('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.'),
16424 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
16425 ('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.'),
16426 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
16427 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
16428 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
16429 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
16430 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
16431 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
16432 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
16433 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
16434 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
16435 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
16436 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
16437 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
16438 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
16439 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
16440 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
16441 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
16442 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
16443 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
16444 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
16445 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
16446 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
16447 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
16448 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
16449 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
16450 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
16451 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
16452 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
16453 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
16454 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
16455 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
16456 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
16457 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
16458 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
16459 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
16460 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
16461 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
16462 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
16463 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
16464 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
16465 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
16466 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
16467 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
16468 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
16469 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
16470 ('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).'),
16471 ('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).'),
16472 ('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).'),
16473 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
16474 ('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).'),
16475 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
16476 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
16477 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
16478 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
16479 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
16480 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
16481 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
16482 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
16483 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
16484 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
16485 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
16486 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
16487 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
16488 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
16489 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
16490 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
16491 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
16492 ('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.'),
16493 ('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.'),
16494 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
16495 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
16496 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
16497 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
16498 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
16499 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
16500 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
16501 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
16502 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
16503 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
16504 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
16505 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
16506 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
16507 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
16508 ('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.'),
16509 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
16510 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
16511
16512 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
16513     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
16514  
16515 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
16516  
16517 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16518         'Remove Parenthesized Substring',
16519         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
16520         'remove_paren_substring',
16521         0
16522 );
16523
16524 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16525         'Trim Surrounding Space',
16526         'Trim leading and trailing spaces from extracted text.',
16527         'btrim',
16528         0
16529 );
16530
16531 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16532     SELECT  m.id,
16533             i.id,
16534             -2
16535       FROM  config.metabib_field m,
16536             config.index_normalizer i
16537       WHERE i.func IN ('remove_paren_substring')
16538             AND m.id IN (26);
16539
16540 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16541     SELECT  m.id,
16542             i.id,
16543             -1
16544       FROM  config.metabib_field m,
16545             config.index_normalizer i
16546       WHERE i.func IN ('btrim')
16547             AND m.id IN (26);
16548
16549 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
16550 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
16551 DECLARE
16552     dyn_profile     vandelay.compile_profile%ROWTYPE;
16553     replace_rule    TEXT;
16554     tmp_marc        TEXT;
16555     trgt_marc        TEXT;
16556     tmpl_marc        TEXT;
16557     match_count     INT;
16558 BEGIN
16559
16560     IF target_marc IS NULL OR template_marc IS NULL THEN
16561         -- RAISE NOTICE 'no marc for target or template record';
16562         RETURN NULL;
16563     END IF;
16564
16565     dyn_profile := vandelay.compile_profile( template_marc );
16566
16567     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
16568         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
16569         RETURN NULL;
16570     END IF;
16571
16572     IF dyn_profile.replace_rule <> '' THEN
16573         trgt_marc = target_marc;
16574         tmpl_marc = template_marc;
16575         replace_rule = dyn_profile.replace_rule;
16576     ELSE
16577         tmp_marc = target_marc;
16578         trgt_marc = template_marc;
16579         tmpl_marc = tmp_marc;
16580         replace_rule = dyn_profile.preserve_rule;
16581     END IF;
16582
16583     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
16584
16585 END;
16586 $$ LANGUAGE PLPGSQL;
16587
16588 -- Function to generate an ephemeral overlay template from an authority record
16589 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
16590
16591     use MARC::Record;
16592     use MARC::File::XML (BinaryEncoding => 'UTF-8');
16593
16594     my $xml = shift;
16595     my $r = MARC::Record->new_from_xml( $xml );
16596
16597     return undef unless ($r);
16598
16599     my $id = shift() || $r->subfield( '901' => 'c' );
16600     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
16601     return undef unless ($id); # We need an ID!
16602
16603     my $tmpl = MARC::Record->new();
16604     $tmpl->encoding( 'UTF-8' );
16605
16606     my @rule_fields;
16607     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
16608
16609         my $tag = $field->tag;
16610         my $i1 = $field->indicator(1);
16611         my $i2 = $field->indicator(2);
16612         my $sf = join '', map { $_->[0] } $field->subfields;
16613         my @data = map { @$_ } $field->subfields;
16614
16615         my @replace_them;
16616
16617         # Map the authority field to bib fields it can control.
16618         if ($tag >= 100 and $tag <= 111) {       # names
16619             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
16620         } elsif ($tag eq '130') {                # uniform title
16621             @replace_them = qw/130 240 440 730 830/;
16622         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
16623             @replace_them = ($tag + 500);
16624         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
16625             @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/;
16626         } else {
16627             next;
16628         }
16629
16630         # Dummy up the bib-side data
16631         $tmpl->append_fields(
16632             map {
16633                 MARC::Field->new( $_, $i1, $i2, @data )
16634             } @replace_them
16635         );
16636
16637         # Construct some 'replace' rules
16638         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
16639     }
16640
16641     # Insert the replace rules into the template
16642     $tmpl->append_fields(
16643         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16644     );
16645
16646     $xml = $tmpl->as_xml_record;
16647     $xml =~ s/^<\?.+?\?>$//mo;
16648     $xml =~ s/\n//sgo;
16649     $xml =~ s/>\s+</></sgo;
16650
16651     return $xml;
16652
16653 $func$ LANGUAGE PLPERLU;
16654
16655 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16656     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16657 $func$ LANGUAGE SQL;
16658
16659 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16660     SELECT authority.generate_overlay_template( $1, NULL );
16661 $func$ LANGUAGE SQL;
16662
16663 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16664 DELETE FROM config.metabib_field WHERE id = 26;
16665
16666 -- Making this a global_flag (UI accessible) instead of an internal_flag
16667 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16668     VALUES (
16669         'ingest.disable_authority_linking',
16670         oils_i18n_gettext(
16671             'ingest.disable_authority_linking',
16672             'Authority Automation: Disable bib-authority link tracking',
16673             'cgf', 
16674             'label'
16675         )
16676     );
16677 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16678 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16679
16680 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16681     VALUES (
16682         'ingest.disable_authority_auto_update',
16683         oils_i18n_gettext(
16684             'ingest.disable_authority_auto_update',
16685             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16686             'cgf', 
16687             'label'
16688         )
16689     );
16690
16691 -- Enable automated ingest of authority records; just insert the row into
16692 -- authority.record_entry and authority.full_rec will automatically be populated
16693
16694 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16695     UPDATE  biblio.record_entry
16696       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16697       WHERE id = $2;
16698     SELECT $1;
16699 $func$ LANGUAGE SQL;
16700
16701 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16702     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16703 $func$ LANGUAGE SQL;
16704
16705 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
16706
16707 use MARC::Record;
16708 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16709
16710 my $xml = shift;
16711 my $r = MARC::Record->new_from_xml( $xml );
16712
16713 return_next( { tag => 'LDR', value => $r->leader } );
16714
16715 for my $f ( $r->fields ) {
16716     if ($f->is_control_field) {
16717         return_next({ tag => $f->tag, value => $f->data });
16718     } else {
16719         for my $s ($f->subfields) {
16720             return_next({
16721                 tag      => $f->tag,
16722                 ind1     => $f->indicator(1),
16723                 ind2     => $f->indicator(2),
16724                 subfield => $s->[0],
16725                 value    => $s->[1]
16726             });
16727
16728         }
16729     }
16730 }
16731
16732 return undef;
16733
16734 $func$ LANGUAGE PLPERLU;
16735
16736 CREATE OR REPLACE FUNCTION authority.flatten_marc ( rid BIGINT ) RETURNS SETOF authority.full_rec AS $func$
16737 DECLARE
16738     auth    authority.record_entry%ROWTYPE;
16739     output    authority.full_rec%ROWTYPE;
16740     field    RECORD;
16741 BEGIN
16742     SELECT INTO auth * FROM authority.record_entry WHERE id = rid;
16743
16744     FOR field IN SELECT * FROM authority.flatten_marc( auth.marc ) LOOP
16745         output.record := rid;
16746         output.ind1 := field.ind1;
16747         output.ind2 := field.ind2;
16748         output.tag := field.tag;
16749         output.subfield := field.subfield;
16750         IF field.subfield IS NOT NULL THEN
16751             output.value := naco_normalize(field.value, field.subfield);
16752         ELSE
16753             output.value := field.value;
16754         END IF;
16755
16756         CONTINUE WHEN output.value IS NULL;
16757
16758         RETURN NEXT output;
16759     END LOOP;
16760 END;
16761 $func$ LANGUAGE PLPGSQL;
16762
16763 -- authority.rec_descriptor appears to be unused currently
16764 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16765 BEGIN
16766     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16767 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16768 --        SELECT  auth_id, ;
16769
16770     RETURN;
16771 END;
16772 $func$ LANGUAGE PLPGSQL;
16773
16774 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16775 BEGIN
16776     DELETE FROM authority.full_rec WHERE record = auth_id;
16777     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16778         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16779
16780     RETURN;
16781 END;
16782 $func$ LANGUAGE PLPGSQL;
16783
16784 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16785 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16786 BEGIN
16787
16788     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16789         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16790         DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records
16791           -- Should remove matching $0 from controlled fields at the same time?
16792         RETURN NEW; -- and we're done
16793     END IF;
16794
16795     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16796         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16797
16798         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16799             RETURN NEW;
16800         END IF;
16801     END IF;
16802
16803     -- Flatten and insert the afr data
16804     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16805     IF NOT FOUND THEN
16806         PERFORM authority.reingest_authority_full_rec(NEW.id);
16807 -- authority.rec_descriptor is not currently used
16808 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16809 --        IF NOT FOUND THEN
16810 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16811 --        END IF;
16812     END IF;
16813
16814     RETURN NEW;
16815 END;
16816 $func$ LANGUAGE PLPGSQL;
16817
16818 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 ();
16819
16820 -- Some records manage to get XML namespace declarations into each element,
16821 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16822 -- This broke the old maintain_901(), so we'll make the regex more robust
16823
16824 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16825 BEGIN
16826     -- Remove any existing 901 fields before we insert the authoritative one
16827     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16828     IF TG_TABLE_SCHEMA = 'biblio' THEN
16829         NEW.marc := REGEXP_REPLACE(
16830             NEW.marc,
16831             E'(</(?:[^:]*?:)?record>)',
16832             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16833                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16834                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16835                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16836                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16837                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16838                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16839              E'</datafield>\\1'
16840         );
16841     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16842         NEW.marc := REGEXP_REPLACE(
16843             NEW.marc,
16844             E'(</(?:[^:]*?:)?record>)',
16845             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16846                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16847                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16848              E'</datafield>\\1'
16849         );
16850     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16851         NEW.marc := REGEXP_REPLACE(
16852             NEW.marc,
16853             E'(</(?:[^:]*?:)?record>)',
16854             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16855                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16856                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16857                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16858                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16859              E'</datafield>\\1'
16860         );
16861     ELSE
16862         NEW.marc := REGEXP_REPLACE(
16863             NEW.marc,
16864             E'(</(?:[^:]*?:)?record>)',
16865             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16866                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16867                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16868              E'</datafield>\\1'
16869         );
16870     END IF;
16871
16872     RETURN NEW;
16873 END;
16874 $func$ LANGUAGE PLPGSQL;
16875
16876 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16877 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16878 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16879  
16880 -- In booking, elbow room defines:
16881 --  a) how far in the future you must make a reservation on a given item if
16882 --      that item will have to transit somewhere to fulfill the reservation.
16883 --  b) how soon a reservation must be starting for the reserved item to
16884 --      be op-captured by the checkin interface.
16885
16886 -- We don't want to clobber any default_elbow room at any level:
16887
16888 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16889 DECLARE
16890     existing    actor.org_unit_setting%ROWTYPE;
16891 BEGIN
16892     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16893     IF NOT FOUND THEN
16894         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16895             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16896             'circ.booking_reservation.default_elbow_room',
16897             '"1 day"'
16898         );
16899         RETURN 1;
16900     END IF;
16901     RETURN 0;
16902 END;
16903 $$ LANGUAGE plpgsql;
16904
16905 SELECT pg_temp.default_elbow();
16906
16907 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16908
16909 -- returns the distinct set of target copy IDs from a user's visible circulation history
16910 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16911     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16912 $$ LANGUAGE SQL;
16913
16914 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16915 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16916 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16917 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16918
16919 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16920
16921 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16922 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16923
16924 INSERT INTO config.global_flag (name, label, enabled)
16925     VALUES (
16926         'cat.maintain_control_numbers',
16927         oils_i18n_gettext(
16928             'cat.maintain_control_numbers',
16929             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16930             'cgf', 
16931             'label'
16932         ),
16933         TRUE
16934     );
16935
16936 INSERT INTO config.global_flag (name, label, enabled)
16937     VALUES (
16938         'circ.holds.empty_issuance_ok',
16939         oils_i18n_gettext(
16940             'circ.holds.empty_issuance_ok',
16941             'Holds: Allow holds on empty issuances',
16942             'cgf',
16943             'label'
16944         ),
16945         TRUE
16946     );
16947
16948 INSERT INTO config.global_flag (name, label, enabled)
16949     VALUES (
16950         'circ.holds.usr_not_requestor',
16951         oils_i18n_gettext(
16952             'circ.holds.usr_not_requestor',
16953             'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)',
16954             'cgf',
16955             'label'
16956         ),
16957         TRUE
16958     );
16959
16960 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16961 use strict;
16962 use MARC::Record;
16963 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16964 use Encode;
16965 use Unicode::Normalize;
16966
16967 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16968 my $schema = $_TD->{table_schema};
16969 my $rec_id = $_TD->{new}{id};
16970
16971 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16972 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16973 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16974     return;
16975 }
16976
16977 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16978 my $ou_cni = 'EVRGRN';
16979
16980 my $owner;
16981 if ($schema eq 'serial') {
16982     $owner = $_TD->{new}{owning_lib};
16983 } else {
16984     # are.owner and bre.owner can be null, so fall back to the consortial setting
16985     $owner = $_TD->{new}{owner} || 1;
16986 }
16987
16988 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16989 if ($ous_rv->{processed}) {
16990     $ou_cni = $ous_rv->{rows}[0]->{value};
16991     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16992 } else {
16993     # Fall back to the shortname of the OU if there was no OU setting
16994     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16995     if ($ous_rv->{processed}) {
16996         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16997     }
16998 }
16999
17000 my ($create, $munge) = (0, 0);
17001
17002 my @scns = $record->field('035');
17003
17004 foreach my $id_field ('001', '003') {
17005     my $spec_value;
17006     my @controls = $record->field($id_field);
17007
17008     if ($id_field eq '001') {
17009         $spec_value = $rec_id;
17010     } else {
17011         $spec_value = $ou_cni;
17012     }
17013
17014     # Create the 001/003 if none exist
17015     if (scalar(@controls) == 1) {
17016         # Only one field; check to see if we need to munge it
17017         unless (grep $_->data() eq $spec_value, @controls) {
17018             $munge = 1;
17019         }
17020     } else {
17021         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
17022         foreach my $control (@controls) {
17023             unless ($control->data() eq $spec_value) {
17024                 $record->delete_field($control);
17025             }
17026         }
17027         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
17028         $create = 1;
17029     }
17030 }
17031
17032 # Now, if we need to munge the 001, we will first push the existing 001/003
17033 # into the 035; but if the record did not have one (and one only) 001 and 003
17034 # to begin with, skip this process
17035 if ($munge and not $create) {
17036     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
17037
17038     # Do not create duplicate 035 fields
17039     unless (grep $_->subfield('a') eq $scn, @scns) {
17040         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
17041     }
17042 }
17043
17044 # Set the 001/003 and update the MARC
17045 if ($create or $munge) {
17046     $record->field('001')->data($rec_id);
17047     $record->field('003')->data($ou_cni);
17048
17049     my $xml = $record->as_xml_record();
17050     $xml =~ s/\n//sgo;
17051     $xml =~ s/^<\?xml.+\?\s*>//go;
17052     $xml =~ s/>\s+</></go;
17053     $xml =~ s/\p{Cc}//go;
17054
17055     # Embed a version of OpenILS::Application::AppUtils->entityize()
17056     # to avoid having to set PERL5LIB for PostgreSQL as well
17057
17058     # If we are going to convert non-ASCII characters to XML entities,
17059     # we had better be dealing with a UTF8 string to begin with
17060     $xml = decode_utf8($xml);
17061
17062     $xml = NFC($xml);
17063
17064     # Convert raw ampersands to entities
17065     $xml =~ s/&(?!\S+;)/&amp;/gso;
17066
17067     # Convert Unicode characters to entities
17068     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
17069
17070     $xml =~ s/[\x00-\x1f]//go;
17071     $_TD->{new}{marc} = $xml;
17072
17073     return "MODIFY";
17074 }
17075
17076 return;
17077 $func$ LANGUAGE PLPERLU;
17078
17079 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
17080 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
17081 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
17082
17083 INSERT INTO metabib.facet_entry (source, field, value)
17084     SELECT source, field, value FROM (
17085         SELECT * FROM metabib.author_field_entry
17086             UNION ALL
17087         SELECT * FROM metabib.keyword_field_entry
17088             UNION ALL
17089         SELECT * FROM metabib.identifier_field_entry
17090             UNION ALL
17091         SELECT * FROM metabib.title_field_entry
17092             UNION ALL
17093         SELECT * FROM metabib.subject_field_entry
17094             UNION ALL
17095         SELECT * FROM metabib.series_field_entry
17096         )x
17097     WHERE x.index_vector = '';
17098         
17099 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
17100 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
17101 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
17102 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
17103 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
17104 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
17105
17106 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
17107 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
17108 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
17109
17110 -- copy OPAC visibility materialized view
17111 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
17112
17113     TRUNCATE TABLE asset.opac_visible_copies;
17114
17115     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
17116     SELECT  cp.id, cp.circ_lib, cn.record
17117     FROM  asset.copy cp
17118         JOIN asset.call_number cn ON (cn.id = cp.call_number)
17119         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
17120         JOIN asset.copy_location cl ON (cp.location = cl.id)
17121         JOIN config.copy_status cs ON (cp.status = cs.id)
17122         JOIN biblio.record_entry b ON (cn.record = b.id)
17123     WHERE NOT cp.deleted
17124         AND NOT cn.deleted
17125         AND NOT b.deleted
17126         AND cs.opac_visible
17127         AND cl.opac_visible
17128         AND cp.opac_visible
17129         AND a.opac_visible;
17130
17131 $$ LANGUAGE SQL;
17132 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
17133 Rebuild the copy OPAC visibility cache.  Useful during migrations.
17134 $$;
17135
17136 -- and actually populate the table
17137 SELECT asset.refresh_opac_visible_copies_mat_view();
17138
17139 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
17140 DECLARE
17141     add_query       TEXT;
17142     remove_query    TEXT;
17143     do_add          BOOLEAN := false;
17144     do_remove       BOOLEAN := false;
17145 BEGIN
17146     add_query := $$
17147             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
17148                 SELECT  cp.id, cp.circ_lib, cn.record
17149                   FROM  asset.copy cp
17150                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
17151                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
17152                         JOIN asset.copy_location cl ON (cp.location = cl.id)
17153                         JOIN config.copy_status cs ON (cp.status = cs.id)
17154                         JOIN biblio.record_entry b ON (cn.record = b.id)
17155                   WHERE NOT cp.deleted
17156                         AND NOT cn.deleted
17157                         AND NOT b.deleted
17158                         AND cs.opac_visible
17159                         AND cl.opac_visible
17160                         AND cp.opac_visible
17161                         AND a.opac_visible
17162     $$;
17163  
17164     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
17165
17166     IF TG_OP = 'INSERT' THEN
17167
17168         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17169             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17170             EXECUTE add_query;
17171         END IF;
17172
17173         RETURN NEW;
17174
17175     END IF;
17176
17177     -- handle items first, since with circulation activity
17178     -- their statuses change frequently
17179     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
17180
17181         IF OLD.location    <> NEW.location OR
17182            OLD.call_number <> NEW.call_number OR
17183            OLD.status      <> NEW.status OR
17184            OLD.circ_lib    <> NEW.circ_lib THEN
17185             -- any of these could change visibility, but
17186             -- we'll save some queries and not try to calculate
17187             -- the change directly
17188             do_remove := true;
17189             do_add := true;
17190         ELSE
17191
17192             IF OLD.deleted <> NEW.deleted THEN
17193                 IF NEW.deleted THEN
17194                     do_remove := true;
17195                 ELSE
17196                     do_add := true;
17197                 END IF;
17198             END IF;
17199
17200             IF OLD.opac_visible <> NEW.opac_visible THEN
17201                 IF OLD.opac_visible THEN
17202                     do_remove := true;
17203                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
17204                                         -- is also marked opac_visible
17205                     do_add := true;
17206                 END IF;
17207             END IF;
17208
17209         END IF;
17210
17211         IF do_remove THEN
17212             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
17213         END IF;
17214         IF do_add THEN
17215             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17216             EXECUTE add_query;
17217         END IF;
17218
17219         RETURN NEW;
17220
17221     END IF;
17222
17223     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
17224  
17225         IF OLD.deleted AND NEW.deleted THEN -- do nothing
17226
17227             RETURN NEW;
17228  
17229         ELSIF NEW.deleted THEN -- remove rows
17230  
17231             IF TG_TABLE_NAME = 'call_number' THEN
17232                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
17233             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17234                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
17235             END IF;
17236  
17237             RETURN NEW;
17238  
17239         ELSIF OLD.deleted THEN -- add rows
17240  
17241             IF TG_TABLE_NAME IN ('copy','unit') THEN
17242                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
17243             ELSIF TG_TABLE_NAME = 'call_number' THEN
17244                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17245             ELSIF TG_TABLE_NAME = 'record_entry' THEN
17246                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
17247             END IF;
17248  
17249             EXECUTE add_query;
17250             RETURN NEW;
17251  
17252         END IF;
17253  
17254     END IF;
17255
17256     IF TG_TABLE_NAME = 'call_number' THEN
17257
17258         IF OLD.record <> NEW.record THEN
17259             -- call number is linked to different bib
17260             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
17261             EXECUTE remove_query;
17262             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
17263             EXECUTE add_query;
17264         END IF;
17265
17266         RETURN NEW;
17267
17268     END IF;
17269
17270     IF TG_TABLE_NAME IN ('record_entry') THEN
17271         RETURN NEW; -- don't have 'opac_visible'
17272     END IF;
17273
17274     -- actor.org_unit, asset.copy_location, asset.copy_status
17275     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
17276
17277         RETURN NEW;
17278
17279     ELSIF NEW.opac_visible THEN -- add rows
17280
17281         IF TG_TABLE_NAME = 'org_unit' THEN
17282             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
17283         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17284             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
17285         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17286             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
17287         END IF;
17288  
17289         EXECUTE add_query;
17290  
17291     ELSE -- delete rows
17292
17293         IF TG_TABLE_NAME = 'org_unit' THEN
17294             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
17295         ELSIF TG_TABLE_NAME = 'copy_location' THEN
17296             remove_query := remove_query || 'location = ' || NEW.id || ');';
17297         ELSIF TG_TABLE_NAME = 'copy_status' THEN
17298             remove_query := remove_query || 'status = ' || NEW.id || ');';
17299         END IF;
17300  
17301         EXECUTE remove_query;
17302  
17303     END IF;
17304  
17305     RETURN NEW;
17306 END;
17307 $func$ LANGUAGE PLPGSQL;
17308 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
17309 Trigger function to update the copy OPAC visiblity cache.
17310 $$;
17311 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();
17312 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17313 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();
17314 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();
17315 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17316 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();
17317 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();
17318
17319 -- must create this rule explicitly; it is not inherited from asset.copy
17320 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;
17321
17322 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);
17323
17324 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
17325 DECLARE
17326     moved_objects INT := 0;
17327     bib_id        INT := 0;
17328     bib_rec       biblio.record_entry%ROWTYPE;
17329     auth_link     authority.bib_linking%ROWTYPE;
17330     ingest_same   boolean;
17331 BEGIN
17332
17333     -- Defining our terms:
17334     -- "target record" = the record that will survive the merge
17335     -- "source record" = the record that is sacrifing its existence and being
17336     --   replaced by the target record
17337
17338     -- 1. Update all bib records with the ID from target_record in their $0
17339     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre
17340       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
17341       WHERE abl.authority = source_record LOOP
17342
17343         UPDATE biblio.record_entry
17344           SET marc = REGEXP_REPLACE(marc,
17345             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
17346             E'\\1' || target_record || '<', 'g')
17347           WHERE id = bib_rec.id;
17348
17349           moved_objects := moved_objects + 1;
17350     END LOOP;
17351
17352     -- 2. Grab the current value of reingest on same MARC flag
17353     SELECT enabled INTO ingest_same
17354       FROM config.internal_flag
17355       WHERE name = 'ingest.reingest.force_on_same_marc'
17356     ;
17357
17358     -- 3. Temporarily set reingest on same to TRUE
17359     UPDATE config.internal_flag
17360       SET enabled = TRUE
17361       WHERE name = 'ingest.reingest.force_on_same_marc'
17362     ;
17363
17364     -- 4. Make a harmless update to target_record to trigger auto-update
17365     --    in linked bibliographic records
17366     UPDATE authority.record_entry
17367       SET deleted = FALSE
17368       WHERE id = target_record;
17369
17370     -- 5. "Delete" source_record
17371     DELETE FROM authority.record_entry
17372       WHERE id = source_record;
17373
17374     -- 6. Set "reingest on same MARC" flag back to initial value
17375     UPDATE config.internal_flag
17376       SET enabled = ingest_same
17377       WHERE name = 'ingest.reingest.force_on_same_marc'
17378     ;
17379
17380     RETURN moved_objects;
17381 END;
17382 $func$ LANGUAGE plpgsql;
17383
17384 -- serial.record_entry already had an owner column spelled "owning_lib"
17385 -- Adjust the table and affected functions accordingly
17386
17387 ALTER TABLE serial.record_entry DROP COLUMN owner;
17388
17389 CREATE TABLE actor.usr_saved_search (
17390     id              SERIAL          PRIMARY KEY,
17391         owner           INT             NOT NULL REFERENCES actor.usr (id)
17392                                         ON DELETE CASCADE
17393                                         DEFERRABLE INITIALLY DEFERRED,
17394         name            TEXT            NOT NULL,
17395         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
17396         query_text      TEXT            NOT NULL,
17397         query_type      TEXT            NOT NULL
17398                                         CONSTRAINT valid_query_text CHECK (
17399                                         query_type IN ( 'URL' )) DEFAULT 'URL',
17400                                         -- we may add other types someday
17401         target          TEXT            NOT NULL
17402                                         CONSTRAINT valid_target CHECK (
17403                                         target IN ( 'record', 'metarecord', 'callnumber' )),
17404         CONSTRAINT name_once_per_user UNIQUE (owner, name)
17405 );
17406
17407 -- Apply Dan Wells' changes to the serial schema, from the
17408 -- seials-integration branch
17409
17410 CREATE TABLE serial.subscription_note (
17411         id           SERIAL PRIMARY KEY,
17412         subscription INT    NOT NULL
17413                             REFERENCES serial.subscription (id)
17414                             ON DELETE CASCADE
17415                             DEFERRABLE INITIALLY DEFERRED,
17416         creator      INT    NOT NULL
17417                             REFERENCES actor.usr (id)
17418                             DEFERRABLE INITIALLY DEFERRED,
17419         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17420         pub          BOOL   NOT NULL DEFAULT FALSE,
17421         title        TEXT   NOT NULL,
17422         value        TEXT   NOT NULL
17423 );
17424 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
17425
17426 CREATE TABLE serial.distribution_note (
17427         id           SERIAL PRIMARY KEY,
17428         distribution INT    NOT NULL
17429                             REFERENCES serial.distribution (id)
17430                             ON DELETE CASCADE
17431                             DEFERRABLE INITIALLY DEFERRED,
17432         creator      INT    NOT NULL
17433                             REFERENCES actor.usr (id)
17434                             DEFERRABLE INITIALLY DEFERRED,
17435         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17436         pub          BOOL   NOT NULL DEFAULT FALSE,
17437         title        TEXT   NOT NULL,
17438         value        TEXT   NOT NULL
17439 );
17440 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
17441
17442 ------- Begin surgery on serial.unit
17443
17444 ALTER TABLE serial.unit
17445         DROP COLUMN label;
17446
17447 ALTER TABLE serial.unit
17448         RENAME COLUMN label_sort_key TO sort_key;
17449
17450 ALTER TABLE serial.unit
17451         RENAME COLUMN contents TO detailed_contents;
17452
17453 ALTER TABLE serial.unit
17454         ADD COLUMN summary_contents TEXT;
17455
17456 UPDATE serial.unit
17457 SET summary_contents = detailed_contents;
17458
17459 ALTER TABLE serial.unit
17460         ALTER column summary_contents SET NOT NULL;
17461
17462 ------- End surgery on serial.unit
17463
17464 -- 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' );
17465
17466 -- Now rebuild the constraints dropped via cascade.
17467 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
17468 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
17469 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
17470
17471 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
17472
17473 DELETE FROM config.metabib_field_index_norm_map
17474     WHERE norm IN (
17475         SELECT id 
17476             FROM config.index_normalizer
17477             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
17478     )
17479     AND field = 18
17480 ;
17481
17482 -- We won't necessarily use all of these, but they are here for completeness.
17483 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
17484 -- Values are the EDI code value + 1200
17485
17486 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
17487 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
17488 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
17489 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
17490 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
17491 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
17492 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
17493 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
17494 (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.'),
17495 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
17496 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
17497 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
17498 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
17499 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
17500 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
17501 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
17502 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
17503 (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.'),
17504 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
17505 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
17506 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
17507 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
17508 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
17509 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
17510 (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.'),
17511 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
17512 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
17513 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
17514 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
17515 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
17516 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
17517 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
17518 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
17519 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
17520 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
17521 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
17522 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
17523 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
17524 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
17525 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
17526 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
17527 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
17528 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
17529 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
17530 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
17531 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
17532 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
17533 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
17534 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
17535 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
17536 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
17537 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
17538 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
17539 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
17540 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
17541 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
17542 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
17543 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
17544 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
17545 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
17546 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
17547 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
17548 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
17549 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
17550 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
17551 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
17552 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
17553 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
17554 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
17555 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
17556 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
17557 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
17558 (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.'),
17559 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
17560 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
17561 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
17562 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
17563 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
17564 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
17565 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
17566 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
17567 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
17568 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
17569 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
17570 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
17571 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
17572 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
17573 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
17574 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
17575 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
17576 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
17577 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
17578 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
17579 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
17580 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
17581 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
17582 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
17583 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
17584 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
17585 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
17586 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
17587 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
17588 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
17589 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
17590 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
17591 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
17592 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
17593 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
17594 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
17595 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
17596 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
17597 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
17598 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
17599 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
17600 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
17601 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
17602 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
17603 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
17604 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
17605 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
17606 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
17607 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
17608 (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.'),
17609 (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.'),
17610 (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.'),
17611 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
17612 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
17613 (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.'),
17614 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
17615 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
17616 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
17617 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
17618 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
17619 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
17620 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
17621 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
17622 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
17623 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
17624 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
17625 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
17626 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
17627 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
17628 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
17629 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
17630 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
17631 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
17632 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
17633 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
17634 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
17635 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
17636 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
17637 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
17638 (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.'),
17639 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
17640 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
17641 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
17642 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
17643 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
17644 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
17645 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
17646 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
17647 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
17648 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
17649 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
17650 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
17651 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
17652 (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.'),
17653 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
17654 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
17655 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
17656 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
17657 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
17658 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
17659 (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.'),
17660 (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.'),
17661 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
17662 (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.'),
17663 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
17664 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
17665 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
17666 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
17667 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
17668 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
17669 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
17670 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
17671 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
17672 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
17673 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
17674 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
17675 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
17676 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
17677 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
17678 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
17679 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
17680 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
17681 (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.'),
17682 (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.'),
17683 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
17684 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
17685 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
17686 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
17687 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
17688 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
17689 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
17690 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
17691 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
17692 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
17693 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
17694 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
17695 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
17696 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
17697 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
17698 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
17699 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
17700 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
17701 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
17702 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
17703 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
17704 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
17705 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
17706 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
17707 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
17708 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
17709 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
17710 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
17711 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
17712 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
17713 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
17714 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
17715 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
17716 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
17717 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
17718 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
17719 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
17720 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
17721 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
17722 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
17723 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
17724 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
17725 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
17726 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17727 (1, 't', 1442, 'Number of months', 'The number of months.'),
17728 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17729 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17730 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17731 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17732 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17733 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17734 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17735 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17736 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17737 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17738 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17739 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17740 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17741 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17742 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17743 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17744 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17745 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17746 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17747 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17748 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17749 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17750 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17751 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17752 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17753 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17754 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17755 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17756 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17757 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17758 (1, 't', 1473, 'Agents', 'The number of agents.'),
17759 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17760 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17761 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17762 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17763 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17764 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17765 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17766 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17767 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17768 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17769 (1, 't', 1484, 'Departments', 'The number of departments.'),
17770 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17771 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17772 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17773 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17774 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17775 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17776 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17777 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17778 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17779 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17780 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17781 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17782 (1, 't', 1497, 'Executives', 'The number of executives.'),
17783 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17784 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17785 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17786 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17787 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17788 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17789 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17790 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17791 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17792 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17793 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17794 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17795 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17796 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17797 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17798 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17799 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17800 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17801 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17802 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17803 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17804 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17805 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17806 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17807 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17808 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17809 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17810 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17811 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17812 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17813 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17814 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17815 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17816 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17817 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17818 (1, 't', 1533, 'Seats',        'The number of seats.'),
17819 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17820 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17821 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17822 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17823 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17824 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17825 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17826 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17827 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17828 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17829 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17830 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17831 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17832 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17833 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17834 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17835 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17836 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17837 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17838 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17839 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17840 (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.'),
17841 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17842 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17843 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17844 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17845 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17846 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17847 (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.'),
17848 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17849 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17850 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17851 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17852 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17853 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17854 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17855 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17856 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17857 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17858 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17859 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17860 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17861 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17862 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17863 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17864 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17865 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17866 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17867 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17868 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17869 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17870 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17871 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17872 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17873 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17874 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17875 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17876 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17877 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17878 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17879 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17880 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17881 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17882 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17883 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17884 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17885 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17886 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17887 (1, 't', 1602, 'Patients',         'Number of patients.'),
17888 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17889 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17890 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17891 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17892 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17893 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17894 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17895 (1, 't', 1610, 'Operators',        'Number of operators.'),
17896 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17897 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17898 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17899 (1, 't', 1614, 'Machines',         'Number of machines.'),
17900 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17901 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17902 (1, 't', 1617, 'Directors',        'Number of directors.'),
17903 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17904 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17905 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17906 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17907 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17908 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17909 (1, 't', 1624, 'Beds', 'Number of beds.'),
17910 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17911 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17912 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17913 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17914 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17915 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17916 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17917 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17918 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17919 (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.'),
17920 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17921 (1, 't', 1636, 'Professor', 'The number of professors.'),
17922 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17923 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17924 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17925 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17926 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17927 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17928 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17929 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17930 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17931 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17932 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17933 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17934 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17935 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17936 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17937 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17938 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17939 (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.'),
17940 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17941 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17942 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17943 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17944 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17945 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17946 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17947 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17948 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17949 (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.'),
17950 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17951 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17952 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17953 (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.'),
17954 (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.'),
17955 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17956 (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.'),
17957 (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.'),
17958 (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.'),
17959 (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.'),
17960 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17961 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17962 (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.'),
17963 (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.'),
17964 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17965 (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.'),
17966 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17967 (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.'),
17968 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17969 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17970 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17971 (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).'),
17972 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17973 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17974 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17975 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17976 ;
17977 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17978
17979 CREATE TABLE acq.serial_claim (
17980     id     SERIAL           PRIMARY KEY,
17981     type   INT              NOT NULL REFERENCES acq.claim_type
17982                                      DEFERRABLE INITIALLY DEFERRED,
17983     item    BIGINT          NOT NULL REFERENCES serial.item
17984                                      DEFERRABLE INITIALLY DEFERRED
17985 );
17986
17987 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17988
17989 CREATE TABLE acq.serial_claim_event (
17990     id             BIGSERIAL        PRIMARY KEY,
17991     type           INT              NOT NULL REFERENCES acq.claim_event_type
17992                                              DEFERRABLE INITIALLY DEFERRED,
17993     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17994                                              DEFERRABLE INITIALLY DEFERRED,
17995     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17996     creator        INT              NOT NULL REFERENCES actor.usr
17997                                              DEFERRABLE INITIALLY DEFERRED,
17998     note           TEXT
17999 );
18000
18001 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
18002
18003 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
18004
18005 -- now what about the auditor.*_lifecycle views??
18006
18007 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
18008     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
18009 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
18010     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
18011 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
18012 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
18013
18014 CREATE TABLE asset.call_number_class (
18015     id             bigserial     PRIMARY KEY,
18016     name           TEXT          NOT NULL,
18017     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
18018     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
18019 );
18020
18021 COMMENT ON TABLE asset.call_number_class IS $$
18022 Defines the call number normalization database functions in the "normalizer"
18023 column and the tag/subfield combinations to use to lookup the call number in
18024 the "field" column for a given classification scheme. Tag/subfield combinations
18025 are delimited by commas.
18026 $$;
18027
18028 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
18029     ('Generic', 'asset.label_normalizer_generic'),
18030     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
18031     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
18032 ;
18033
18034 -- Generic fields
18035 UPDATE asset.call_number_class
18036     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
18037     WHERE id = 1
18038 ;
18039
18040 -- Dewey fields
18041 UPDATE asset.call_number_class
18042     SET field = '080ab,082ab'
18043     WHERE id = 2
18044 ;
18045
18046 -- LC fields
18047 UPDATE asset.call_number_class
18048     SET field = '050ab,055ab'
18049     WHERE id = 3
18050 ;
18051  
18052 ALTER TABLE asset.call_number
18053         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
18054                 REFERENCES asset.call_number_class(id)
18055                 DEFERRABLE INITIALLY DEFERRED;
18056
18057 ALTER TABLE asset.call_number
18058         ADD COLUMN label_sortkey TEXT;
18059
18060 CREATE INDEX asset_call_number_label_sortkey
18061         ON asset.call_number(oils_text_as_bytea(label_sortkey));
18062
18063 ALTER TABLE auditor.asset_call_number_history
18064         ADD COLUMN label_class BIGINT;
18065
18066 ALTER TABLE auditor.asset_call_number_history
18067         ADD COLUMN label_sortkey TEXT;
18068
18069 -- Pick up the new columns in dependent views
18070
18071 DROP VIEW auditor.asset_call_number_lifecycle;
18072
18073 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
18074
18075 DROP VIEW auditor.asset_call_number_lifecycle;
18076
18077 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
18078
18079 DROP VIEW IF EXISTS stats.fleshed_call_number;
18080
18081 CREATE VIEW stats.fleshed_call_number AS
18082         SELECT  cn.*,
18083             CAST(cn.create_date AS DATE) AS create_date_day,
18084         CAST(cn.edit_date AS DATE) AS edit_date_day,
18085         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
18086         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
18087             rd.item_lang,
18088                 rd.item_type,
18089                 rd.item_form
18090         FROM    asset.call_number cn
18091                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
18092
18093 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
18094 DECLARE
18095     sortkey        TEXT := '';
18096 BEGIN
18097     sortkey := NEW.label_sortkey;
18098
18099     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
18100        quote_literal( NEW.label ) || ')'
18101        FROM asset.call_number_class acnc
18102        WHERE acnc.id = NEW.label_class
18103        INTO sortkey;
18104
18105     NEW.label_sortkey = sortkey;
18106
18107     RETURN NEW;
18108 END;
18109 $func$ LANGUAGE PLPGSQL;
18110
18111 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
18112     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
18113     # thus could probably be considered a derived work, although nothing was
18114     # directly copied - but to err on the safe side of providing attribution:
18115     # Copyright (C) 2007 LibLime
18116     # Licensed under the GPL v2 or later
18117
18118     use strict;
18119     use warnings;
18120
18121     # Converts the callnumber to uppercase
18122     # Strips spaces from start and end of the call number
18123     # Converts anything other than letters, digits, and periods into underscores
18124     # Collapses multiple underscores into a single underscore
18125     my $callnum = uc(shift);
18126     $callnum =~ s/^\s//g;
18127     $callnum =~ s/\s$//g;
18128     $callnum =~ s/[^A-Z0-9_.]/_/g;
18129     $callnum =~ s/_{2,}/_/g;
18130
18131     return $callnum;
18132 $func$ LANGUAGE PLPERLU;
18133
18134 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
18135     # Derived from the Koha C4::ClassSortRoutine::Dewey module
18136     # Copyright (C) 2007 LibLime
18137     # Licensed under the GPL v2 or later
18138
18139     use strict;
18140     use warnings;
18141
18142     my $init = uc(shift);
18143     $init =~ s/^\s+//;
18144     $init =~ s/\s+$//;
18145     $init =~ s!/!!g;
18146     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
18147     my @tokens = split /\.|\s+/, $init;
18148     my $digit_group_count = 0;
18149     for (my $i = 0; $i <= $#tokens; $i++) {
18150         if ($tokens[$i] =~ /^\d+$/) {
18151             $digit_group_count++;
18152             if (2 == $digit_group_count) {
18153                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
18154                 $tokens[$i] =~ tr/ /0/;
18155             }
18156         }
18157     }
18158     my $key = join("_", @tokens);
18159     $key =~ s/[^\p{IsAlnum}_]//g;
18160
18161     return $key;
18162
18163 $func$ LANGUAGE PLPERLU;
18164
18165 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
18166     use strict;
18167     use warnings;
18168
18169     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
18170     # The author hopes to upload it to CPAN some day, which would make our lives easier
18171     use Library::CallNumber::LC;
18172
18173     my $callnum = Library::CallNumber::LC->new(shift);
18174     return $callnum->normalize();
18175
18176 $func$ LANGUAGE PLPERLU;
18177
18178 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$
18179 DECLARE
18180     ans RECORD;
18181     trans INT;
18182 BEGIN
18183     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;
18184
18185     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
18186         RETURN QUERY
18187         SELECT  ans.depth,
18188                 ans.id,
18189                 COUNT( av.id ),
18190                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18191                 COUNT( av.id ),
18192                 trans
18193           FROM
18194                 actor.org_unit_descendants(ans.id) d
18195                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18196                 JOIN asset.copy cp ON (cp.id = av.id)
18197           GROUP BY 1,2,6;
18198
18199         IF NOT FOUND THEN
18200             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18201         END IF;
18202
18203     END LOOP;
18204
18205     RETURN;
18206 END;
18207 $f$ LANGUAGE PLPGSQL;
18208
18209 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$
18210 DECLARE
18211     ans RECORD;
18212     trans INT;
18213 BEGIN
18214     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;
18215
18216     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18217         RETURN QUERY
18218         SELECT  -1,
18219                 ans.id,
18220                 COUNT( av.id ),
18221                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18222                 COUNT( av.id ),
18223                 trans
18224           FROM
18225                 actor.org_unit_descendants(ans.id) d
18226                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18227                 JOIN asset.copy cp ON (cp.id = av.id)
18228           GROUP BY 1,2,6;
18229
18230         IF NOT FOUND THEN
18231             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18232         END IF;
18233
18234     END LOOP;
18235
18236     RETURN;
18237 END;
18238 $f$ LANGUAGE PLPGSQL;
18239
18240 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$
18241 DECLARE
18242     ans RECORD;
18243     trans INT;
18244 BEGIN
18245     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;
18246
18247     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
18248         RETURN QUERY
18249         SELECT  ans.depth,
18250                 ans.id,
18251                 COUNT( cp.id ),
18252                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18253                 COUNT( cp.id ),
18254                 trans
18255           FROM
18256                 actor.org_unit_descendants(ans.id) d
18257                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18258                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18259           GROUP BY 1,2,6;
18260
18261         IF NOT FOUND THEN
18262             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18263         END IF;
18264
18265     END LOOP;
18266
18267     RETURN;
18268 END;
18269 $f$ LANGUAGE PLPGSQL;
18270
18271 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$
18272 DECLARE
18273     ans RECORD;
18274     trans INT;
18275 BEGIN
18276     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;
18277
18278     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18279         RETURN QUERY
18280         SELECT  -1,
18281                 ans.id,
18282                 COUNT( cp.id ),
18283                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18284                 COUNT( cp.id ),
18285                 trans
18286           FROM
18287                 actor.org_unit_descendants(ans.id) d
18288                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18289                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18290           GROUP BY 1,2,6;
18291
18292         IF NOT FOUND THEN
18293             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18294         END IF;
18295
18296     END LOOP;
18297
18298     RETURN;
18299 END;
18300 $f$ LANGUAGE PLPGSQL;
18301
18302 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$
18303 BEGIN
18304     IF staff IS TRUE THEN
18305         IF place > 0 THEN
18306             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
18307         ELSE
18308             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
18309         END IF;
18310     ELSE
18311         IF place > 0 THEN
18312             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
18313         ELSE
18314             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
18315         END IF;
18316     END IF;
18317
18318     RETURN;
18319 END;
18320 $f$ LANGUAGE PLPGSQL;
18321
18322 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$
18323 DECLARE
18324     ans RECORD;
18325     trans INT;
18326 BEGIN
18327     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;
18328
18329     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
18330         RETURN QUERY
18331         SELECT  ans.depth,
18332                 ans.id,
18333                 COUNT( av.id ),
18334                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18335                 COUNT( av.id ),
18336                 trans
18337           FROM
18338                 actor.org_unit_descendants(ans.id) d
18339                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18340                 JOIN asset.copy cp ON (cp.id = av.id)
18341                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18342           GROUP BY 1,2,6;
18343
18344         IF NOT FOUND THEN
18345             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18346         END IF;
18347
18348     END LOOP;
18349
18350     RETURN;
18351 END;
18352 $f$ LANGUAGE PLPGSQL;
18353
18354 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$
18355 DECLARE
18356     ans RECORD;
18357     trans INT;
18358 BEGIN
18359     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;
18360
18361     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18362         RETURN QUERY
18363         SELECT  -1,
18364                 ans.id,
18365                 COUNT( av.id ),
18366                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18367                 COUNT( av.id ),
18368                 trans
18369           FROM
18370                 actor.org_unit_descendants(ans.id) d
18371                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18372                 JOIN asset.copy cp ON (cp.id = av.id)
18373                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18374           GROUP BY 1,2,6;
18375
18376         IF NOT FOUND THEN
18377             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18378         END IF;
18379
18380     END LOOP;
18381
18382     RETURN;
18383 END;
18384 $f$ LANGUAGE PLPGSQL;
18385
18386 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$
18387 DECLARE
18388     ans RECORD;
18389     trans INT;
18390 BEGIN
18391     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;
18392
18393     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
18394         RETURN QUERY
18395         SELECT  ans.depth,
18396                 ans.id,
18397                 COUNT( cp.id ),
18398                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18399                 COUNT( cp.id ),
18400                 trans
18401           FROM
18402                 actor.org_unit_descendants(ans.id) d
18403                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18404                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18405                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18406           GROUP BY 1,2,6;
18407
18408         IF NOT FOUND THEN
18409             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18410         END IF;
18411
18412     END LOOP;
18413
18414     RETURN;
18415 END;
18416 $f$ LANGUAGE PLPGSQL;
18417
18418 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$
18419 DECLARE
18420     ans RECORD;
18421     trans INT;
18422 BEGIN
18423     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;
18424
18425     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18426         RETURN QUERY
18427         SELECT  -1,
18428                 ans.id,
18429                 COUNT( cp.id ),
18430                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18431                 COUNT( cp.id ),
18432                 trans
18433           FROM
18434                 actor.org_unit_descendants(ans.id) d
18435                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18436                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18437                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18438           GROUP BY 1,2,6;
18439
18440         IF NOT FOUND THEN
18441             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18442         END IF;
18443
18444     END LOOP;
18445
18446     RETURN;
18447 END;
18448 $f$ LANGUAGE PLPGSQL;
18449
18450 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$
18451 BEGIN
18452     IF staff IS TRUE THEN
18453         IF place > 0 THEN
18454             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
18455         ELSE
18456             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
18457         END IF;
18458     ELSE
18459         IF place > 0 THEN
18460             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
18461         ELSE
18462             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
18463         END IF;
18464     END IF;
18465
18466     RETURN;
18467 END;
18468 $f$ LANGUAGE PLPGSQL;
18469
18470 -- No transaction is required
18471
18472 -- Triggers on the vandelay.queued_*_record tables delete entries from
18473 -- the associated vandelay.queued_*_record_attr tables based on the record's
18474 -- ID; create an index on that column to avoid sequential scans for each
18475 -- queued record that is deleted
18476 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
18477 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
18478
18479 -- Avoid sequential scans for queue retrieval operations by providing an
18480 -- index on the queue column
18481 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
18482 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
18483
18484 -- Start picking up call number label prefixes and suffixes
18485 -- from asset.copy_location
18486 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
18487 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
18488
18489 DROP VIEW auditor.asset_copy_lifecycle;
18490
18491 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
18492
18493 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
18494
18495 -- Let's not break existing reports
18496 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
18497 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
18498
18499 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
18500 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
18501 SELECT  r.id,
18502     r.fingerprint,
18503     r.quality,
18504     r.tcn_source,
18505     r.tcn_value,
18506     FIRST(title.value) AS title,
18507     FIRST(author.value) AS author,
18508     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
18509     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
18510     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18511     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
18512   FROM  biblio.record_entry r
18513     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18514     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
18515     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18516     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18517     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18518     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18519   GROUP BY 1,2,3,4,5;
18520
18521 -- Correct the ISSN array definition for reporter.simple_record
18522
18523 CREATE OR REPLACE VIEW reporter.simple_record AS
18524 SELECT  r.id,
18525         s.metarecord,
18526         r.fingerprint,
18527         r.quality,
18528         r.tcn_source,
18529         r.tcn_value,
18530         title.value AS title,
18531         uniform_title.value AS uniform_title,
18532         author.value AS author,
18533         publisher.value AS publisher,
18534         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
18535         series_title.value AS series_title,
18536         series_statement.value AS series_statement,
18537         summary.value AS summary,
18538         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18539         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
18540         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
18541         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
18542         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
18543         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
18544         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
18545         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
18546   FROM  biblio.record_entry r
18547         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
18548         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
18549         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18550         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
18551         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18552         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18553         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18554         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18555         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')
18556         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
18557         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
18558   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
18559
18560 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
18561     DROP TRIGGER IF EXISTS bbb_simple_rec_trigger ON biblio.record_entry;
18562 $$ LANGUAGE SQL;
18563
18564 CREATE OR REPLACE FUNCTION reporter.enable_materialized_simple_record_trigger () RETURNS VOID AS $$
18565
18566     DELETE FROM reporter.materialized_simple_record;
18567
18568     INSERT INTO reporter.materialized_simple_record
18569         (id,fingerprint,quality,tcn_source,tcn_value,title,author,publisher,pubdate,isbn,issn)
18570         SELECT DISTINCT ON (id) * FROM reporter.old_super_simple_record;
18571
18572     CREATE TRIGGER bbb_simple_rec_trigger
18573         AFTER INSERT OR UPDATE OR DELETE ON biblio.record_entry
18574         FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger();
18575
18576 $$ LANGUAGE SQL;
18577
18578 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
18579 BEGIN
18580     IF TG_OP = 'DELETE' THEN
18581         PERFORM reporter.simple_rec_delete(NEW.id);
18582     ELSE
18583         PERFORM reporter.simple_rec_update(NEW.id);
18584     END IF;
18585
18586     RETURN NEW;
18587 END;
18588 $func$ LANGUAGE PLPGSQL;
18589
18590 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 ();
18591
18592 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
18593
18594 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
18595
18596 UPDATE config.org_unit_setting_type
18597     SET view_perm = (SELECT id FROM permission.perm_list
18598         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
18599     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
18600
18601 UPDATE config.org_unit_setting_type
18602     SET update_perm = (SELECT id FROM permission.perm_list
18603         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
18604     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
18605
18606 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
18607     VALUES (
18608         'opac.fully_compressed_serial_holdings',
18609         'OPAC: Use fully compressed serial holdings',
18610         'Show fully compressed serial holdings for all libraries at and below
18611         the current context unit',
18612         'bool'
18613     );
18614
18615 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
18616     use strict;
18617     use warnings;
18618
18619     use utf8;
18620     use MARC::Record;
18621     use MARC::File::XML (BinaryEncoding => 'UTF8');
18622     use MARC::Charset;
18623     use UUID::Tiny ':std';
18624
18625     MARC::Charset->assume_unicode(1);
18626
18627     my $xml = shift() or return undef;
18628
18629     my $r;
18630
18631     # Prevent errors in XML parsing from blowing out ungracefully
18632     eval {
18633         $r = MARC::Record->new_from_xml( $xml );
18634         1;
18635     } or do {
18636        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18637     };
18638
18639     if (!$r) {
18640        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18641     }
18642
18643     # From http://www.loc.gov/standards/sourcelist/subject.html
18644     my $thes_code_map = {
18645         a => 'lcsh',
18646         b => 'lcshac',
18647         c => 'mesh',
18648         d => 'nal',
18649         k => 'cash',
18650         n => 'notapplicable',
18651         r => 'aat',
18652         s => 'sears',
18653         v => 'rvm',
18654     };
18655
18656     # Default to "No attempt to code" if the leader is horribly broken
18657     my $fixed_field = $r->field('008');
18658     my $thes_char = '|';
18659     if ($fixed_field) { 
18660         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
18661     }
18662
18663     my $thes_code = 'UNDEFINED';
18664
18665     if ($thes_char eq 'z') {
18666         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
18667         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
18668     } elsif ($thes_code_map->{$thes_char}) {
18669         $thes_code = $thes_code_map->{$thes_char};
18670     }
18671
18672     my $auth_txt = '';
18673     my $head = $r->field('1..');
18674     if ($head) {
18675         # Concatenate all of these subfields together, prefixed by their code
18676         # to prevent collisions along the lines of "Fiction, North Carolina"
18677         foreach my $sf ($head->subfields()) {
18678             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
18679         }
18680     }
18681     
18682     if ($auth_txt) {
18683         my $stmt = spi_prepare('SELECT public.naco_normalize($1) AS norm_text', 'TEXT');
18684         my $result = spi_exec_prepared($stmt, $auth_txt);
18685         my $norm_txt = $result->{rows}[0]->{norm_text};
18686         spi_freeplan($stmt);
18687         undef($stmt);
18688         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
18689     }
18690
18691     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
18692 $func$ LANGUAGE 'plperlu' IMMUTABLE;
18693
18694 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
18695 /**
18696 * Extract the authority heading, thesaurus, and NACO-normalized values
18697 * from an authority record. The primary purpose is to build a unique
18698 * index to defend against duplicated authority records from the same
18699 * thesaurus.
18700 */
18701 $$;
18702
18703 DROP INDEX authority.authority_record_unique_tcn;
18704 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
18705 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
18706
18707 ALTER TABLE acq.provider_contact
18708         ALTER COLUMN name SET NOT NULL;
18709
18710 ALTER TABLE actor.stat_cat
18711         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
18712
18713 -- Per Robert Soulliere, it can be necessary in some cases to clean out bad
18714 -- data from action.reservation_transit_copy before applying the missing
18715 -- fkeys below.
18716 -- https://bugs.launchpad.net/evergreen/+bug/721450
18717 DELETE FROM action.reservation_transit_copy
18718     WHERE target_copy NOT IN (SELECT id FROM booking.resource);
18719 -- In the same spirit as the above delete, this can only fix bad data.
18720 UPDATE action.reservation_transit_copy
18721     SET reservation = NULL
18722     WHERE reservation NOT IN (SELECT id FROM booking.reservation);
18723
18724 -- Recreate some foreign keys that were somehow dropped, probably
18725 -- by some kind of cascade from an inherited table:
18726
18727 CREATE INDEX user_bucket_item_target_user_idx
18728         ON container.user_bucket_item ( target_user );
18729
18730 CREATE INDEX m_c_t_collector_idx
18731         ON money.collections_tracker ( collector );
18732
18733 CREATE INDEX aud_actor_usr_address_hist_id_idx
18734         ON auditor.actor_usr_address_history ( id );
18735
18736 CREATE INDEX aud_actor_usr_hist_id_idx
18737         ON auditor.actor_usr_history ( id );
18738
18739 CREATE INDEX aud_asset_cn_hist_creator_idx
18740         ON auditor.asset_call_number_history ( creator );
18741
18742 CREATE INDEX aud_asset_cn_hist_editor_idx
18743         ON auditor.asset_call_number_history ( editor );
18744
18745 CREATE INDEX aud_asset_cp_hist_creator_idx
18746         ON auditor.asset_copy_history ( creator );
18747
18748 CREATE INDEX aud_asset_cp_hist_editor_idx
18749         ON auditor.asset_copy_history ( editor );
18750
18751 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18752         ON auditor.biblio_record_entry_history ( creator );
18753
18754 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18755         ON auditor.biblio_record_entry_history ( editor );
18756
18757 CREATE TABLE action.hold_request_note (
18758
18759     id     BIGSERIAL PRIMARY KEY,
18760     hold   BIGINT    NOT NULL REFERENCES action.hold_request (id)
18761                               ON DELETE CASCADE
18762                               DEFERRABLE INITIALLY DEFERRED,
18763     title  TEXT      NOT NULL,
18764     body   TEXT      NOT NULL,
18765     slip   BOOL      NOT NULL DEFAULT FALSE,
18766     pub    BOOL      NOT NULL DEFAULT FALSE,
18767     staff  BOOL      NOT NULL DEFAULT FALSE  -- created by staff
18768
18769 );
18770 CREATE INDEX ahrn_hold_idx ON action.hold_request_note (hold);
18771
18772 -- Tweak a constraint to add a CASCADE
18773
18774 ALTER TABLE action.hold_notification DROP CONSTRAINT hold_notification_hold_fkey;
18775
18776 ALTER TABLE action.hold_notification
18777         ADD CONSTRAINT hold_notification_hold_fkey
18778                 FOREIGN KEY (hold) REFERENCES action.hold_request (id)
18779                 ON DELETE CASCADE
18780                 DEFERRABLE INITIALLY DEFERRED;
18781
18782 CREATE TRIGGER asset_label_sortkey_trigger
18783     BEFORE UPDATE OR INSERT ON asset.call_number
18784     FOR EACH ROW EXECUTE PROCEDURE asset.label_normalizer();
18785
18786 -- Now populate the label_sortkey column via the trigger
18787 UPDATE asset.call_number SET id = id;
18788
18789 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
18790 RETURNS VOID AS $$
18791 --
18792 -- Delete expired circulation bucket items for all users that have
18793 -- a setting for patron.max_reading_list_interval.
18794 --
18795 DECLARE
18796     today        TIMESTAMP WITH TIME ZONE;
18797     threshold    TIMESTAMP WITH TIME ZONE;
18798         usr_setting  RECORD;
18799 BEGIN
18800         SELECT date_trunc( 'day', now() ) INTO today;
18801         --
18802         FOR usr_setting in
18803                 SELECT
18804                         usr,
18805                         value
18806                 FROM
18807                         actor.usr_setting
18808                 WHERE
18809                         name = 'patron.max_reading_list_interval'
18810         LOOP
18811                 --
18812                 -- Make sure the setting is a valid interval
18813                 --
18814                 BEGIN
18815                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
18816                 EXCEPTION
18817                         WHEN OTHERS THEN
18818                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
18819                                         usr_setting.usr, usr_setting.value;
18820                                 CONTINUE;
18821                 END;
18822                 --
18823                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
18824                 --
18825         DELETE FROM container.copy_bucket_item
18826         WHERE
18827                 bucket IN
18828                 (
18829                     SELECT
18830                         id
18831                     FROM
18832                         container.copy_bucket
18833                     WHERE
18834                         owner = usr_setting.usr
18835                         AND btype = 'circ_history'
18836                 )
18837                 AND create_time < threshold;
18838         END LOOP;
18839         --
18840 END;
18841 $$ LANGUAGE plpgsql;
18842
18843 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
18844 /*
18845  * Delete expired circulation bucket items for all users that have
18846  * a setting for patron.max_reading_list_interval.
18847 */
18848 $$;
18849
18850 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
18851          ac_usr IN INTEGER
18852 ) RETURNS VOID AS $$
18853 --
18854 -- Delete old circulation bucket items for a specified user.
18855 -- "Old" means older than the interval specified by a
18856 -- user-level setting, if it is so specified.
18857 --
18858 DECLARE
18859     threshold TIMESTAMP WITH TIME ZONE;
18860 BEGIN
18861         -- Sanity check
18862         IF ac_usr IS NULL THEN
18863                 RETURN;
18864         END IF;
18865         -- Determine the threshold date that defines "old".  Subtract the
18866         -- interval from the system date, then truncate to midnight.
18867         SELECT
18868                 date_trunc( 
18869                         'day',
18870                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
18871                 )
18872         INTO
18873                 threshold
18874         FROM
18875                 actor.usr_setting
18876         WHERE
18877                 usr = ac_usr
18878                 AND name = 'patron.max_reading_list_interval';
18879         --
18880         IF threshold is null THEN
18881                 -- No interval defined; don't delete anything
18882                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
18883                 return;
18884         END IF;
18885         --
18886         -- RAISE NOTICE 'Date threshold: %', threshold;
18887         --
18888         -- Threshold found; do the delete
18889         delete from container.copy_bucket_item
18890         where
18891                 bucket in
18892                 (
18893                         select
18894                                 id
18895                         from
18896                                 container.copy_bucket
18897                         where
18898                                 owner = ac_usr
18899                                 and btype = 'circ_history'
18900                 )
18901                 and create_time < threshold;
18902         --
18903         RETURN;
18904 END;
18905 $$ LANGUAGE plpgsql;
18906
18907 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
18908 /*
18909  * Delete old circulation bucket items for a specified user.
18910  * "Old" means older than the interval specified by a
18911  * user-level setting, if it is so specified.
18912 */
18913 $$;
18914
18915 CREATE OR REPLACE VIEW reporter.hold_request_record AS
18916 SELECT  id,
18917     target,
18918     hold_type,
18919     CASE
18920         WHEN hold_type = 'T'
18921             THEN target
18922         WHEN hold_type = 'I'
18923             THEN (SELECT ssub.record_entry FROM serial.subscription ssub JOIN serial.issuance si ON (si.subscription = ssub.id) WHERE si.id = ahr.target)
18924         WHEN hold_type = 'V'
18925             THEN (SELECT cn.record FROM asset.call_number cn WHERE cn.id = ahr.target)
18926         WHEN hold_type IN ('C','R','F')
18927             THEN (SELECT cn.record FROM asset.call_number cn JOIN asset.copy cp ON (cn.id = cp.call_number) WHERE cp.id = ahr.target)
18928         WHEN hold_type = 'M'
18929             THEN (SELECT mr.master_record FROM metabib.metarecord mr WHERE mr.id = ahr.target)
18930     END AS bib_record
18931   FROM  action.hold_request ahr;
18932
18933 UPDATE  metabib.rec_descriptor
18934   SET   date1=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date1, ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
18935         date2=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date2, ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
18936
18937 -- Change some ints to bigints:
18938
18939 ALTER TABLE container.biblio_record_entry_bucket_item
18940         ALTER COLUMN target_biblio_record_entry SET DATA TYPE bigint;
18941
18942 ALTER TABLE vandelay.queued_bib_record
18943         ALTER COLUMN imported_as SET DATA TYPE bigint;
18944
18945 ALTER TABLE action.hold_copy_map
18946         ALTER COLUMN id SET DATA TYPE bigint;
18947
18948 -- Make due times get pushed to 23:59:59 on insert OR update
18949 DROP TRIGGER IF EXISTS push_due_date_tgr ON action.circulation;
18950 CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.push_circ_due_time();
18951
18952 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath, remove )
18953 SELECT 'upc', 'UPC', '//*[@tag="024" and @ind1="1"]/*[@code="a"]', $r$(?:-|\s.+$)$r$
18954 WHERE NOT EXISTS (
18955     SELECT 1 FROM acq.lineitem_marc_attr_definition WHERE code = 'upc'
18956 );  
18957
18958 -- '@@' auto-placeholder barcode support
18959 CREATE OR REPLACE FUNCTION asset.autogenerate_placeholder_barcode ( ) RETURNS TRIGGER AS $f$
18960 BEGIN
18961         IF NEW.barcode LIKE '@@%' THEN
18962                 NEW.barcode := '@@' || NEW.id;
18963         END IF;
18964         RETURN NEW;
18965 END;
18966 $f$ LANGUAGE PLPGSQL;
18967
18968 CREATE TRIGGER autogenerate_placeholder_barcode
18969         BEFORE INSERT OR UPDATE ON asset.copy
18970         FOR EACH ROW EXECUTE PROCEDURE asset.autogenerate_placeholder_barcode();
18971
18972 COMMIT;
18973
18974 BEGIN;
18975 -- stick loading the staging schema into a separate transaction, as
18976 -- libraries upgrading from earlier stock versions of Evergreen won't have
18977 -- it, but at least one library is known to have it in a pre-2.0 variant
18978 -- setup.
18979 CREATE SCHEMA staging;
18980
18981 CREATE TABLE staging.user_stage (
18982         row_id                  BIGSERIAL PRIMARY KEY,
18983         row_date                            TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
18984         usrname                 TEXT NOT NULL,
18985         profile                 TEXT,
18986         email                   TEXT,
18987         passwd                  TEXT,
18988         ident_type              INT DEFAULT 3,
18989         first_given_name        TEXT,
18990         second_given_name       TEXT,
18991         family_name             TEXT,
18992         day_phone               TEXT,
18993         evening_phone           TEXT,
18994         home_ou                 INT DEFAULT 2,
18995         dob                     TEXT,
18996         complete                BOOL DEFAULT FALSE
18997 );
18998
18999 CREATE TABLE staging.card_stage ( -- for new library barcodes
19000         row_id          BIGSERIAL PRIMARY KEY,
19001         row_date        TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
19002         usrname         TEXT NOT NULL,
19003         barcode         TEXT NOT NULL,
19004         complete        BOOL DEFAULT FALSE
19005 );
19006
19007 CREATE TABLE staging.mailing_address_stage (
19008         row_id          BIGSERIAL PRIMARY KEY,
19009         row_date            TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
19010         usrname         TEXT NOT NULL,  -- user's SIS barcode, for linking
19011         street1         TEXT,
19012         street2         TEXT,
19013         city            TEXT NOT NULL DEFAULT '',
19014         state           TEXT    NOT NULL DEFAULT 'OK',
19015         country         TEXT NOT NULL DEFAULT 'US',
19016         post_code       TEXT NOT NULL,
19017         complete        BOOL DEFAULT FALSE
19018 );
19019
19020 CREATE TABLE staging.billing_address_stage (
19021         LIKE staging.mailing_address_stage INCLUDING DEFAULTS
19022 );
19023
19024 ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
19025
19026 CREATE TABLE staging.statcat_stage (
19027         row_id          BIGSERIAL PRIMARY KEY,
19028         row_date    TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
19029         usrname         TEXT NOT NULL,
19030         statcat         TEXT NOT NULL, -- for things like 'Year of study'
19031         value           TEXT NOT NULL, -- and the value, such as 'Freshman'
19032         complete        BOOL DEFAULT FALSE
19033 );
19034
19035 COMMIT;
19036
19037 -- Some operations go outside of the transaction, because they may
19038 -- legitimately fail.
19039
19040 ALTER TABLE action.reservation_transit_copy
19041         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
19042                 REFERENCES booking.resource(id)
19043                 ON DELETE CASCADE
19044                 DEFERRABLE INITIALLY DEFERRED,
19045         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
19046                 REFERENCES booking.reservation(id)
19047                 ON DELETE SET NULL
19048                 DEFERRABLE INITIALLY DEFERRED;
19049
19050
19051 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
19052 \qecho doesn't exist; ignore those errors if they occur.
19053
19054 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
19055
19056 ALTER TABLE auditor.action_hold_request_history
19057 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
19058
19059 ALTER TABLE auditor.action_hold_request_history
19060 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
19061
19062 \qecho Outside of the transaction: adding indexes that may or may not exist.
19063 \qecho If any of these CREATE INDEX statements fails because the index already
19064 \qecho exists, ignore the failure.
19065
19066 CREATE INDEX acq_picklist_owner_idx   ON acq.picklist ( owner );
19067 CREATE INDEX acq_picklist_creator_idx ON acq.picklist ( creator );
19068 CREATE INDEX acq_picklist_editor_idx  ON acq.picklist ( editor );
19069 CREATE INDEX acq_po_note_creator_idx  ON acq.po_note ( creator );
19070 CREATE INDEX acq_po_note_editor_idx   ON acq.po_note ( editor );
19071 CREATE INDEX fund_alloc_allocator_idx ON acq.fund_allocation ( allocator );
19072 CREATE INDEX li_creator_idx   ON acq.lineitem ( creator );
19073 CREATE INDEX li_editor_idx    ON acq.lineitem ( editor );
19074 CREATE INDEX li_selector_idx  ON acq.lineitem ( selector );
19075 CREATE INDEX li_note_creator_idx  ON acq.lineitem_note ( creator );
19076 CREATE INDEX li_note_editor_idx   ON acq.lineitem_note ( editor );
19077 CREATE INDEX li_usr_attr_def_usr_idx  ON acq.lineitem_usr_attr_definition ( usr );
19078 CREATE INDEX po_editor_idx   ON acq.purchase_order ( editor );
19079 CREATE INDEX po_creator_idx  ON acq.purchase_order ( creator );
19080 CREATE INDEX acq_po_org_name_order_date_idx ON acq.purchase_order( ordering_agency, name, order_date );
19081 CREATE INDEX action_in_house_use_staff_idx  ON action.in_house_use ( staff );
19082 CREATE INDEX action_non_cat_circ_patron_idx ON action.non_cataloged_circulation ( patron );
19083 CREATE INDEX action_non_cat_circ_staff_idx  ON action.non_cataloged_circulation ( staff );
19084 CREATE INDEX action_survey_response_usr_idx ON action.survey_response ( usr );
19085 CREATE INDEX ahn_notify_staff_idx           ON action.hold_notification ( notify_staff );
19086 CREATE INDEX circ_all_usr_idx               ON action.circulation ( usr );
19087 CREATE INDEX circ_circ_staff_idx            ON action.circulation ( circ_staff );
19088 CREATE INDEX circ_checkin_staff_idx         ON action.circulation ( checkin_staff );
19089 CREATE INDEX hold_request_fulfillment_staff_idx ON action.hold_request ( fulfillment_staff );
19090 CREATE INDEX hold_request_requestor_idx     ON action.hold_request ( requestor );
19091 CREATE INDEX non_cat_in_house_use_staff_idx ON action.non_cat_in_house_use ( staff );
19092 CREATE INDEX actor_usr_note_creator_idx     ON actor.usr_note ( creator );
19093 CREATE INDEX actor_usr_standing_penalty_staff_idx ON actor.usr_standing_penalty ( staff );
19094 CREATE INDEX usr_org_unit_opt_in_staff_idx  ON actor.usr_org_unit_opt_in ( staff );
19095 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
19096 CREATE INDEX asset_copy_note_creator_idx    ON asset.copy_note ( creator );
19097 CREATE INDEX cp_creator_idx                 ON asset.copy ( creator );
19098 CREATE INDEX cp_editor_idx                  ON asset.copy ( editor );
19099
19100 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
19101
19102 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
19103
19104 \qecho If the following CREATE INDEX fails, It will be necessary to do some
19105 \qecho data cleanup as described in the comments.
19106
19107 CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
19108     ON authority.record_entry (authority.normalize_heading(marc))
19109         WHERE deleted IS FALSE or deleted = FALSE;
19110
19111 -- If the unique index fails, uncomment the following to create
19112 -- a regular index that will help find the duplicates in a hurry:
19113 --CREATE INDEX by_heading_and_thesaurus
19114 --    ON authority.record_entry (authority.normalize_heading(marc))
19115 --    WHERE deleted IS FALSE or deleted = FALSE
19116 --;
19117
19118 -- Then find the duplicates like so to get an idea of how much
19119 -- pain you're looking at to clean things up:
19120 --SELECT id, authority.normalize_heading(marc)
19121 --    FROM authority.record_entry
19122 --    WHERE authority.normalize_heading(marc) IN (
19123 --        SELECT authority.normalize_heading(marc)
19124 --        FROM authority.record_entry
19125 --        GROUP BY authority.normalize_heading(marc)
19126 --        HAVING COUNT(*) > 1
19127 --    )
19128 --;
19129
19130 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
19131 -- statement succeeds, drop the temporary index to avoid unnecessary
19132 -- duplication:
19133 -- DROP INDEX authority.by_heading_and_thesaurus;
19134
19135 -- 0448.data.trigger.circ.staff_age_to_lost.sql
19136
19137 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
19138     (   'circ.staff_age_to_lost',
19139         'circ', 
19140         oils_i18n_gettext(
19141             'circ.staff_age_to_lost',
19142             'An overdue circulation should be aged to a Lost status.',
19143             'ath',
19144             'description'
19145         ), 
19146         TRUE
19147     )
19148 ;
19149
19150 INSERT INTO action_trigger.event_definition (
19151         id,
19152         active,
19153         owner,
19154         name,
19155         hook,
19156         validator,
19157         reactor,
19158         delay_field
19159     ) VALUES (
19160         36,
19161         FALSE,
19162         1,
19163         'circ.staff_age_to_lost',
19164         'circ.staff_age_to_lost',
19165         'CircIsOverdue',
19166         'MarkItemLost',
19167         'due_date'
19168     )
19169 ;
19170
19171 -- Speed up item-age browse axis (new books feed)
19172 CREATE INDEX cp_create_date  ON asset.copy (create_date);
19173
19174 -- Speed up call number browsing
19175 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;
19176
19177 -- Add MARC::Charset->assume_unicode(1) to improve handling of Unicode characters
19178 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
19179 use strict;
19180 use MARC::Record;
19181 use MARC::File::XML (BinaryEncoding => 'UTF-8');
19182 use MARC::Charset;
19183 use Encode;
19184 use Unicode::Normalize;
19185
19186 MARC::Charset->assume_unicode(1);
19187
19188 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
19189 my $schema = $_TD->{table_schema};
19190 my $rec_id = $_TD->{new}{id};
19191
19192 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
19193 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
19194 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
19195     return;
19196 }
19197
19198 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
19199 my $ou_cni = 'EVRGRN';
19200
19201 my $owner;
19202 if ($schema eq 'serial') {
19203     $owner = $_TD->{new}{owning_lib};
19204 } else {
19205     # are.owner and bre.owner can be null, so fall back to the consortial setting
19206     $owner = $_TD->{new}{owner} || 1;
19207 }
19208
19209 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
19210 if ($ous_rv->{processed}) {
19211     $ou_cni = $ous_rv->{rows}[0]->{value};
19212     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
19213 } else {
19214     # Fall back to the shortname of the OU if there was no OU setting
19215     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
19216     if ($ous_rv->{processed}) {
19217         $ou_cni = $ous_rv->{rows}[0]->{shortname};
19218     }
19219 }
19220
19221 my ($create, $munge) = (0, 0);
19222
19223 my @scns = $record->field('035');
19224
19225 foreach my $id_field ('001', '003') {
19226     my $spec_value;
19227     my @controls = $record->field($id_field);
19228
19229     if ($id_field eq '001') {
19230         $spec_value = $rec_id;
19231     } else {
19232         $spec_value = $ou_cni;
19233     }
19234
19235     # Create the 001/003 if none exist
19236     if (scalar(@controls) == 1) {
19237         # Only one field; check to see if we need to munge it
19238         unless (grep $_->data() eq $spec_value, @controls) {
19239             $munge = 1;
19240         }
19241     } else {
19242         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
19243         foreach my $control (@controls) {
19244             unless ($control->data() eq $spec_value) {
19245                 $record->delete_field($control);
19246             }
19247         }
19248         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
19249         $create = 1;
19250     }
19251 }
19252
19253 # Now, if we need to munge the 001, we will first push the existing 001/003
19254 # into the 035; but if the record did not have one (and one only) 001 and 003
19255 # to begin with, skip this process
19256 if ($munge and not $create) {
19257     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
19258
19259     # Do not create duplicate 035 fields
19260     unless (grep $_->subfield('a') eq $scn, @scns) {
19261         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
19262     }
19263 }
19264
19265 # Set the 001/003 and update the MARC
19266 if ($create or $munge) {
19267     $record->field('001')->data($rec_id);
19268     $record->field('003')->data($ou_cni);
19269
19270     my $xml = $record->as_xml_record();
19271     $xml =~ s/\n//sgo;
19272     $xml =~ s/^<\?xml.+\?\s*>//go;
19273     $xml =~ s/>\s+</></go;
19274     $xml =~ s/\p{Cc}//go;
19275
19276     # Embed a version of OpenILS::Application::AppUtils->entityize()
19277     # to avoid having to set PERL5LIB for PostgreSQL as well
19278
19279     # If we are going to convert non-ASCII characters to XML entities,
19280     # we had better be dealing with a UTF8 string to begin with
19281     $xml = decode_utf8($xml);
19282
19283     $xml = NFC($xml);
19284
19285     # Convert raw ampersands to entities
19286     $xml =~ s/&(?!\S+;)/&amp;/gso;
19287
19288     # Convert Unicode characters to entities
19289     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
19290
19291     $xml =~ s/[\x00-\x1f]//go;
19292     $_TD->{new}{marc} = $xml;
19293
19294     return "MODIFY";
19295 }
19296
19297 return;
19298 $func$ LANGUAGE PLPERLU;
19299
19300 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
19301
19302     use MARC::Record;
19303     use MARC::File::XML (BinaryEncoding => 'UTF-8');
19304     use MARC::Charset;
19305
19306     MARC::Charset->assume_unicode(1);
19307
19308     my $xml = shift;
19309     my $r = MARC::Record->new_from_xml( $xml );
19310
19311     return undef unless ($r);
19312
19313     my $id = shift() || $r->subfield( '901' => 'c' );
19314     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
19315     return undef unless ($id); # We need an ID!
19316
19317     my $tmpl = MARC::Record->new();
19318     $tmpl->encoding( 'UTF-8' );
19319
19320     my @rule_fields;
19321     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
19322
19323         my $tag = $field->tag;
19324         my $i1 = $field->indicator(1);
19325         my $i2 = $field->indicator(2);
19326         my $sf = join '', map { $_->[0] } $field->subfields;
19327         my @data = map { @$_ } $field->subfields;
19328
19329         my @replace_them;
19330
19331         # Map the authority field to bib fields it can control.
19332         if ($tag >= 100 and $tag <= 111) {       # names
19333             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
19334         } elsif ($tag eq '130') {                # uniform title
19335             @replace_them = qw/130 240 440 730 830/;
19336         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
19337             @replace_them = ($tag + 500);
19338         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
19339             @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/;
19340         } else {
19341             next;
19342         }
19343
19344         # Dummy up the bib-side data
19345         $tmpl->append_fields(
19346             map {
19347                 MARC::Field->new( $_, $i1, $i2, @data )
19348             } @replace_them
19349         );
19350
19351         # Construct some 'replace' rules
19352         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
19353     }
19354
19355     # Insert the replace rules into the template
19356     $tmpl->append_fields(
19357         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
19358     );
19359
19360     $xml = $tmpl->as_xml_record;
19361     $xml =~ s/^<\?.+?\?>$//mo;
19362     $xml =~ s/\n//sgo;
19363     $xml =~ s/>\s+</></sgo;
19364
19365     return $xml;
19366
19367 $func$ LANGUAGE PLPERLU;
19368
19369 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT, force_add INT ) RETURNS TEXT AS $_$
19370
19371     use MARC::Record;
19372     use MARC::File::XML (BinaryEncoding => 'UTF-8');
19373     use MARC::Charset;
19374     use strict;
19375
19376     MARC::Charset->assume_unicode(1);
19377
19378     my $target_xml = shift;
19379     my $source_xml = shift;
19380     my $field_spec = shift;
19381     my $force_add = shift || 0;
19382
19383     my $target_r = MARC::Record->new_from_xml( $target_xml );
19384     my $source_r = MARC::Record->new_from_xml( $source_xml );
19385
19386     return $target_xml unless ($target_r && $source_r);
19387
19388     my @field_list = split(',', $field_spec);
19389
19390     my %fields;
19391     for my $f (@field_list) {
19392         $f =~ s/^\s*//; $f =~ s/\s*$//;
19393         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
19394             my $field = $1;
19395             $field =~ s/\s+//;
19396             my $sf = $2;
19397             $sf =~ s/\s+//;
19398             my $match = $3;
19399             $match =~ s/^\s*//; $match =~ s/\s*$//;
19400             $fields{$field} = { sf => [ split('', $sf) ] };
19401             if ($match) {
19402                 my ($msf,$mre) = split('~', $match);
19403                 if (length($msf) > 0 and length($mre) > 0) {
19404                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
19405                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
19406                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
19407                 }
19408             }
19409         }
19410     }
19411
19412     for my $f ( keys %fields) {
19413         if ( @{$fields{$f}{sf}} ) {
19414             for my $from_field ($source_r->field( $f )) {
19415                 my @tos = $target_r->field( $f );
19416                 if (!@tos) {
19417                     next if (exists($fields{$f}{match}) and !$force_add);
19418                     my @new_fields = map { $_->clone } $source_r->field( $f );
19419                     $target_r->insert_fields_ordered( @new_fields );
19420                 } else {
19421                     for my $to_field (@tos) {
19422                         if (exists($fields{$f}{match})) {
19423                             next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
19424                         }
19425                         my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
19426                         $to_field->add_subfields( @new_sf );
19427                     }
19428                 }
19429             }
19430         } else {
19431             my @new_fields = map { $_->clone } $source_r->field( $f );
19432             $target_r->insert_fields_ordered( @new_fields );
19433         }
19434     }
19435
19436     $target_xml = $target_r->as_xml_record;
19437     $target_xml =~ s/^<\?.+?\?>$//mo;
19438     $target_xml =~ s/\n//sgo;
19439     $target_xml =~ s/>\s+</></sgo;
19440
19441     return $target_xml;
19442
19443 $_$ LANGUAGE PLPERLU;
19444
19445 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
19446
19447     use MARC::Record;
19448     use MARC::File::XML (BinaryEncoding => 'UTF-8');
19449     use MARC::Charset;
19450     use strict;
19451
19452     MARC::Charset->assume_unicode(1);
19453
19454     my $xml = shift;
19455     my $r = MARC::Record->new_from_xml( $xml );
19456
19457     return $xml unless ($r);
19458
19459     my $field_spec = shift;
19460     my @field_list = split(',', $field_spec);
19461
19462     my %fields;
19463     for my $f (@field_list) {
19464         $f =~ s/^\s*//; $f =~ s/\s*$//;
19465         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
19466             my $field = $1;
19467             $field =~ s/\s+//;
19468             my $sf = $2;
19469             $sf =~ s/\s+//;
19470             my $match = $3;
19471             $match =~ s/^\s*//; $match =~ s/\s*$//;
19472             $fields{$field} = { sf => [ split('', $sf) ] };
19473             if ($match) {
19474                 my ($msf,$mre) = split('~', $match);
19475                 if (length($msf) > 0 and length($mre) > 0) {
19476                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
19477                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
19478                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
19479                 }
19480             }
19481         }
19482     }
19483
19484     for my $f ( keys %fields) {
19485         for my $to_field ($r->field( $f )) {
19486             if (exists($fields{$f}{match})) {
19487                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
19488             }
19489
19490             if ( @{$fields{$f}{sf}} ) {
19491                 $to_field->delete_subfield(code => $fields{$f}{sf});
19492             } else {
19493                 $r->delete_field( $to_field );
19494             }
19495         }
19496     }
19497
19498     $xml = $r->as_xml_record;
19499     $xml =~ s/^<\?.+?\?>$//mo;
19500     $xml =~ s/\n//sgo;
19501     $xml =~ s/>\s+</></sgo;
19502
19503     return $xml;
19504
19505 $_$ LANGUAGE PLPERLU;
19506
19507 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
19508
19509 use MARC::Record;
19510 use MARC::File::XML (BinaryEncoding => 'UTF-8');
19511 use MARC::Charset;
19512
19513 MARC::Charset->assume_unicode(1);
19514
19515 my $xml = shift;
19516 my $r = MARC::Record->new_from_xml( $xml );
19517
19518 return_next( { tag => 'LDR', value => $r->leader } );
19519
19520 for my $f ( $r->fields ) {
19521         if ($f->is_control_field) {
19522                 return_next({ tag => $f->tag, value => $f->data });
19523         } else {
19524                 for my $s ($f->subfields) {
19525                         return_next({
19526                                 tag      => $f->tag,
19527                                 ind1     => $f->indicator(1),
19528                                 ind2     => $f->indicator(2),
19529                                 subfield => $s->[0],
19530                                 value    => $s->[1]
19531                         });
19532
19533                         if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
19534                                 my $trim = $f->indicator(2) || 0;
19535                                 return_next({
19536                                         tag      => 'tnf',
19537                                         ind1     => $f->indicator(1),
19538                                         ind2     => $f->indicator(2),
19539                                         subfield => 'a',
19540                                         value    => substr( $s->[1], $trim )
19541                                 });
19542                         }
19543                 }
19544         }
19545 }
19546
19547 return undef;
19548
19549 $func$ LANGUAGE PLPERLU;
19550
19551 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
19552
19553 use MARC::Record;
19554 use MARC::File::XML (BinaryEncoding => 'UTF-8');
19555 use MARC::Charset;
19556
19557 MARC::Charset->assume_unicode(1);
19558
19559 my $xml = shift;
19560 my $r = MARC::Record->new_from_xml( $xml );
19561
19562 return_next( { tag => 'LDR', value => $r->leader } );
19563
19564 for my $f ( $r->fields ) {
19565     if ($f->is_control_field) {
19566         return_next({ tag => $f->tag, value => $f->data });
19567     } else {
19568         for my $s ($f->subfields) {
19569             return_next({
19570                 tag      => $f->tag,
19571                 ind1     => $f->indicator(1),
19572                 ind2     => $f->indicator(2),
19573                 subfield => $s->[0],
19574                 value    => $s->[1]
19575             });
19576
19577         }
19578     }
19579 }
19580
19581 return undef;
19582
19583 $func$ LANGUAGE PLPERLU;
19584
19585 \qecho Rewriting authority records to include a 901$c, so that
19586 \qecho they can be used to control bibs.  This may take a while...
19587
19588 UPDATE authority.record_entry SET active = active;
19589
19590 \qecho Upgrade script completed.
19591 \qecho But wait, there's more: please run reingest-1.6-2.0.pl
19592 \qecho in order to create an SQL script to run to partially reindex 
19593 \qecho the bib records; this is required to make the new facet
19594 \qecho sidebar in OPAC search results work and to upgrade the keyword 
19595 \qecho indexes to use the revised NACO normalization routine.