]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/200.schema.acq.sql
Add columns to acq.purchase_order: order_date and name.
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 200.schema.acq.sql
1 DROP SCHEMA acq CASCADE;
2
3 BEGIN;
4
5 CREATE SCHEMA acq;
6
7
8 -- Tables
9
10
11 CREATE TABLE acq.currency_type (
12         code    TEXT PRIMARY KEY,
13         label   TEXT
14 );
15
16 -- Use the ISO 4217 abbreviations for currency codes
17 INSERT INTO acq.currency_type (code, label) VALUES ('USD','US Dollars');
18 INSERT INTO acq.currency_type (code, label) VALUES ('CAN','Canadian Dollars');
19 INSERT INTO acq.currency_type (code, label) VALUES ('EUR','Euros');
20
21 CREATE TABLE acq.exchange_rate (
22     id              SERIAL  PRIMARY KEY,
23     from_currency   TEXT    NOT NULL REFERENCES acq.currency_type (code) DEFERRABLE INITIALLY DEFERRED,
24     to_currency     TEXT    NOT NULL REFERENCES acq.currency_type (code) DEFERRABLE INITIALLY DEFERRED,
25     ratio           NUMERIC NOT NULL,
26     CONSTRAINT exchange_rate_from_to_once UNIQUE (from_currency,to_currency)
27 );
28
29 INSERT INTO acq.exchange_rate (from_currency,to_currency,ratio) VALUES ('USD','CAN',1.2);
30 INSERT INTO acq.exchange_rate (from_currency,to_currency,ratio) VALUES ('USD','EUR',0.5);
31
32 CREATE TABLE acq.provider (
33     id                  SERIAL  PRIMARY KEY,
34     name                TEXT    NOT NULL,
35     owner               INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
36     currency_type       TEXT    NOT NULL REFERENCES acq.currency_type (code) DEFERRABLE INITIALLY DEFERRED,
37     code                TEXT    UNIQUE,
38     holding_tag         TEXT,
39     CONSTRAINT provider_name_once_per_owner UNIQUE (name,owner)
40 );
41
42 CREATE TABLE acq.provider_holding_subfield_map (
43     id          SERIAL  PRIMARY KEY,
44     provider    INT     NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
45     name        TEXT    NOT NULL, -- barcode, price, etc
46     subfield    TEXT    NOT NULL,
47     CONSTRAINT name_once_per_provider UNIQUE (provider,name)
48 );
49
50 CREATE TABLE acq.provider_address (
51         id              SERIAL  PRIMARY KEY,
52         valid           BOOL    NOT NULL DEFAULT TRUE,
53         address_type    TEXT,
54     provider    INT     NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
55         street1         TEXT    NOT NULL,
56         street2         TEXT,
57         city            TEXT    NOT NULL,
58         county          TEXT,
59         state           TEXT    NOT NULL,
60         country         TEXT    NOT NULL,
61         post_code       TEXT    NOT NULL
62 );
63
64 CREATE TABLE acq.provider_contact (
65         id              SERIAL  PRIMARY KEY,
66     provider    INT NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
67     name    TEXT NULL NULL,
68     role    TEXT, -- free-form.. e.g. "our sales guy"
69     email   TEXT,
70     phone   TEXT
71 );
72
73 CREATE TABLE acq.provider_contact_address (
74         id                      SERIAL  PRIMARY KEY,
75         valid                   BOOL    NOT NULL DEFAULT TRUE,
76         address_type    TEXT,
77         contact                 INT         NOT NULL REFERENCES acq.provider_contact (id) DEFERRABLE INITIALLY DEFERRED,
78         street1                 TEXT    NOT NULL,
79         street2                 TEXT,
80         city                    TEXT    NOT NULL,
81         county                  TEXT,
82         state                   TEXT    NOT NULL,
83         country                 TEXT    NOT NULL,
84         post_code               TEXT    NOT NULL
85 );
86
87
88 CREATE TABLE acq.funding_source (
89         id              SERIAL  PRIMARY KEY,
90         name            TEXT    NOT NULL,
91         owner           INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
92         currency_type   TEXT    NOT NULL REFERENCES acq.currency_type (code) DEFERRABLE INITIALLY DEFERRED,
93         code            TEXT    UNIQUE,
94         CONSTRAINT funding_source_name_once_per_owner UNIQUE (name,owner)
95 );
96
97 CREATE TABLE acq.funding_source_credit (
98         id      SERIAL  PRIMARY KEY,
99         funding_source    INT     NOT NULL REFERENCES acq.funding_source (id) DEFERRABLE INITIALLY DEFERRED,
100         amount  NUMERIC NOT NULL,
101         note    TEXT
102 );
103
104 CREATE TABLE acq.fund (
105     id              SERIAL  PRIMARY KEY,
106     org             INT     NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
107     name            TEXT    NOT NULL,
108     year            INT     NOT NULL DEFAULT EXTRACT( YEAR FROM NOW() ),
109     currency_type   TEXT    NOT NULL REFERENCES acq.currency_type (code) DEFERRABLE INITIALLY DEFERRED,
110     code            TEXT,
111     CONSTRAINT name_once_per_org_year UNIQUE (org,name,year),
112     CONSTRAINT code_once_per_org_year UNIQUE (org, code, year)
113 );
114
115 CREATE TABLE acq.fund_debit (
116         id                      SERIAL  PRIMARY KEY,
117         fund                    INT     NOT NULL REFERENCES acq.fund (id) DEFERRABLE INITIALLY DEFERRED,
118         origin_amount           NUMERIC NOT NULL,  -- pre-exchange-rate amount
119         origin_currency_type    TEXT    NOT NULL REFERENCES acq.currency_type (code) DEFERRABLE INITIALLY DEFERRED,
120         amount                  NUMERIC NOT NULL,
121         encumbrance             BOOL    NOT NULL DEFAULT TRUE,
122         debit_type              TEXT    NOT NULL,
123         xfer_destination        INT     REFERENCES acq.fund (id) DEFERRABLE INITIALLY DEFERRED,
124         create_time     TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
125 );
126
127 CREATE TABLE acq.fund_allocation (
128     id          SERIAL  PRIMARY KEY,
129     funding_source        INT     NOT NULL REFERENCES acq.funding_source (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
130     fund        INT     NOT NULL REFERENCES acq.fund (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
131     amount      NUMERIC,
132     percent     NUMERIC CHECK (percent IS NULL OR percent BETWEEN 0.0 AND 100.0),
133     allocator   INT NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
134     note        TEXT,
135         create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
136     CONSTRAINT allocation_amount_or_percent CHECK ((percent IS NULL AND amount IS NOT NULL) OR (percent IS NOT NULL AND amount IS NULL))
137 );
138 CREATE INDEX fund_alloc_allocator_idx ON acq.fund_allocation ( allocator );
139
140 CREATE TABLE acq.picklist (
141         id              SERIAL                          PRIMARY KEY,
142         owner           INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
143         creator         INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
144         editor          INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
145         org_unit        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
146         name            TEXT                            NOT NULL,
147         create_time     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
148         edit_time       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
149         CONSTRAINT name_once_per_owner UNIQUE (name,owner)
150 );
151 CREATE INDEX acq_picklist_owner_idx   ON acq.picklist ( owner );
152 CREATE INDEX acq_picklist_creator_idx ON acq.picklist ( creator );
153 CREATE INDEX acq_picklist_editor_idx  ON acq.picklist ( editor );
154
155 CREATE TABLE acq.purchase_order (
156         id              SERIAL                          PRIMARY KEY,
157         owner           INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
158         creator         INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
159         editor          INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
160         ordering_agency INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
161         create_time     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
162         edit_time       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
163         provider        INT                             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
164         state                   TEXT                                    NOT NULL DEFAULT 'new',
165         order_date              TIMESTAMP WITH TIME ZONE,
166         name                    TEXT                                    NOT NULL
167 );
168 CREATE INDEX po_owner_idx ON acq.purchase_order (owner);
169 CREATE INDEX po_provider_idx ON acq.purchase_order (provider);
170 CREATE INDEX po_state_idx ON acq.purchase_order (state);
171 CREATE INDEX po_creator_idx  ON acq.purchase_order ( creator );
172 CREATE INDEX po_editor_idx   ON acq.purchase_order ( editor );
173 CREATE INDEX acq_po_org_name_order_date_idx ON acq.purchase_order( ordering_agency, name, order_date );
174
175 -- The name should default to the id, as text.  We can't reference a column
176 -- in a DEFAULT clause, so we use a trigger:
177
178 CREATE OR REPLACE FUNCTION acq.purchase_order_name_default () RETURNS TRIGGER 
179 AS $$
180 BEGIN
181         IF NEW.name IS NULL THEN
182                 NEW.name := NEW.id::TEXT;
183         END IF;
184
185         RETURN NEW;
186 END;
187 $$ LANGUAGE PLPGSQL;
188
189 CREATE TRIGGER po_name_default_trg
190   BEFORE INSERT OR UPDATE ON acq.purchase_order
191   FOR EACH ROW EXECUTE PROCEDURE acq.purchase_order_name_default ();
192
193 -- The order name should be unique for a given ordering agency on a given order date
194 -- (truncated to midnight), but only where the order_date is not NULL.  Conceptually
195 -- this rule requires a check constraint with a subquery.  However you can't have a
196 -- subquery in a CHECK constraint, so we fake it with a trigger.
197
198 CREATE OR REPLACE FUNCTION acq.po_org_name_date_unique () RETURNS TRIGGER 
199 AS $$
200 DECLARE
201         collision INT;
202 BEGIN
203         --
204         -- If order_date is not null, then make sure we don't have a collision
205         -- on order_date (truncated to day), org, and name
206         --
207         IF NEW.order_date IS NULL THEN
208                 RETURN NEW;
209         END IF;
210         --
211         -- In the WHERE clause, we compare the order_dates without regard to time of day.
212         -- We use a pair of inequalities instead of comparing truncated dates so that the
213         -- query can do an indexed range scan.
214         --
215         SELECT 1 INTO collision
216         FROM acq.purchase_order
217         WHERE
218                 ordering_agency = NEW.ordering_agency
219                 AND name = NEW.name
220                 AND order_date >= date_trunc( 'day', NEW.order_date )
221                 AND order_date <  date_trunc( 'day', NEW.order_date ) + '1 day'::INTERVAL
222                 AND id <> NEW.id;
223         --
224         IF collision IS NULL THEN
225                 -- okay, no collision
226                 RETURN NEW;
227         ELSE
228                 -- collision; nip it in the bud
229                 RAISE EXCEPTION 'Colliding purchase orders: ordering_agency %, date %, name ''%''',
230                         NEW.ordering_agency, NEW.order_date, NEW.name;
231         END IF;
232 END;
233 $$ LANGUAGE PLPGSQL;
234
235 CREATE TRIGGER po_org_name_date_unique_trg
236   BEFORE INSERT OR UPDATE ON acq.purchase_order
237   FOR EACH ROW EXECUTE PROCEDURE acq.po_org_name_date_unique ();
238
239 CREATE TABLE acq.po_note (
240         id              SERIAL                          PRIMARY KEY,
241         purchase_order  INT                             NOT NULL REFERENCES acq.purchase_order (id) DEFERRABLE INITIALLY DEFERRED,
242         creator         INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
243         editor          INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
244         create_time     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
245         edit_time       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
246         value           TEXT                            NOT NULL
247 );
248 CREATE INDEX po_note_po_idx ON acq.po_note (purchase_order);
249 CREATE INDEX acq_po_note_creator_idx  ON acq.po_note ( creator );
250 CREATE INDEX acq_po_note_editor_idx   ON acq.po_note ( editor );
251
252 CREATE TABLE acq.lineitem (
253         id                  BIGSERIAL                   PRIMARY KEY,
254         creator             INT                         NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
255         editor              INT                         NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
256         selector            INT                         NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
257         provider            INT                         REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
258         purchase_order      INT                         REFERENCES acq.purchase_order (id) DEFERRABLE INITIALLY DEFERRED,
259         picklist            INT                         REFERENCES acq.picklist (id) DEFERRABLE INITIALLY DEFERRED,
260         expected_recv_time  TIMESTAMP WITH TIME ZONE,
261         create_time         TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
262         edit_time           TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
263         marc                TEXT                        NOT NULL,
264         eg_bib_id           INT                         REFERENCES biblio.record_entry (id) DEFERRABLE INITIALLY DEFERRED,
265         source_label        TEXT,
266         item_count          INT                         NOT NULL DEFAULT 0,
267         state               TEXT                        NOT NULL DEFAULT 'new',
268     CONSTRAINT picklist_or_po CHECK (picklist IS NOT NULL OR purchase_order IS NOT NULL)
269 );
270 CREATE INDEX li_po_idx ON acq.lineitem (purchase_order);
271 CREATE INDEX li_pl_idx ON acq.lineitem (picklist);
272 CREATE INDEX li_creator_idx   ON acq.lineitem ( creator );
273 CREATE INDEX li_editor_idx    ON acq.lineitem ( editor );
274 CREATE INDEX li_selector_idx  ON acq.lineitem ( selector );
275
276 CREATE TABLE acq.lineitem_note (
277         id              SERIAL                          PRIMARY KEY,
278         lineitem        INT                             NOT NULL REFERENCES acq.lineitem (id) DEFERRABLE INITIALLY DEFERRED,
279         creator         INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
280         editor          INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
281         create_time     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
282         edit_time       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
283         value           TEXT                            NOT NULL
284 );
285 CREATE INDEX li_note_li_idx ON acq.lineitem_note (lineitem);
286 CREATE INDEX li_note_creator_idx  ON acq.lineitem_note ( creator );
287 CREATE INDEX li_note_editor_idx   ON acq.lineitem_note ( editor );
288
289 CREATE TABLE acq.lineitem_detail (
290     id          BIGSERIAL       PRIMARY KEY,
291     lineitem    INT         NOT NULL REFERENCES acq.lineitem (id) DEFERRABLE INITIALLY DEFERRED,
292     fund        INT         REFERENCES acq.fund (id) DEFERRABLE INITIALLY DEFERRED,
293     fund_debit  INT         REFERENCES acq.fund_debit (id) DEFERRABLE INITIALLY DEFERRED,
294     eg_copy_id  BIGINT      REFERENCES asset.copy (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
295     barcode     TEXT,
296     cn_label    TEXT,
297     note        TEXT,
298     collection_code TEXT,
299     circ_modifier   TEXT    REFERENCES config.circ_modifier (code) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
300     owning_lib  INT         REFERENCES actor.org_unit (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
301     location    INT         REFERENCES asset.copy_location (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
302     recv_time   TIMESTAMP WITH TIME ZONE
303 );
304
305 CREATE INDEX li_detail_li_idx ON acq.lineitem_detail (lineitem);
306
307 CREATE TABLE acq.lineitem_attr_definition (
308         id              BIGSERIAL       PRIMARY KEY,
309         code            TEXT            NOT NULL,
310         description     TEXT            NOT NULL,
311         remove          TEXT            NOT NULL DEFAULT '',
312         ident           BOOL            NOT NULL DEFAULT FALSE
313 );
314
315 CREATE TABLE acq.lineitem_marc_attr_definition (
316         id              BIGINT  PRIMARY KEY DEFAULT NEXTVAL('acq.lineitem_attr_definition_id_seq'),
317         xpath           TEXT            NOT NULL
318 ) INHERITS (acq.lineitem_attr_definition);
319
320 CREATE TABLE acq.lineitem_provider_attr_definition (
321         id              BIGINT  PRIMARY KEY DEFAULT NEXTVAL('acq.lineitem_attr_definition_id_seq'),
322         xpath           TEXT            NOT NULL,
323         provider        INT     NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED
324 ) INHERITS (acq.lineitem_attr_definition);
325
326 CREATE TABLE acq.lineitem_generated_attr_definition (
327         id              BIGINT  PRIMARY KEY DEFAULT NEXTVAL('acq.lineitem_attr_definition_id_seq'),
328         xpath           TEXT            NOT NULL
329 ) INHERITS (acq.lineitem_attr_definition);
330
331 CREATE TABLE acq.lineitem_usr_attr_definition (
332         id              BIGINT  PRIMARY KEY DEFAULT NEXTVAL('acq.lineitem_attr_definition_id_seq'),
333         usr             INT     NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED
334 ) INHERITS (acq.lineitem_attr_definition);
335 CREATE INDEX li_usr_attr_def_usr_idx  ON acq.lineitem_usr_attr_definition ( usr );
336
337 CREATE TABLE acq.lineitem_local_attr_definition (
338         id              BIGINT  PRIMARY KEY DEFAULT NEXTVAL('acq.lineitem_attr_definition_id_seq')
339 ) INHERITS (acq.lineitem_attr_definition);
340
341 CREATE TABLE acq.lineitem_attr (
342         id              BIGSERIAL       PRIMARY KEY,
343         definition      BIGINT          NOT NULL,
344         lineitem        BIGINT          NOT NULL REFERENCES acq.lineitem (id) DEFERRABLE INITIALLY DEFERRED,
345         attr_type       TEXT            NOT NULL,
346         attr_name       TEXT            NOT NULL,
347         attr_value      TEXT            NOT NULL
348 );
349
350 CREATE INDEX li_attr_li_idx ON acq.lineitem_attr (lineitem);
351 CREATE INDEX li_attr_value_idx ON acq.lineitem_attr (attr_value);
352 CREATE INDEX li_attr_definition_idx ON acq.lineitem_attr (definition);
353
354
355 -- Seed data
356
357
358 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('title','Title of work','//*[@tag="245"]/*[contains("abcmnopr",@code)]');
359 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('author','Author of work','//*[@tag="100" or @tag="110" or @tag="113"]/*[contains("ad",@code)]');
360 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('language','Language of work','//*[@tag="240"]/*[@code="l"][1]');
361 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('pagination','Pagination','//*[@tag="300"]/*[@code="a"][1]');
362 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath, remove ) VALUES ('isbn','ISBN','//*[@tag="020"]/*[@code="a"]', $r$(?:-|\s.+$)$r$);
363 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath, remove ) VALUES ('issn','ISSN','//*[@tag="022"]/*[@code="a"]', $r$(?:-|\s.+$)$r$);
364 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('price','Price','//*[@tag="020" or @tag="022"]/*[@code="c"][1]');
365 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('identifier','Identifier','//*[@tag="001"]');
366 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('publisher','Publisher','//*[@tag="260"]/*[@code="b"][1]');
367 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('pubdate','Publication Date','//*[@tag="260"]/*[@code="c"][1]');
368 INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('edition','Edition','//*[@tag="250"]/*[@code="a"][1]');
369
370 INSERT INTO acq.lineitem_local_attr_definition ( code, description ) VALUES ('estimated_price', 'Estimated Price');
371
372
373 CREATE TABLE acq.distribution_formula (
374         id              SERIAL PRIMARY KEY,
375         owner   INT NOT NULL
376                         REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED,
377         name    TEXT NOT NULL,
378         skip_count      INT NOT NULL DEFAULT 0,
379         CONSTRAINT acqdf_name_once_per_owner UNIQUE (name, owner)
380 );
381
382 CREATE TABLE acq.distribution_formula_entry (
383         id                      SERIAL PRIMARY KEY,
384         formula         INTEGER NOT NULL REFERENCES acq.distribution_formula(id)
385                                 ON DELETE CASCADE
386                                 DEFERRABLE INITIALLY DEFERRED,
387         position        INTEGER NOT NULL,
388         item_count      INTEGER NOT NULL,
389         owning_lib      INTEGER REFERENCES actor.org_unit(id)
390                                 DEFERRABLE INITIALLY DEFERRED,
391         location        INTEGER REFERENCES asset.copy_location(id),
392         CONSTRAINT acqdfe_lib_once_per_formula UNIQUE( formula, position ),
393         CONSTRAINT acqdfe_must_be_somewhere
394                                 CHECK( owning_lib IS NOT NULL OR location IS NOT NULL ) 
395 );
396
397 CREATE TABLE acq.fund_tag (
398         id              SERIAL PRIMARY KEY,
399         owner   INT NOT NULL
400                         REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED,
401         name    TEXT NOT NULL,
402         CONSTRAINT acqft_tag_once_per_owner UNIQUE (name, owner)
403 );
404
405 CREATE TABLE acq.fund_tag_map (
406         id                      SERIAL PRIMARY KEY,
407         fund            INTEGER NOT NULL REFERENCES acq.fund(id)
408                                 DEFERRABLE INITIALLY DEFERRED,
409         tag         INTEGER REFERENCES acq.fund_tag(id)
410                                 ON DELETE CASCADE
411                                 DEFERRABLE INITIALLY DEFERRED,
412         CONSTRAINT acqftm_fund_once_per_tag UNIQUE( fund, tag )
413 );
414
415 -- Functions
416
417 CREATE TYPE acq.flat_lineitem_holding_subfield AS (lineitem int, holding int, subfield text, data text);
418 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
419 DECLARE
420     counter INT;
421     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
422 BEGIN
423
424     SELECT  COUNT(*) INTO counter
425       FROM  xpath_table(
426                 'id',
427                 'marc',
428                 'acq.lineitem',
429                 '//*[@tag="' || tag || '"]',
430                 'id=' || lineitem
431             ) as t(i int,c text);
432
433     FOR i IN 1 .. counter LOOP
434         FOR lida IN
435             SELECT  * 
436               FROM  (   SELECT  id,i,t,v
437                           FROM  xpath_table(
438                                     'id',
439                                     'marc',
440                                     'acq.lineitem',
441                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
442                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
443                                     'id=' || lineitem
444                                 ) as t(id int,t text,v text)
445                     )x
446         LOOP
447             RETURN NEXT lida;
448         END LOOP;
449     END LOOP;
450
451     RETURN;
452 END;
453 $$ LANGUAGE PLPGSQL;
454
455 CREATE TYPE acq.flat_lineitem_detail AS (lineitem int, holding int, attr text, data text);
456 CREATE OR REPLACE FUNCTION acq.extract_provider_holding_data ( lineitem_i int ) RETURNS SETOF acq.flat_lineitem_detail AS $$
457 DECLARE
458     prov_i  INT;
459     tag_t   TEXT;
460     lida    acq.flat_lineitem_detail%ROWTYPE;
461 BEGIN
462     SELECT provider INTO prov_i FROM acq.lineitem WHERE id = lineitem_i;
463     IF NOT FOUND THEN RETURN; END IF;
464
465     SELECT holding_tag INTO tag_t FROM acq.provider WHERE id = prov_i;
466     IF NOT FOUND OR tag_t IS NULL THEN RETURN; END IF;
467
468     FOR lida IN
469         SELECT  lineitem_i,
470                 h.holding,
471                 a.name,
472                 h.data
473           FROM  acq.extract_holding_attr_table( lineitem_i, tag_t ) h
474                 JOIN acq.provider_holding_subfield_map a USING (subfield)
475           WHERE a.provider = prov_i
476     LOOP
477         RETURN NEXT lida;
478     END LOOP;
479
480     RETURN;
481 END;
482 $$ LANGUAGE PLPGSQL;
483
484 -- select * from acq.extract_provider_holding_data(699);
485
486 CREATE OR REPLACE FUNCTION public.extract_acq_marc_field ( BIGINT, TEXT, TEXT) RETURNS TEXT AS $$
487         SELECT public.extract_marc_field('acq.lineitem', $1, $2, $3);
488 $$ LANGUAGE SQL;
489
490 /*
491 CREATE OR REPLACE FUNCTION public.extract_bib_marc_field ( BIGINT, TEXT ) RETURNS TEXT AS $$
492         SELECT public.extract_marc_field('biblio.record_entry', $1, $2);
493 $$ LANGUAGE SQL;
494
495 CREATE OR REPLACE FUNCTION public.extract_authority_marc_field ( BIGINT, TEXT ) RETURNS TEXT AS $$
496         SELECT public.extract_marc_field('authority.record_entry', $1, $2);
497 $$ LANGUAGE SQL;
498 */
499 -- For example:
500 -- INSERT INTO acq.lineitem_provider_attr_definition ( provider, code, description, xpath ) VALUES (1,'price','Price','//*[@tag="020" or @tag="022"]/*[@code="a"][1]');
501
502 /*
503 Suggested vendor fields:
504         vendor_price
505         vendor_currency
506         vendor_avail
507         vendor_po
508         vendor_identifier
509 */
510
511 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $$
512 DECLARE
513         value           TEXT;
514         atype           TEXT;
515         prov            INT;
516         adef            RECORD;
517         xpath_string    TEXT;
518 BEGIN
519         FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
520
521                 SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
522
523                 IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
524                         IF (atype = 'lineitem_provider_attr_definition') THEN
525                                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
526                                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
527                         END IF;
528                         
529                         IF (atype = 'lineitem_provider_attr_definition') THEN
530                                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
531                         ELSIF (atype = 'lineitem_marc_attr_definition') THEN
532                                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
533                         ELSIF (atype = 'lineitem_generated_attr_definition') THEN
534                                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
535                         END IF;
536
537                         SELECT extract_acq_marc_field(id, xpath_string, adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
538
539                         IF (value IS NOT NULL AND value <> '') THEN
540                                 INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
541                                         VALUES (NEW.id, adef.id, atype, adef.code, value);
542                         END IF;
543
544                 END IF;
545
546         END LOOP;
547
548         RETURN NULL;
549 END;
550 $$ LANGUAGE PLPGSQL;
551
552 CREATE OR REPLACE FUNCTION public.cleanup_acq_marc ( ) RETURNS TRIGGER AS $$
553 BEGIN
554         IF TG_OP = 'UPDATE' THEN
555                 DELETE FROM acq.lineitem_attr
556                         WHERE lineitem = OLD.id AND attr_type IN ('lineitem_provider_attr_definition', 'lineitem_marc_attr_definition','lineitem_generated_attr_definition');
557                 RETURN NEW;
558         ELSE
559                 DELETE FROM acq.lineitem_attr WHERE lineitem = OLD.id;
560                 RETURN OLD;
561         END IF;
562 END;
563 $$ LANGUAGE PLPGSQL;
564
565 CREATE TRIGGER cleanup_lineitem_trigger
566         BEFORE UPDATE OR DELETE ON acq.lineitem
567         FOR EACH ROW EXECUTE PROCEDURE public.cleanup_acq_marc();
568
569 CREATE TRIGGER ingest_lineitem_trigger
570         AFTER INSERT OR UPDATE ON acq.lineitem
571         FOR EACH ROW EXECUTE PROCEDURE public.ingest_acq_marc();
572
573 CREATE OR REPLACE FUNCTION acq.exchange_ratio ( from_ex TEXT, to_ex TEXT ) RETURNS NUMERIC AS $$
574 DECLARE
575     rat NUMERIC;
576 BEGIN
577     IF from_ex = to_ex THEN
578         RETURN 1.0;
579     END IF;
580
581     SELECT ratio INTO rat FROM acq.exchange_rate WHERE from_currency = from_ex AND to_currency = to_ex;
582
583     IF FOUND THEN
584         RETURN rat;
585     ELSE
586         SELECT ratio INTO rat FROM acq.exchange_rate WHERE from_currency = to_ex AND to_currency = from_ex;
587         IF FOUND THEN
588             RETURN 1.0/rat;
589         END IF;
590     END IF;
591
592     RETURN NULL;
593
594 END;
595 $$ LANGUAGE PLPGSQL;
596
597 CREATE OR REPLACE FUNCTION acq.exchange_ratio ( TEXT, TEXT, NUMERIC ) RETURNS NUMERIC AS $$
598     SELECT $3 * acq.exchange_ratio($1, $2);
599 $$ LANGUAGE SQL;
600
601 CREATE OR REPLACE VIEW acq.funding_source_credit_total AS
602     SELECT  funding_source,
603             SUM(amount) AS amount
604       FROM  acq.funding_source_credit
605       GROUP BY 1;
606
607 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
608     SELECT  funding_source,
609             SUM(amount)::NUMERIC(100,2) AS amount
610       FROM (
611             SELECT  funding_source,
612                     SUM(a.amount)::NUMERIC(100,2) AS amount
613               FROM  acq.fund_allocation a
614               WHERE a.percent IS NULL
615               GROUP BY 1
616                             UNION ALL
617             SELECT  funding_source,
618                     SUM( (SELECT SUM(amount) FROM acq.funding_source_credit c WHERE c.funding_source = a.funding_source) * (a.percent/100.0) )::NUMERIC(100,2) AS amount
619               FROM  acq.fund_allocation a
620               WHERE a.amount IS NULL
621               GROUP BY 1
622         ) x
623       GROUP BY 1;
624
625 CREATE OR REPLACE VIEW acq.funding_source_balance AS
626     SELECT  COALESCE(c.funding_source, a.funding_source) AS funding_source,
627             SUM(COALESCE(c.amount,0.0) - COALESCE(a.amount,0.0))::NUMERIC(100,2) AS amount
628       FROM  acq.funding_source_credit_total c
629             FULL JOIN acq.funding_source_allocation_total a USING (funding_source)
630       GROUP BY 1;
631
632 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
633     SELECT  fund,
634             SUM(amount)::NUMERIC(100,2) AS amount
635       FROM (
636             SELECT  fund,
637                     SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
638               FROM  acq.fund_allocation a
639                     JOIN acq.fund f ON (a.fund = f.id)
640                     JOIN acq.funding_source s ON (a.funding_source = s.id)
641               WHERE a.percent IS NULL
642               GROUP BY 1
643                             UNION ALL
644             SELECT  fund,
645                     SUM( (SELECT SUM(amount) FROM acq.funding_source_credit c WHERE c.funding_source = a.funding_source) * acq.exchange_ratio(s.currency_type, f.currency_type) * (a.percent/100.0) )::NUMERIC(100,2) AS amount
646               FROM  acq.fund_allocation a
647                     JOIN acq.fund f ON (a.fund = f.id)
648                     JOIN acq.funding_source s ON (a.funding_source = s.id)
649               WHERE a.amount IS NULL
650               GROUP BY 1
651         ) x
652       GROUP BY 1;
653
654 CREATE OR REPLACE VIEW acq.fund_debit_total AS
655     SELECT  id AS fund,
656             encumbrance,
657             SUM(amount) AS amount
658       FROM  acq.fund_debit 
659       GROUP BY 1,2;
660
661 CREATE OR REPLACE VIEW acq.fund_encumbrance_total AS
662     SELECT  fund,
663             SUM(amount) AS amount
664       FROM  acq.fund_debit_total
665       WHERE encumbrance IS TRUE
666       GROUP BY 1;
667
668 CREATE OR REPLACE VIEW acq.fund_spent_total AS
669     SELECT  fund,
670             SUM(amount) AS amount
671       FROM  acq.fund_debit_total
672       WHERE encumbrance IS FALSE
673       GROUP BY 1;
674
675 CREATE OR REPLACE VIEW acq.fund_combined_balance AS
676     SELECT  c.fund,
677             c.amount - COALESCE(d.amount,0.0) AS amount
678       FROM  acq.fund_allocation_total c
679             LEFT JOIN acq.fund_debit_total d USING (fund);
680
681 CREATE OR REPLACE VIEW acq.fund_spent_balance AS
682     SELECT  c.fund,
683             c.amount - COALESCE(d.amount,0.0) AS amount
684       FROM  acq.fund_allocation_total c
685             LEFT JOIN acq.fund_spent_total d USING (fund);
686
687 COMMIT;
688
689
690
691