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