]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/500.view.cross-schema.sql
LP1889113 Staff catalog record holds sticky org select
[Evergreen.git] / Open-ILS / src / sql / Pg / 500.view.cross-schema.sql
1 /*
2  * Copyright (C) 2004-2008  Georgia Public Library Service
3  * Copyright (C) 2007-2008  Equinox Software, Inc.
4  * Mike Rylander <miker@esilibrary.com> 
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  */
17
18 BEGIN;
19
20
21 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
22     SELECT  m.*, COALESCE(c.circ_lib, g.billing_location, r.pickup_lib) AS billing_location
23       FROM  money.materialized_billable_xact_summary m
24             LEFT JOIN action.circulation c ON (c.id = m.id)
25             LEFT JOIN money.grocery g ON (g.id = m.id)
26             LEFT JOIN booking.reservation r ON (r.id = m.id);
27
28 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
29     SELECT * FROM money.billable_xact_summary_location_view
30     WHERE xact_finish IS NULL;
31
32 CREATE OR REPLACE VIEW money.open_usr_summary AS
33     SELECT 
34         usr, 
35         sum(total_paid) AS total_paid, 
36         sum(total_owed) AS total_owed, 
37         sum(balance_owed) AS balance_owed
38     FROM money.materialized_billable_xact_summary
39     WHERE xact_finish IS NULL
40     GROUP BY usr;
41
42 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
43     SELECT 
44         usr,
45         SUM(total_paid) AS total_paid,
46         SUM(total_owed) AS total_owed,
47         SUM(balance_owed) AS balance_owed
48     FROM  money.materialized_billable_xact_summary
49     WHERE xact_type = 'circulation' AND xact_finish IS NULL
50     GROUP BY usr;
51
52
53 -- Not a view, but it's cross-schema..
54 CREATE TABLE config.idl_field_doc (
55     id              BIGSERIAL   PRIMARY KEY,
56     fm_class        TEXT        NOT NULL,
57     field           TEXT        NOT NULL,
58     owner           INT         NOT NULL    REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
59     string          TEXT        NOT NULL
60 );
61 CREATE UNIQUE INDEX idl_field_doc_identity ON config.idl_field_doc (fm_class,field,owner);
62
63
64 CREATE OR REPLACE VIEW config.marc_field_for_ou AS
65 WITH RECURSIVE ou_marc_fields(id, marc_format, marc_record_type, tag,
66                               name, description, fixed_field, repeatable,
67                               mandatory, hidden, owner, depth) AS (
68     -- start with all MARC fields defined by the controlling national standard
69     SELECT id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner, 0
70     FROM config.marc_field
71     WHERE owner IS NULL
72     UNION
73     -- as well as any purely local ones that have been added
74     SELECT id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner, 0
75     FROM config.marc_field
76     WHERE ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag] NOT IN (
77         SELECT ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag]
78         FROM config.marc_field
79         WHERE owner IS NULL
80     )
81   UNION
82     -- and start walking down the org unit hierarchy,
83     -- letting entries for child OUs override field names,
84     -- descriptions, repeatability, and the like.  Letting
85     -- fixed-fieldness be overridable is something that falls
86     -- from the implementation, but is unlikely to be useful
87     SELECT c.id, marc_format, marc_record_type, tag,
88            COALESCE(c.name, p.name),
89            COALESCE(c.description, p.description),
90            COALESCE(c.fixed_field, p.fixed_field),
91            COALESCE(c.repeatable, p.repeatable),
92            COALESCE(c.mandatory, p.mandatory),
93            COALESCE(c.hidden, p.hidden),
94            c.owner,
95            depth + 1
96     FROM config.marc_field c
97     JOIN ou_marc_fields p USING (marc_format, marc_record_type, tag)
98     JOIN actor.org_unit aou ON (c.owner = aou.id)
99     WHERE (aou.parent_ou = p.owner OR (aou.parent_ou IS NULL AND p.owner IS NULL))
100 )
101 SELECT id, marc_format, marc_record_type, tag,
102        name, description, fixed_field, repeatable,
103        mandatory, hidden, owner, depth
104 FROM ou_marc_fields;
105
106 CREATE OR REPLACE VIEW config.marc_subfield_for_ou AS
107 WITH RECURSIVE ou_marc_subfields(id, marc_format, marc_record_type, tag, code,
108                               description, repeatable,
109                               mandatory, hidden, value_ctype, owner, depth) AS (
110     -- start with all MARC subfields defined by the controlling national standard
111     SELECT id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory,
112            hidden, value_ctype, owner, 0
113     FROM config.marc_subfield
114     WHERE owner IS NULL
115     UNION
116     -- as well as any purely local ones that have been added
117     SELECT id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory,
118            hidden, value_ctype, owner, 0
119     FROM config.marc_subfield
120     WHERE ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag, code] NOT IN (
121         SELECT ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag, code]
122         FROM config.marc_subfield
123         WHERE owner IS NULL
124     )
125   UNION
126     -- and start walking down the org unit hierarchy,
127     -- letting entries for child OUs override subfield
128     -- descriptions, repeatability, and the like.
129     SELECT c.id, marc_format, marc_record_type, tag, code,
130            COALESCE(c.description, p.description),
131            COALESCE(c.repeatable, p.repeatable),
132            COALESCE(c.mandatory, p.mandatory),
133            COALESCE(c.hidden, p.hidden),
134            COALESCE(c.value_ctype, p.value_ctype),
135            c.owner,
136            depth + 1
137     FROM config.marc_subfield c
138     JOIN ou_marc_subfields p USING (marc_format, marc_record_type, tag, code)
139     JOIN actor.org_unit aou ON (c.owner = aou.id)
140     WHERE (aou.parent_ou = p.owner OR (aou.parent_ou IS NULL AND p.owner IS NULL))
141 )
142 SELECT id, marc_format, marc_record_type, tag, code,
143        description, repeatable,
144        mandatory, hidden, value_ctype, owner, depth
145 FROM ou_marc_subfields;
146
147 CREATE OR REPLACE FUNCTION config.ou_marc_fields(marc_format INTEGER, marc_record_type config.marc_record_type, ou INTEGER) RETURNS SETOF config.marc_field AS $func$
148     SELECT id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner
149     FROM (
150         SELECT id, marc_format, marc_record_type, tag, name, description,
151               fixed_field, repeatable, mandatory, hidden, owner, depth,
152               MAX(depth) OVER (PARTITION BY marc_format, marc_record_type, tag) AS winner
153         FROM config.marc_field_for_ou
154         WHERE (owner IS NULL
155                OR owner IN (SELECT id FROM actor.org_unit_ancestors($3)))
156         AND   marc_format = $1
157         AND   marc_record_type = $2
158     ) AS s
159     WHERE depth = winner
160     AND not hidden;
161 $func$ LANGUAGE SQL;
162
163 CREATE OR REPLACE FUNCTION config.ou_marc_subfields(marc_format INTEGER, marc_record_type config.marc_record_type, ou INTEGER) RETURNS SETOF config.marc_subfield AS $func$
164     SELECT id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory,
165            hidden, value_ctype, owner
166     FROM (
167         SELECT id, marc_format, marc_record_type, tag, code, description,
168               repeatable, mandatory, hidden, value_ctype, owner, depth,
169               MAX(depth) OVER (PARTITION BY marc_format, marc_record_type, tag, code) AS winner
170         FROM config.marc_subfield_for_ou
171         WHERE (owner IS NULL
172                OR owner IN (SELECT id FROM actor.org_unit_ancestors($3)))
173         AND   marc_format = $1
174         AND   marc_record_type = $2
175     ) AS s
176     WHERE depth = winner
177     AND not hidden;
178 $func$ LANGUAGE SQL;
179
180 COMMIT;