]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/100.circ_matrix.sql
Patron Blocking by lost items and include lost as items out
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 100.circ_matrix.sql
1
2 BEGIN;
3 -- NOTE: current config.item_type should get sip2_media_type and magnetic_media columns
4
5 -- New table needed to handle circ modifiers inside the DB.  Will still require
6 -- central admin.  The circ_modifier column on asset.copy will become an fkey to this table.
7 CREATE TABLE config.circ_modifier (
8     code            TEXT    PRIMARY KEY,
9     name            TEXT    UNIQUE NOT NULL,
10     description        TEXT    NOT NULL,
11     sip2_media_type    TEXT    NOT NULL,
12     magnetic_media     BOOL    NOT NULL DEFAULT TRUE,
13     avg_wait_time      INTERVAL
14 );
15
16 /*
17 -- for instance ...
18 INSERT INTO config.circ_modifier VALUES ( 'DVD', 'DVD', 'um ... DVDs', '001', FALSE );
19 INSERT INTO config.circ_modifier VALUES ( 'VIDEO', 'VIDEO', 'Tapes', '001', TRUE );
20 INSERT INTO config.circ_modifier VALUES ( 'BOOK', 'BOOK', 'Dead tree', '001', FALSE );
21 INSERT INTO config.circ_modifier VALUES ( 'CRAZY_ARL-ATH_SETTING', 'R2R_TAPE', 'reel2reel tape', '007', TRUE );
22 */
23
24 -- But, just to get us started, use this
25 /*
26
27 UPDATE asset.copy SET circ_modifier = UPPER(circ_modifier) WHERE circ_modifier IS NOT NULL AND circ_modifier <> '';
28 UPDATE asset.copy SET circ_modifier = NULL WHERE circ_modifier = '';
29
30 INSERT INTO config.circ_modifier (code, name, description, sip2_media_type )
31     SELECT DISTINCT
32             UPPER(circ_modifier),
33             UPPER(circ_modifier),
34             LOWER(circ_modifier),
35             '001'
36       FROM  asset.copy
37       WHERE circ_modifier IS NOT NULL;
38
39 */
40
41 -- add an fkey pointing to the new circ mod table
42 ALTER TABLE asset.copy ADD CONSTRAINT circ_mod_fkey FOREIGN KEY (circ_modifier) REFERENCES config.circ_modifier (code) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
43
44
45 /**
46  **  Here we define the tables that make up the circ matrix.  Conceptually, this implements
47  **  the "sparse matrix" that everyone talks about, instead of using traditional rules logic.
48  **  Physically, we cut the matrix up into separate tables (almost 3rd normal form!) that handle
49  **  different portions of the matrix.  This wil simplify creation of the UI (I hope), and help the
50  **  developers focus on specific parts of the matrix.
51  **/
52
53 CREATE TABLE config.circ_matrix_matchpoint (
54     id                   SERIAL    PRIMARY KEY,
55     active               BOOL    NOT NULL DEFAULT TRUE,
56     -- Match Fields
57     org_unit             INT        NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,    -- Set to the top OU for the matchpoint applicability range; we can use org_unit_prox to choose the "best"
58     grp                  INT     NOT NULL REFERENCES permission.grp_tree (id) DEFERRABLE INITIALLY DEFERRED,    -- Set to the top applicable group from the group tree; will need descendents and prox functions for filtering
59     circ_modifier        TEXT    REFERENCES config.circ_modifier (code) DEFERRABLE INITIALLY DEFERRED,
60     copy_location        INT     REFERENCES asset.copy_location (id) DEFERRABLE INITIALLY DEFERRED,
61     marc_type            TEXT,
62     marc_form            TEXT,
63     marc_bib_level       TEXT,
64     marc_vr_format       TEXT,
65     copy_circ_lib        INT     REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
66     copy_owning_lib      INT     REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
67     user_home_ou         INT     REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
68     ref_flag             BOOL,
69     juvenile_flag        BOOL,
70     is_renewal           BOOL,
71     usr_age_lower_bound  INTERVAL,
72     usr_age_upper_bound  INTERVAL,
73     item_age             INTERVAL,
74     -- "Result" Fields
75     circulate            BOOL,   -- Hard "can't circ" flag requiring an override
76     duration_rule        INT     REFERENCES config.rule_circ_duration (id) DEFERRABLE INITIALLY DEFERRED,
77     recurring_fine_rule  INT     REFERENCES config.rule_recurring_fine (id) DEFERRABLE INITIALLY DEFERRED,
78     max_fine_rule        INT     REFERENCES config.rule_max_fine (id) DEFERRABLE INITIALLY DEFERRED,
79     hard_due_date        INT     REFERENCES config.hard_due_date (id) DEFERRABLE INITIALLY DEFERRED,
80     renewals             INT,    -- Renewal count override
81     grace_period         INTERVAL,    -- Grace period override
82     script_test          TEXT,                           -- javascript source 
83     total_copy_hold_ratio     FLOAT,
84     available_copy_hold_ratio FLOAT
85 );
86
87 -- Nulls don't count for a constraint match, so we have to coalesce them into something that does.
88 CREATE UNIQUE INDEX ccmm_once_per_paramset ON config.circ_matrix_matchpoint (org_unit, grp, COALESCE(circ_modifier, ''), COALESCE(copy_location::TEXT, ''), COALESCE(marc_type, ''), COALESCE(marc_form, ''), COALESCE(marc_bib_level,''), COALESCE(marc_vr_format, ''), COALESCE(copy_circ_lib::TEXT, ''), COALESCE(copy_owning_lib::TEXT, ''), COALESCE(user_home_ou::TEXT, ''), COALESCE(ref_flag::TEXT, ''), COALESCE(juvenile_flag::TEXT, ''), COALESCE(is_renewal::TEXT, ''), COALESCE(usr_age_lower_bound::TEXT, ''), COALESCE(usr_age_upper_bound::TEXT, ''), COALESCE(item_age::TEXT, '')) WHERE active;
89
90 -- Limit groups for circ counting
91 CREATE TABLE config.circ_limit_group (
92     id          SERIAL  PRIMARY KEY,
93     name        TEXT    UNIQUE NOT NULL,
94     description TEXT
95 );
96
97 -- Limit sets
98 CREATE TABLE config.circ_limit_set (
99     id          SERIAL  PRIMARY KEY,
100     name        TEXT    UNIQUE NOT NULL,
101     owning_lib  INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
102     items_out   INT     NOT NULL, -- Total current active circulations must be less than this. 0 means skip counting (always pass)
103     depth       INT     NOT NULL DEFAULT 0, -- Depth count starts at
104     global      BOOL    NOT NULL DEFAULT FALSE, -- If enabled, include everything below depth, otherwise ancestors/descendants only
105     description TEXT
106 );
107
108 -- Linkage between matchpoints and limit sets
109 CREATE TABLE config.circ_matrix_limit_set_map (
110     id          SERIAL  PRIMARY KEY,
111     matchpoint  INT     NOT NULL REFERENCES config.circ_matrix_matchpoint (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
112     limit_set   INT     NOT NULL REFERENCES config.circ_limit_set (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
113     fallthrough BOOL    NOT NULL DEFAULT FALSE, -- If true fallthrough will grab this rule as it goes along
114     active      BOOL    NOT NULL DEFAULT TRUE,
115     CONSTRAINT circ_limit_set_once_per_matchpoint UNIQUE (matchpoint, limit_set)
116 );
117
118 -- Linkage between limit sets and circ mods
119 CREATE TABLE config.circ_limit_set_circ_mod_map (
120     id          SERIAL  PRIMARY KEY,
121     limit_set   INT     NOT NULL REFERENCES config.circ_limit_set (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
122     circ_mod    TEXT    NOT NULL REFERENCES config.circ_modifier (code) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
123     CONSTRAINT cm_once_per_set UNIQUE (limit_set, circ_mod)
124 );
125
126 -- Linkage between limit sets and copy locations
127 CREATE TABLE config.circ_limit_set_copy_loc_map (
128     id          SERIAL  PRIMARY KEY,
129     limit_set   INT     NOT NULL REFERENCES config.circ_limit_set (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
130     copy_loc    INT     NOT NULL REFERENCES asset.copy_location (id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
131     CONSTRAINT cl_once_per_set UNIQUE (limit_set, copy_loc)
132 );
133
134 -- Linkage between limit sets and limit groups
135 CREATE TABLE config.circ_limit_set_group_map (
136     id          SERIAL  PRIMARY KEY,
137     limit_set    INT     NOT NULL REFERENCES config.circ_limit_set (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
138     limit_group INT     NOT NULL REFERENCES config.circ_limit_group (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
139     check_only  BOOL    NOT NULL DEFAULT FALSE, -- If true, don't accumulate this limit_group for storing with the circulation
140     CONSTRAINT clg_once_per_set UNIQUE (limit_set, limit_group)
141 );
142
143 -- Linkage between limit groups and circulations
144 CREATE TABLE action.circulation_limit_group_map (
145     circ        BIGINT      NOT NULL REFERENCES action.circulation (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
146     limit_group INT         NOT NULL REFERENCES config.circ_limit_group (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
147     PRIMARY KEY (circ, limit_group)
148 );
149
150 -- Function for populating the circ/limit group mappings
151 CREATE OR REPLACE FUNCTION action.link_circ_limit_groups ( BIGINT, INT[] ) RETURNS VOID AS $func$
152     INSERT INTO action.circulation_limit_group_map(circ, limit_group) SELECT $1, id FROM config.circ_limit_group WHERE id IN (SELECT * FROM UNNEST($2));
153 $func$ LANGUAGE SQL;
154
155 CREATE TYPE action.found_circ_matrix_matchpoint AS ( success BOOL, matchpoint config.circ_matrix_matchpoint, buildrows INT[] );
156
157 CREATE OR REPLACE FUNCTION action.find_circ_matrix_matchpoint( context_ou INT, item_object asset.copy, user_object actor.usr, renewal BOOL ) RETURNS action.found_circ_matrix_matchpoint AS $func$
158 DECLARE
159     cn_object       asset.call_number%ROWTYPE;
160     rec_descriptor  metabib.rec_descriptor%ROWTYPE;
161     cur_matchpoint  config.circ_matrix_matchpoint%ROWTYPE;
162     matchpoint      config.circ_matrix_matchpoint%ROWTYPE;
163     weights         config.circ_matrix_weights%ROWTYPE;
164     user_age        INTERVAL;
165     my_item_age     INTERVAL;
166     denominator     NUMERIC(6,2);
167     row_list        INT[];
168     result          action.found_circ_matrix_matchpoint;
169 BEGIN
170     -- Assume failure
171     result.success = false;
172
173     -- Fetch useful data
174     SELECT INTO cn_object       * FROM asset.call_number        WHERE id = item_object.call_number;
175     SELECT INTO rec_descriptor  * FROM metabib.rec_descriptor   WHERE record = cn_object.record;
176
177     -- Pre-generate this so we only calc it once
178     IF user_object.dob IS NOT NULL THEN
179         SELECT INTO user_age age(user_object.dob);
180     END IF;
181
182     -- Ditto
183     SELECT INTO my_item_age age(coalesce(item_object.active_date, now()));
184
185     -- Grab the closest set circ weight setting.
186     SELECT INTO weights cw.*
187       FROM config.weight_assoc wa
188            JOIN config.circ_matrix_weights cw ON (cw.id = wa.circ_weights)
189            JOIN actor.org_unit_ancestors_distance( context_ou ) d ON (wa.org_unit = d.id)
190       WHERE active
191       ORDER BY d.distance
192       LIMIT 1;
193
194     -- No weights? Bad admin! Defaults to handle that anyway.
195     IF weights.id IS NULL THEN
196         weights.grp                 := 11.0;
197         weights.org_unit            := 10.0;
198         weights.circ_modifier       := 5.0;
199         weights.copy_location       := 5.0;
200         weights.marc_type           := 4.0;
201         weights.marc_form           := 3.0;
202         weights.marc_bib_level      := 2.0;
203         weights.marc_vr_format      := 2.0;
204         weights.copy_circ_lib       := 8.0;
205         weights.copy_owning_lib     := 8.0;
206         weights.user_home_ou        := 8.0;
207         weights.ref_flag            := 1.0;
208         weights.juvenile_flag       := 6.0;
209         weights.is_renewal          := 7.0;
210         weights.usr_age_lower_bound := 0.0;
211         weights.usr_age_upper_bound := 0.0;
212         weights.item_age            := 0.0;
213     END IF;
214
215     -- Determine the max (expected) depth (+1) of the org tree and max depth of the permisson tree
216     -- If you break your org tree with funky parenting this may be wrong
217     -- Note: This CTE is duplicated in the find_hold_matrix_matchpoint function, and it may be a good idea to split it off to a function
218     -- We use one denominator for all tree-based checks for when permission groups and org units have the same weighting
219     WITH all_distance(distance) AS (
220             SELECT depth AS distance FROM actor.org_unit_type
221         UNION
222             SELECT distance AS distance FROM permission.grp_ancestors_distance((SELECT id FROM permission.grp_tree WHERE parent IS NULL))
223         )
224     SELECT INTO denominator MAX(distance) + 1 FROM all_distance;
225
226     -- Loop over all the potential matchpoints
227     FOR cur_matchpoint IN
228         SELECT m.*
229           FROM  config.circ_matrix_matchpoint m
230                 /*LEFT*/ JOIN permission.grp_ancestors_distance( user_object.profile ) upgad ON m.grp = upgad.id
231                 /*LEFT*/ JOIN actor.org_unit_ancestors_distance( context_ou ) ctoua ON m.org_unit = ctoua.id
232                 LEFT JOIN actor.org_unit_ancestors_distance( cn_object.owning_lib ) cnoua ON m.copy_owning_lib = cnoua.id
233                 LEFT JOIN actor.org_unit_ancestors_distance( item_object.circ_lib ) iooua ON m.copy_circ_lib = iooua.id
234                 LEFT JOIN actor.org_unit_ancestors_distance( user_object.home_ou  ) uhoua ON m.user_home_ou = uhoua.id
235           WHERE m.active
236                 -- Permission Groups
237              -- AND (m.grp                      IS NULL OR upgad.id IS NOT NULL) -- Optional Permission Group?
238                 -- Org Units
239              -- AND (m.org_unit                 IS NULL OR ctoua.id IS NOT NULL) -- Optional Org Unit?
240                 AND (m.copy_owning_lib          IS NULL OR cnoua.id IS NOT NULL)
241                 AND (m.copy_circ_lib            IS NULL OR iooua.id IS NOT NULL)
242                 AND (m.user_home_ou             IS NULL OR uhoua.id IS NOT NULL)
243                 -- Circ Type
244                 AND (m.is_renewal               IS NULL OR m.is_renewal = renewal)
245                 -- Static User Checks
246                 AND (m.juvenile_flag            IS NULL OR m.juvenile_flag = user_object.juvenile)
247                 AND (m.usr_age_lower_bound      IS NULL OR (user_age IS NOT NULL AND m.usr_age_lower_bound < user_age))
248                 AND (m.usr_age_upper_bound      IS NULL OR (user_age IS NOT NULL AND m.usr_age_upper_bound > user_age))
249                 -- Static Item Checks
250                 AND (m.circ_modifier            IS NULL OR m.circ_modifier = item_object.circ_modifier)
251                 AND (m.copy_location            IS NULL OR m.copy_location = item_object.location)
252                 AND (m.marc_type                IS NULL OR m.marc_type = COALESCE(item_object.circ_as_type, rec_descriptor.item_type))
253                 AND (m.marc_form                IS NULL OR m.marc_form = rec_descriptor.item_form)
254                 AND (m.marc_bib_level           IS NULL OR m.marc_bib_level = rec_descriptor.bib_level)
255                 AND (m.marc_vr_format           IS NULL OR m.marc_vr_format = rec_descriptor.vr_format)
256                 AND (m.ref_flag                 IS NULL OR m.ref_flag = item_object.ref)
257                 AND (m.item_age                 IS NULL OR (my_item_age IS NOT NULL AND m.item_age > my_item_age))
258           ORDER BY
259                 -- Permission Groups
260                 CASE WHEN upgad.distance        IS NOT NULL THEN 2^(2*weights.grp - (upgad.distance/denominator)) ELSE 0.0 END +
261                 -- Org Units
262                 CASE WHEN ctoua.distance        IS NOT NULL THEN 2^(2*weights.org_unit - (ctoua.distance/denominator)) ELSE 0.0 END +
263                 CASE WHEN cnoua.distance        IS NOT NULL THEN 2^(2*weights.copy_owning_lib - (cnoua.distance/denominator)) ELSE 0.0 END +
264                 CASE WHEN iooua.distance        IS NOT NULL THEN 2^(2*weights.copy_circ_lib - (iooua.distance/denominator)) ELSE 0.0 END +
265                 CASE WHEN uhoua.distance        IS NOT NULL THEN 2^(2*weights.user_home_ou - (uhoua.distance/denominator)) ELSE 0.0 END +
266                 -- Circ Type                    -- Note: 4^x is equiv to 2^(2*x)
267                 CASE WHEN m.is_renewal          IS NOT NULL THEN 4^weights.is_renewal ELSE 0.0 END +
268                 -- Static User Checks
269                 CASE WHEN m.juvenile_flag       IS NOT NULL THEN 4^weights.juvenile_flag ELSE 0.0 END +
270                 CASE WHEN m.usr_age_lower_bound IS NOT NULL THEN 4^weights.usr_age_lower_bound ELSE 0.0 END +
271                 CASE WHEN m.usr_age_upper_bound IS NOT NULL THEN 4^weights.usr_age_upper_bound ELSE 0.0 END +
272                 -- Static Item Checks
273                 CASE WHEN m.circ_modifier       IS NOT NULL THEN 4^weights.circ_modifier ELSE 0.0 END +
274                 CASE WHEN m.copy_location       IS NOT NULL THEN 4^weights.copy_location ELSE 0.0 END +
275                 CASE WHEN m.marc_type           IS NOT NULL THEN 4^weights.marc_type ELSE 0.0 END +
276                 CASE WHEN m.marc_form           IS NOT NULL THEN 4^weights.marc_form ELSE 0.0 END +
277                 CASE WHEN m.marc_vr_format      IS NOT NULL THEN 4^weights.marc_vr_format ELSE 0.0 END +
278                 CASE WHEN m.ref_flag            IS NOT NULL THEN 4^weights.ref_flag ELSE 0.0 END +
279                 -- Item age has a slight adjustment to weight based on value.
280                 -- This should ensure that a shorter age limit comes first when all else is equal.
281                 -- NOTE: This assumes that intervals will normally be in days.
282                 CASE WHEN m.item_age            IS NOT NULL THEN 4^weights.item_age - 1 + 86400/EXTRACT(EPOCH FROM m.item_age) ELSE 0.0 END DESC,
283                 -- Final sort on id, so that if two rules have the same sorting in the previous sort they have a defined order
284                 -- This prevents "we changed the table order by updating a rule, and we started getting different results"
285                 m.id LOOP
286
287         -- Record the full matching row list
288         row_list := row_list || cur_matchpoint.id;
289
290         -- No matchpoint yet?
291         IF matchpoint.id IS NULL THEN
292             -- Take the entire matchpoint as a starting point
293             matchpoint := cur_matchpoint;
294             CONTINUE; -- No need to look at this row any more.
295         END IF;
296
297         -- Incomplete matchpoint?
298         IF matchpoint.circulate IS NULL THEN
299             matchpoint.circulate := cur_matchpoint.circulate;
300         END IF;
301         IF matchpoint.duration_rule IS NULL THEN
302             matchpoint.duration_rule := cur_matchpoint.duration_rule;
303         END IF;
304         IF matchpoint.recurring_fine_rule IS NULL THEN
305             matchpoint.recurring_fine_rule := cur_matchpoint.recurring_fine_rule;
306         END IF;
307         IF matchpoint.max_fine_rule IS NULL THEN
308             matchpoint.max_fine_rule := cur_matchpoint.max_fine_rule;
309         END IF;
310         IF matchpoint.hard_due_date IS NULL THEN
311             matchpoint.hard_due_date := cur_matchpoint.hard_due_date;
312         END IF;
313         IF matchpoint.total_copy_hold_ratio IS NULL THEN
314             matchpoint.total_copy_hold_ratio := cur_matchpoint.total_copy_hold_ratio;
315         END IF;
316         IF matchpoint.available_copy_hold_ratio IS NULL THEN
317             matchpoint.available_copy_hold_ratio := cur_matchpoint.available_copy_hold_ratio;
318         END IF;
319         IF matchpoint.renewals IS NULL THEN
320             matchpoint.renewals := cur_matchpoint.renewals;
321         END IF;
322         IF matchpoint.grace_period IS NULL THEN
323             matchpoint.grace_period := cur_matchpoint.grace_period;
324         END IF;
325     END LOOP;
326
327     -- Check required fields
328     IF matchpoint.circulate             IS NOT NULL AND
329        matchpoint.duration_rule         IS NOT NULL AND
330        matchpoint.recurring_fine_rule   IS NOT NULL AND
331        matchpoint.max_fine_rule         IS NOT NULL THEN
332         -- All there? We have a completed match.
333         result.success := true;
334     END IF;
335
336     -- Include the assembled matchpoint, even if it isn't complete
337     result.matchpoint := matchpoint;
338
339     -- Include (for debugging) the full list of matching rows
340     result.buildrows := row_list;
341
342     -- Hand the result back to caller
343     RETURN result;
344 END;
345 $func$ LANGUAGE plpgsql;
346
347 -- Helper function - For manual calling, it can be easier to pass in IDs instead of objects
348 CREATE OR REPLACE FUNCTION action.find_circ_matrix_matchpoint( context_ou INT, match_item BIGINT, match_user INT, renewal BOOL ) RETURNS SETOF action.found_circ_matrix_matchpoint AS $func$
349 DECLARE
350     item_object asset.copy%ROWTYPE;
351     user_object actor.usr%ROWTYPE;
352 BEGIN
353     SELECT INTO item_object * FROM asset.copy   WHERE id = match_item;
354     SELECT INTO user_object * FROM actor.usr    WHERE id = match_user;
355
356     RETURN QUERY SELECT * FROM action.find_circ_matrix_matchpoint( context_ou, item_object, user_object, renewal );
357 END;
358 $func$ LANGUAGE plpgsql;
359
360 CREATE TYPE action.hold_stats AS (
361     hold_count              INT,
362     copy_count              INT,
363     available_count         INT,
364     total_copy_ratio        FLOAT,
365     available_copy_ratio    FLOAT
366 );
367
368 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
369 DECLARE
370     output          action.hold_stats%ROWTYPE;
371     hold_count      INT := 0;
372     copy_count      INT := 0;
373     available_count INT := 0;
374     hold_map_data   RECORD;
375 BEGIN
376
377     output.hold_count := 0;
378     output.copy_count := 0;
379     output.available_count := 0;
380
381     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
382       FROM  action.hold_copy_map m
383             JOIN action.hold_request h ON (m.hold = h.id)
384       WHERE m.target_copy = copy_id
385             AND NOT h.frozen;
386
387     output.hold_count := hold_count;
388
389     IF output.hold_count > 0 THEN
390         FOR hold_map_data IN
391             SELECT  DISTINCT m.target_copy,
392                     acp.status
393               FROM  action.hold_copy_map m
394                     JOIN asset.copy acp ON (m.target_copy = acp.id)
395                     JOIN action.hold_request h ON (m.hold = h.id)
396               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
397         LOOP
398             output.copy_count := output.copy_count + 1;
399             IF hold_map_data.status IN (0,7,12) THEN
400                 output.available_count := output.available_count + 1;
401             END IF;
402         END LOOP;
403         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
404         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
405
406     END IF;
407
408     RETURN output;
409
410 END;
411 $func$ LANGUAGE PLPGSQL;
412
413 CREATE TYPE action.circ_matrix_test_result AS ( success BOOL, fail_part TEXT, buildrows INT[], matchpoint INT, circulate BOOL, duration_rule INT, recurring_fine_rule INT, max_fine_rule INT, hard_due_date INT, renewals INT, grace_period INTERVAL, limit_groups INT[] );
414 CREATE OR REPLACE FUNCTION action.item_user_circ_test( circ_ou INT, match_item BIGINT, match_user INT, renewal BOOL ) RETURNS SETOF action.circ_matrix_test_result AS $func$
415 DECLARE
416     user_object             actor.usr%ROWTYPE;
417     standing_penalty        config.standing_penalty%ROWTYPE;
418     item_object             asset.copy%ROWTYPE;
419     item_status_object      config.copy_status%ROWTYPE;
420     item_location_object    asset.copy_location%ROWTYPE;
421     result                  action.circ_matrix_test_result;
422     circ_test               action.found_circ_matrix_matchpoint;
423     circ_matchpoint         config.circ_matrix_matchpoint%ROWTYPE;
424     circ_limit_set          config.circ_limit_set%ROWTYPE;
425     hold_ratio              action.hold_stats%ROWTYPE;
426     penalty_type            TEXT;
427     items_out               INT;
428     context_org_list        INT[];
429     done                    BOOL := FALSE;
430 BEGIN
431     -- Assume success unless we hit a failure condition
432     result.success := TRUE;
433
434     -- Need user info to look up matchpoints
435     SELECT INTO user_object * FROM actor.usr WHERE id = match_user AND NOT deleted;
436
437     -- (Insta)Fail if we couldn't find the user
438     IF user_object.id IS NULL THEN
439         result.fail_part := 'no_user';
440         result.success := FALSE;
441         done := TRUE;
442         RETURN NEXT result;
443         RETURN;
444     END IF;
445
446     -- Need item info to look up matchpoints
447     SELECT INTO item_object * FROM asset.copy WHERE id = match_item AND NOT deleted;
448
449     -- (Insta)Fail if we couldn't find the item 
450     IF item_object.id IS NULL THEN
451         result.fail_part := 'no_item';
452         result.success := FALSE;
453         done := TRUE;
454         RETURN NEXT result;
455         RETURN;
456     END IF;
457
458     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, item_object, user_object, renewal);
459
460     circ_matchpoint             := circ_test.matchpoint;
461     result.matchpoint           := circ_matchpoint.id;
462     result.circulate            := circ_matchpoint.circulate;
463     result.duration_rule        := circ_matchpoint.duration_rule;
464     result.recurring_fine_rule  := circ_matchpoint.recurring_fine_rule;
465     result.max_fine_rule        := circ_matchpoint.max_fine_rule;
466     result.hard_due_date        := circ_matchpoint.hard_due_date;
467     result.renewals             := circ_matchpoint.renewals;
468     result.grace_period         := circ_matchpoint.grace_period;
469     result.buildrows            := circ_test.buildrows;
470
471     -- (Insta)Fail if we couldn't find a matchpoint
472     IF circ_test.success = false THEN
473         result.fail_part := 'no_matchpoint';
474         result.success := FALSE;
475         done := TRUE;
476         RETURN NEXT result;
477         RETURN;
478     END IF;
479
480     -- All failures before this point are non-recoverable
481     -- Below this point are possibly overridable failures
482
483     -- Fail if the user is barred
484     IF user_object.barred IS TRUE THEN
485         result.fail_part := 'actor.usr.barred';
486         result.success := FALSE;
487         done := TRUE;
488         RETURN NEXT result;
489     END IF;
490
491     -- Fail if the item can't circulate
492     IF item_object.circulate IS FALSE THEN
493         result.fail_part := 'asset.copy.circulate';
494         result.success := FALSE;
495         done := TRUE;
496         RETURN NEXT result;
497     END IF;
498
499     -- Fail if the item isn't in a circulateable status on a non-renewal
500     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN 
501         result.fail_part := 'asset.copy.status';
502         result.success := FALSE;
503         done := TRUE;
504         RETURN NEXT result;
505     -- Alternately, fail if the item isn't checked out on a renewal
506     ELSIF renewal AND item_object.status <> 1 THEN
507         result.fail_part := 'asset.copy.status';
508         result.success := FALSE;
509         done := TRUE;
510         RETURN NEXT result;
511     END IF;
512
513     -- Fail if the item can't circulate because of the shelving location
514     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
515     IF item_location_object.circulate IS FALSE THEN
516         result.fail_part := 'asset.copy_location.circulate';
517         result.success := FALSE;
518         done := TRUE;
519         RETURN NEXT result;
520     END IF;
521
522     -- Use Circ OU for penalties and such
523     SELECT INTO context_org_list ARRAY_AGG(id) FROM actor.org_unit_full_path( circ_ou );
524
525     IF renewal THEN
526         penalty_type = '%RENEW%';
527     ELSE
528         penalty_type = '%CIRC%';
529     END IF;
530
531     FOR standing_penalty IN
532         SELECT  DISTINCT csp.*
533           FROM  actor.usr_standing_penalty usp
534                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
535           WHERE usr = match_user
536                 AND usp.org_unit IN ( SELECT * FROM unnest(context_org_list) )
537                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
538                 AND csp.block_list LIKE penalty_type LOOP
539
540         result.fail_part := standing_penalty.name;
541         result.success := FALSE;
542         done := TRUE;
543         RETURN NEXT result;
544     END LOOP;
545
546     -- Fail if the test is set to hard non-circulating
547     IF circ_matchpoint.circulate IS FALSE THEN
548         result.fail_part := 'config.circ_matrix_test.circulate';
549         result.success := FALSE;
550         done := TRUE;
551         RETURN NEXT result;
552     END IF;
553
554     -- Fail if the total copy-hold ratio is too low
555     IF circ_matchpoint.total_copy_hold_ratio IS NOT NULL THEN
556         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
557         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_matchpoint.total_copy_hold_ratio THEN
558             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
559             result.success := FALSE;
560             done := TRUE;
561             RETURN NEXT result;
562         END IF;
563     END IF;
564
565     -- Fail if the available copy-hold ratio is too low
566     IF circ_matchpoint.available_copy_hold_ratio IS NOT NULL THEN
567         IF hold_ratio.hold_count IS NULL THEN
568             SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
569         END IF;
570         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_matchpoint.available_copy_hold_ratio THEN
571             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
572             result.success := FALSE;
573             done := TRUE;
574             RETURN NEXT result;
575         END IF;
576     END IF;
577
578     -- Fail if the user has too many items out by defined limit sets
579     FOR circ_limit_set IN SELECT ccls.* FROM config.circ_limit_set ccls
580       JOIN config.circ_matrix_limit_set_map ccmlsm ON ccmlsm.limit_set = ccls.id
581       WHERE ccmlsm.active AND ( ccmlsm.matchpoint = circ_matchpoint.id OR
582         ( ccmlsm.matchpoint IN (SELECT * FROM unnest(result.buildrows)) AND ccmlsm.fallthrough )
583         ) LOOP
584             IF circ_limit_set.items_out > 0 AND NOT renewal THEN
585                 SELECT INTO context_org_list ARRAY_AGG(aou.id)
586                   FROM actor.org_unit_full_path( circ_ou ) aou
587                     JOIN actor.org_unit_type aout ON aou.ou_type = aout.id
588                   WHERE aout.depth >= circ_limit_set.depth;
589                 IF circ_limit_set.global THEN
590                     WITH RECURSIVE descendant_depth AS (
591                         SELECT  ou.id,
592                             ou.parent_ou
593                         FROM  actor.org_unit ou
594                         WHERE ou.id IN (SELECT * FROM unnest(context_org_list))
595                             UNION
596                         SELECT  ou.id,
597                             ou.parent_ou
598                         FROM  actor.org_unit ou
599                             JOIN descendant_depth ot ON (ot.id = ou.parent_ou)
600                     ) SELECT INTO context_org_list ARRAY_AGG(ou.id) FROM actor.org_unit ou JOIN descendant_depth USING (id);
601                 END IF;
602                 SELECT INTO items_out COUNT(DISTINCT circ.id)
603                   FROM action.circulation circ
604                     JOIN asset.copy copy ON (copy.id = circ.target_copy)
605                     LEFT JOIN action.circulation_limit_group_map aclgm ON (circ.id = aclgm.circ)
606                   WHERE circ.usr = match_user
607                     AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list))
608                     AND circ.checkin_time IS NULL
609                     AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
610                     AND (copy.circ_modifier IN (SELECT circ_mod FROM config.circ_limit_set_circ_mod_map WHERE limit_set = circ_limit_set.id)
611                         OR copy.location IN (SELECT copy_loc FROM config.circ_limit_set_copy_loc_map WHERE limit_set = circ_limit_set.id)
612                         OR aclgm.limit_group IN (SELECT limit_group FROM config.circ_limit_set_group_map WHERE limit_set = circ_limit_set.id)
613                     );
614                 IF items_out >= circ_limit_set.items_out THEN
615                     result.fail_part := 'config.circ_matrix_circ_mod_test';
616                     result.success := FALSE;
617                     done := TRUE;
618                     RETURN NEXT result;
619                 END IF;
620             END IF;
621             SELECT INTO result.limit_groups result.limit_groups || ARRAY_AGG(limit_group) FROM config.circ_limit_set_group_map WHERE limit_set = circ_limit_set.id AND NOT check_only;
622     END LOOP;
623
624     -- If we passed everything, return the successful matchpoint
625     IF NOT done THEN
626         RETURN NEXT result;
627     END IF;
628
629     RETURN;
630 END;
631 $func$ LANGUAGE plpgsql;
632
633 CREATE OR REPLACE FUNCTION action.item_user_circ_test( INT, BIGINT, INT ) RETURNS SETOF action.circ_matrix_test_result AS $func$
634     SELECT * FROM action.item_user_circ_test( $1, $2, $3, FALSE );
635 $func$ LANGUAGE SQL;
636
637 CREATE OR REPLACE FUNCTION action.item_user_renew_test( INT, BIGINT, INT ) RETURNS SETOF action.circ_matrix_test_result AS $func$
638     SELECT * FROM action.item_user_circ_test( $1, $2, $3, TRUE );
639 $func$ LANGUAGE SQL;
640
641
642 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
643 DECLARE
644     user_object         actor.usr%ROWTYPE;
645     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
646     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
647     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
648     max_fines           permission.grp_penalty_threshold%ROWTYPE;
649     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
650     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
651     max_lost            permission.grp_penalty_threshold%ROWTYPE;
652     tmp_grp             INT;
653     items_overdue       INT;
654     items_out           INT;
655     items_lost          INT;
656     context_org_list    INT[];
657     current_fines        NUMERIC(8,2) := 0.0;
658     tmp_fines            NUMERIC(8,2);
659     tmp_groc            RECORD;
660     tmp_circ            RECORD;
661     tmp_org             actor.org_unit%ROWTYPE;
662     tmp_penalty         config.standing_penalty%ROWTYPE;
663     tmp_depth           INTEGER;
664 BEGIN
665     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
666
667     -- Max fines
668     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
669
670     -- Fail if the user has a high fine balance
671     LOOP
672         tmp_grp := user_object.profile;
673         LOOP
674             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
675
676             IF max_fines.threshold IS NULL THEN
677                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
678             ELSE
679                 EXIT;
680             END IF;
681
682             IF tmp_grp IS NULL THEN
683                 EXIT;
684             END IF;
685         END LOOP;
686
687         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
688             EXIT;
689         END IF;
690
691         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
692
693     END LOOP;
694
695     IF max_fines.threshold IS NOT NULL THEN
696
697         RETURN QUERY
698             SELECT  *
699               FROM  actor.usr_standing_penalty
700               WHERE usr = match_user
701                     AND org_unit = max_fines.org_unit
702                     AND (stop_date IS NULL or stop_date > NOW())
703                     AND standing_penalty = 1;
704
705         SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( max_fines.org_unit );
706
707         SELECT  SUM(f.balance_owed) INTO current_fines
708           FROM  money.materialized_billable_xact_summary f
709                 JOIN (
710                     SELECT  r.id
711                       FROM  booking.reservation r
712                       WHERE r.usr = match_user
713                             AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list))
714                             AND xact_finish IS NULL
715                                 UNION ALL
716                     SELECT  g.id
717                       FROM  money.grocery g
718                       WHERE g.usr = match_user
719                             AND g.billing_location IN (SELECT * FROM unnest(context_org_list))
720                             AND xact_finish IS NULL
721                                 UNION ALL
722                     SELECT  circ.id
723                       FROM  action.circulation circ
724                       WHERE circ.usr = match_user
725                             AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list))
726                             AND xact_finish IS NULL ) l USING (id);
727
728         IF current_fines >= max_fines.threshold THEN
729             new_sp_row.usr := match_user;
730             new_sp_row.org_unit := max_fines.org_unit;
731             new_sp_row.standing_penalty := 1;
732             RETURN NEXT new_sp_row;
733         END IF;
734     END IF;
735
736     -- Start over for max overdue
737     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
738
739     -- Fail if the user has too many overdue items
740     LOOP
741         tmp_grp := user_object.profile;
742         LOOP
743
744             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
745
746             IF max_overdue.threshold IS NULL THEN
747                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
748             ELSE
749                 EXIT;
750             END IF;
751
752             IF tmp_grp IS NULL THEN
753                 EXIT;
754             END IF;
755         END LOOP;
756
757         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
758             EXIT;
759         END IF;
760
761         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
762
763     END LOOP;
764
765     IF max_overdue.threshold IS NOT NULL THEN
766
767         RETURN QUERY
768             SELECT  *
769               FROM  actor.usr_standing_penalty
770               WHERE usr = match_user
771                     AND org_unit = max_overdue.org_unit
772                     AND (stop_date IS NULL or stop_date > NOW())
773                     AND standing_penalty = 2;
774
775         SELECT  INTO items_overdue COUNT(*)
776           FROM  action.circulation circ
777                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
778           WHERE circ.usr = match_user
779             AND circ.checkin_time IS NULL
780             AND circ.due_date < NOW()
781             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
782
783         IF items_overdue >= max_overdue.threshold::INT THEN
784             new_sp_row.usr := match_user;
785             new_sp_row.org_unit := max_overdue.org_unit;
786             new_sp_row.standing_penalty := 2;
787             RETURN NEXT new_sp_row;
788         END IF;
789     END IF;
790
791     -- Start over for max out
792     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
793
794     -- Fail if the user has too many checked out items
795     LOOP
796         tmp_grp := user_object.profile;
797         LOOP
798             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
799
800             IF max_items_out.threshold IS NULL THEN
801                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
802             ELSE
803                 EXIT;
804             END IF;
805
806             IF tmp_grp IS NULL THEN
807                 EXIT;
808             END IF;
809         END LOOP;
810
811         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
812             EXIT;
813         END IF;
814
815         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
816
817     END LOOP;
818
819
820     -- Fail if the user has too many items checked out
821     IF max_items_out.threshold IS NOT NULL THEN
822
823         RETURN QUERY
824             SELECT  *
825               FROM  actor.usr_standing_penalty
826               WHERE usr = match_user
827                     AND org_unit = max_items_out.org_unit
828                     AND (stop_date IS NULL or stop_date > NOW())
829                     AND standing_penalty = 3;
830
831         SELECT  INTO items_out COUNT(*)
832           FROM  action.circulation circ
833                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
834           WHERE circ.usr = match_user
835                 AND circ.checkin_time IS NULL
836                 AND (circ.stop_fines IN (
837                     SELECT 'MAXFINES'::TEXT
838                     UNION ALL
839                     SELECT 'LONGOVERDUE'::TEXT
840                     UNION ALL
841                     SELECT 'LOST'::TEXT
842                     WHERE 'true' ILIKE
843                     (
844                         SELECT CASE
845                             WHEN (SELECT value FROM actor.org_unit_ancestor_setting('circ.tally_lost', circ.circ_lib)) ILIKE 'true' THEN 'true'
846                             ELSE 'false'
847                         END
848                     )
849                     UNION ALL
850                     SELECT 'CLAIMSRETURNED'::TEXT
851                     WHERE 'false' ILIKE
852                     (
853                         SELECT CASE
854                             WHEN (SELECT value FROM actor.org_unit_ancestor_setting('circ.do_not_tally_claims_returned', circ.circ_lib)) ILIKE 'true' THEN 'true'
855                             ELSE 'false'
856                         END
857                     )
858                     ) OR circ.stop_fines IS NULL)
859                 AND xact_finish IS NULL;
860
861            IF items_out >= max_items_out.threshold::INT THEN
862             new_sp_row.usr := match_user;
863             new_sp_row.org_unit := max_items_out.org_unit;
864             new_sp_row.standing_penalty := 3;
865             RETURN NEXT new_sp_row;
866            END IF;
867     END IF;
868
869     -- Start over for max lost
870     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
871
872     -- Fail if the user has too many lost items
873     LOOP
874         tmp_grp := user_object.profile;
875         LOOP
876
877             SELECT * INTO max_lost FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 5 AND org_unit = tmp_org.id;
878
879             IF max_lost.threshold IS NULL THEN
880                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
881             ELSE
882                 EXIT;
883             END IF;
884
885             IF tmp_grp IS NULL THEN
886                 EXIT;
887             END IF;
888         END LOOP;
889
890         IF max_lost.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
891             EXIT;
892         END IF;
893
894         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
895
896     END LOOP;
897
898     IF max_lost.threshold IS NOT NULL THEN
899
900         RETURN QUERY
901             SELECT  *
902             FROM  actor.usr_standing_penalty
903             WHERE usr = match_user
904                 AND org_unit = max_lost.org_unit
905                 AND (stop_date IS NULL or stop_date > NOW())
906                 AND standing_penalty = 5;
907
908         SELECT  INTO items_lost COUNT(*)
909         FROM  action.circulation circ
910             JOIN  actor.org_unit_full_path( max_lost.org_unit ) fp ON (circ.circ_lib = fp.id)
911         WHERE circ.usr = match_user
912             AND circ.checkin_time IS NULL
913             AND (circ.stop_fines = 'LOST')
914             AND xact_finish IS NULL;
915
916         IF items_lost >= max_lost.threshold::INT AND 0 < max_lost.threshold::INT THEN
917             new_sp_row.usr := match_user;
918             new_sp_row.org_unit := max_lost.org_unit;
919             new_sp_row.standing_penalty := 5;
920             RETURN NEXT new_sp_row;
921         END IF;
922     END IF;
923
924     -- Start over for collections warning
925     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
926
927     -- Fail if the user has a collections-level fine balance
928     LOOP
929         tmp_grp := user_object.profile;
930         LOOP
931             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
932
933             IF max_fines.threshold IS NULL THEN
934                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
935             ELSE
936                 EXIT;
937             END IF;
938
939             IF tmp_grp IS NULL THEN
940                 EXIT;
941             END IF;
942         END LOOP;
943
944         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
945             EXIT;
946         END IF;
947
948         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
949
950     END LOOP;
951
952     IF max_fines.threshold IS NOT NULL THEN
953
954         RETURN QUERY
955             SELECT  *
956               FROM  actor.usr_standing_penalty
957               WHERE usr = match_user
958                     AND org_unit = max_fines.org_unit
959                     AND (stop_date IS NULL or stop_date > NOW())
960                     AND standing_penalty = 4;
961
962         SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( max_fines.org_unit );
963
964         SELECT  SUM(f.balance_owed) INTO current_fines
965           FROM  money.materialized_billable_xact_summary f
966                 JOIN (
967                     SELECT  r.id
968                       FROM  booking.reservation r
969                       WHERE r.usr = match_user
970                             AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list))
971                             AND r.xact_finish IS NULL
972                                 UNION ALL
973                     SELECT  g.id
974                       FROM  money.grocery g
975                       WHERE g.usr = match_user
976                             AND g.billing_location IN (SELECT * FROM unnest(context_org_list))
977                             AND g.xact_finish IS NULL
978                                 UNION ALL
979                     SELECT  circ.id
980                       FROM  action.circulation circ
981                       WHERE circ.usr = match_user
982                             AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list))
983                             AND circ.xact_finish IS NULL ) l USING (id);
984
985         IF current_fines >= max_fines.threshold THEN
986             new_sp_row.usr := match_user;
987             new_sp_row.org_unit := max_fines.org_unit;
988             new_sp_row.standing_penalty := 4;
989             RETURN NEXT new_sp_row;
990         END IF;
991     END IF;
992
993     -- Start over for in collections
994     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
995
996     -- Remove the in-collections penalty if the user has paid down enough
997     -- This penalty is different, because this code is not responsible for creating 
998     -- new in-collections penalties, only for removing them
999     LOOP
1000         tmp_grp := user_object.profile;
1001         LOOP
1002             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
1003
1004             IF max_fines.threshold IS NULL THEN
1005                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
1006             ELSE
1007                 EXIT;
1008             END IF;
1009
1010             IF tmp_grp IS NULL THEN
1011                 EXIT;
1012             END IF;
1013         END LOOP;
1014
1015         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
1016             EXIT;
1017         END IF;
1018
1019         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
1020
1021     END LOOP;
1022
1023     IF max_fines.threshold IS NOT NULL THEN
1024
1025         SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( max_fines.org_unit );
1026
1027         -- first, see if the user had paid down to the threshold
1028         SELECT  SUM(f.balance_owed) INTO current_fines
1029           FROM  money.materialized_billable_xact_summary f
1030                 JOIN (
1031                     SELECT  r.id
1032                       FROM  booking.reservation r
1033                       WHERE r.usr = match_user
1034                             AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list))
1035                             AND r.xact_finish IS NULL
1036                                 UNION ALL
1037                     SELECT  g.id
1038                       FROM  money.grocery g
1039                       WHERE g.usr = match_user
1040                             AND g.billing_location IN (SELECT * FROM unnest(context_org_list))
1041                             AND g.xact_finish IS NULL
1042                                 UNION ALL
1043                     SELECT  circ.id
1044                       FROM  action.circulation circ
1045                       WHERE circ.usr = match_user
1046                             AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list))
1047                             AND circ.xact_finish IS NULL ) l USING (id);
1048
1049         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
1050             -- patron has paid down enough
1051
1052             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
1053
1054             IF tmp_penalty.org_depth IS NOT NULL THEN
1055
1056                 -- since this code is not responsible for applying the penalty, it can't 
1057                 -- guarantee the current context org will match the org at which the penalty 
1058                 --- was applied.  search up the org tree until we hit the configured penalty depth
1059                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
1060                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
1061
1062                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
1063
1064                     RETURN QUERY
1065                         SELECT  *
1066                           FROM  actor.usr_standing_penalty
1067                           WHERE usr = match_user
1068                                 AND org_unit = tmp_org.id
1069                                 AND (stop_date IS NULL or stop_date > NOW())
1070                                 AND standing_penalty = 30;
1071
1072                     IF tmp_org.parent_ou IS NULL THEN
1073                         EXIT;
1074                     END IF;
1075
1076                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
1077                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
1078                 END LOOP;
1079
1080             ELSE
1081
1082                 -- no penalty depth is defined, look for exact matches
1083
1084                 RETURN QUERY
1085                     SELECT  *
1086                       FROM  actor.usr_standing_penalty
1087                       WHERE usr = match_user
1088                             AND org_unit = max_fines.org_unit
1089                             AND (stop_date IS NULL or stop_date > NOW())
1090                             AND standing_penalty = 30;
1091             END IF;
1092     
1093         END IF;
1094
1095     END IF;
1096
1097     RETURN;
1098 END;
1099 $func$ LANGUAGE plpgsql;
1100
1101 COMMIT;
1102