]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/100.circ_matrix.sql
adding invalidating stop_date column to usr_standing_penalty, which is checked by...
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 100.circ_matrix.sql
1
2 BEGIN;
3
4 CREATE OR REPLACE FUNCTION explode_array(anyarray) RETURNS SETOF anyelement AS $BODY$
5     SELECT ($1)[s] FROM generate_series(1, array_upper($1, 1)) AS s;
6 $BODY$
7 LANGUAGE 'sql' IMMUTABLE;
8
9 -- NOTE: current config.item_type should get sip2_media_type and magnetic_media columns
10
11 -- New table needed to handle circ modifiers inside the DB.  Will still require
12 -- central admin.  The circ_modifier column on asset.copy will become an fkey to this table.
13 CREATE TABLE config.circ_modifier (
14     code            TEXT    PRIMARY KEY,
15     name            TEXT    UNIQUE NOT NULL,
16     description        TEXT    NOT NULL,
17     sip2_media_type    TEXT    NOT NULL,
18     magnetic_media    BOOL    NOT NULL DEFAULT TRUE
19 );
20
21 /*
22 -- for instance ...
23 INSERT INTO config.circ_modifier VALUES ( 'DVD', 'DVD', 'um ... DVDs', '001', FALSE );
24 INSERT INTO config.circ_modifier VALUES ( 'VIDEO', 'VIDEO', 'Tapes', '001', TRUE );
25 INSERT INTO config.circ_modifier VALUES ( 'BOOK', 'BOOK', 'Dead tree', '001', FALSE );
26 INSERT INTO config.circ_modifier VALUES ( 'CRAZY_ARL-ATH_SETTING', 'R2R_TAPE', 'reel2reel tape', '007', TRUE );
27 */
28
29 -- But, just to get us started, use this
30 /*
31
32 UPDATE asset.copy SET circ_modifier = UPPER(circ_modifier) WHERE circ_modifier IS NOT NULL AND circ_modifier <> '';
33 UPDATE asset.copy SET circ_modifier = NULL WHERE circ_modifier = '';
34
35 INSERT INTO config.circ_modifier (code, name, description, sip2_media_type )
36     SELECT DISTINCT
37             UPPER(circ_modifier),
38             UPPER(circ_modifier),
39             LOWER(circ_modifier),
40             '001'
41       FROM  asset.copy
42       WHERE circ_modifier IS NOT NULL;
43
44 */
45
46 -- add an fkey pointing to the new circ mod table
47 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;
48
49 -- config table to hold the vr_format names
50 CREATE TABLE config.videorecording_format_map (
51     code    TEXT    PRIMARY KEY,
52     value    TEXT    NOT NULL
53 );
54
55 INSERT INTO config.videorecording_format_map VALUES ('a','Beta');
56 INSERT INTO config.videorecording_format_map VALUES ('b','VHS');
57 INSERT INTO config.videorecording_format_map VALUES ('c','U-matic');
58 INSERT INTO config.videorecording_format_map VALUES ('d','EIAJ');
59 INSERT INTO config.videorecording_format_map VALUES ('e','Type C');
60 INSERT INTO config.videorecording_format_map VALUES ('f','Quadruplex');
61 INSERT INTO config.videorecording_format_map VALUES ('g','Laserdisc');
62 INSERT INTO config.videorecording_format_map VALUES ('h','CED');
63 INSERT INTO config.videorecording_format_map VALUES ('i','Betacam');
64 INSERT INTO config.videorecording_format_map VALUES ('j','Betacam SP');
65 INSERT INTO config.videorecording_format_map VALUES ('k','Super-VHS');
66 INSERT INTO config.videorecording_format_map VALUES ('m','M-II');
67 INSERT INTO config.videorecording_format_map VALUES ('o','D-2');
68 INSERT INTO config.videorecording_format_map VALUES ('p','8 mm.');
69 INSERT INTO config.videorecording_format_map VALUES ('q','Hi-8 mm.');
70 INSERT INTO config.videorecording_format_map VALUES ('u','Unknown');
71 INSERT INTO config.videorecording_format_map VALUES ('v','DVD');
72 INSERT INTO config.videorecording_format_map VALUES ('z','Other');
73
74
75
76 /**
77  **  Here we define the tables that make up the circ matrix.  Conceptually, this implements
78  **  the "sparse matrix" that everyone talks about, instead of using traditional rules logic.
79  **  Physically, we cut the matrix up into separate tables (almost 3rd normal form!) that handle
80  **  different portions of the matrix.  This wil simplify creation of the UI (I hope), and help the
81  **  developers focus on specific parts of the matrix.
82  **/
83
84
85 --
86 --                 ****** Which ruleset and tests to use *******
87 --
88 -- * Most specific range for org_unit and grp wins.
89 --
90 -- * circ_modifier match takes precidence over marc_type match, if circ_modifier is set here
91 --
92 -- * marc_type is first checked against the circ_as_type from the copy, then the item type from the marc record
93 --
94 -- * If neither circ_modifier nor marc_type is set (both are NULLABLE) then the entry defines the default
95 --   ruleset and tests for the OU + group (like BOOK in PINES)
96 --
97
98 CREATE TABLE config.circ_matrix_matchpoint (
99     id                   SERIAL    PRIMARY KEY,
100     active               BOOL    NOT NULL DEFAULT TRUE,
101     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"
102     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
103     circ_modifier        TEXT    REFERENCES config.circ_modifier (code) DEFERRABLE INITIALLY DEFERRED,
104     marc_type            TEXT    REFERENCES config.item_type_map (code) DEFERRABLE INITIALLY DEFERRED,
105     marc_form            TEXT    REFERENCES config.item_form_map (code) DEFERRABLE INITIALLY DEFERRED,
106     marc_vr_format       TEXT    REFERENCES config.videorecording_format_map (code) DEFERRABLE INITIALLY DEFERRED,
107     ref_flag             BOOL,
108     juvenile_flag        BOOL,
109     is_renewal           BOOL,
110     usr_age_lower_bound  INTERVAL,
111     usr_age_upper_bound  INTERVAL,
112     circulate            BOOL    NOT NULL DEFAULT TRUE,    -- Hard "can't circ" flag requiring an override
113     duration_rule        INT     NOT NULL REFERENCES config.rule_circ_duration (id) DEFERRABLE INITIALLY DEFERRED,
114     recurring_fine_rule  INT     NOT NULL REFERENCES config.rule_recuring_fine (id) DEFERRABLE INITIALLY DEFERRED,
115     max_fine_rule        INT     NOT NULL REFERENCES config.rule_max_fine (id) DEFERRABLE INITIALLY DEFERRED,
116     script_test          TEXT,                           -- javascript source 
117     CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag, juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal)
118 );
119
120
121 -- Tests for max items out by circ_modifier
122 CREATE TABLE config.circ_matrix_circ_mod_test (
123     id          SERIAL     PRIMARY KEY,
124     matchpoint  INT     NOT NULL REFERENCES config.circ_matrix_matchpoint (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
125     items_out   INT     NOT NULL -- Total current active circulations must be less than this, NULL means skip (always pass)
126 );
127
128 CREATE TABLE config.circ_matrix_circ_mod_test_map (
129     id      SERIAL  PRIMARY KEY,
130     circ_mod_test   INT NOT NULL REFERENCES config.circ_matrix_circ_mod_test (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
131     circ_mod        TEXT    NOT NULL REFERENCES config.circ_modifier (code) ON DELETE CASCADE ON UPDATE CASCADE  DEFERRABLE INITIALLY DEFERRED,
132     CONSTRAINT cm_once_per_test UNIQUE (circ_mod_test, circ_mod)
133 );
134
135 CREATE OR REPLACE FUNCTION action.find_circ_matrix_matchpoint( context_ou INT, match_item BIGINT, match_user INT, renewal BOOL ) RETURNS config.circ_matrix_matchpoint AS $func$
136 DECLARE
137     current_group    permission.grp_tree%ROWTYPE;
138     user_object    actor.usr%ROWTYPE;
139     item_object    asset.copy%ROWTYPE;
140     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
141     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
142     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
143 BEGIN
144     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
145     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
146     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
147     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
148
149     LOOP 
150         -- for each potential matchpoint for this ou and group ...
151         FOR current_mp IN
152             SELECT    m.*
153               FROM    config.circ_matrix_matchpoint m
154                 JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
155                 LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
156               WHERE    m.grp = current_group.id AND m.active
157               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
158                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
159                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
160                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
161                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
162                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
163                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
164                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
165                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
166                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
167
168             IF current_mp.circ_modifier IS NOT NULL THEN
169                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier;
170             END IF;
171
172             IF current_mp.marc_type IS NOT NULL THEN
173                 IF item_object.circ_as_type IS NOT NULL THEN
174                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
175                 ELSE
176                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
177                 END IF;
178             END IF;
179
180             IF current_mp.marc_form IS NOT NULL THEN
181                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
182             END IF;
183
184             IF current_mp.marc_vr_format IS NOT NULL THEN
185                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
186             END IF;
187
188             IF current_mp.ref_flag IS NOT NULL THEN
189                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
190             END IF;
191
192             IF current_mp.juvenile_flag IS NOT NULL THEN
193                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
194             END IF;
195
196             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
197                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
198             END IF;
199
200             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
201                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
202             END IF;
203
204
205             -- everything was undefined or matched
206             matchpoint = current_mp;
207
208             EXIT WHEN matchpoint.id IS NOT NULL;
209         END LOOP;
210
211         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
212
213         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
214     END LOOP;
215
216     RETURN matchpoint;
217 END;
218 $func$ LANGUAGE plpgsql;
219
220
221 CREATE TYPE action.matrix_test_result AS ( success BOOL, matchpoint INT, fail_part TEXT );
222 CREATE OR REPLACE FUNCTION action.item_user_circ_test( circ_ou INT, match_item BIGINT, match_user INT, renewal BOOL ) RETURNS SETOF action.matrix_test_result AS $func$
223 DECLARE
224     user_object        actor.usr%ROWTYPE;
225     standing_penalty    config.standing_penalty%ROWTYPE;
226     item_object        asset.copy%ROWTYPE;
227     item_status_object    config.copy_status%ROWTYPE;
228     item_location_object    asset.copy_location%ROWTYPE;
229     result            action.matrix_test_result;
230     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
231     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
232     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
233     penalty_type         TEXT;
234     tmp_grp         INT;
235     items_out        INT;
236     context_org_list        INT[];
237     done            BOOL := FALSE;
238 BEGIN
239     result.success := TRUE;
240
241     -- Fail if the user is BARRED
242     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
243
244     -- Fail if we couldn't find a set of tests
245     IF user_object.id IS NULL THEN
246         result.fail_part := 'no_user';
247         result.success := FALSE;
248         done := TRUE;
249         RETURN NEXT result;
250         RETURN;
251     END IF;
252
253     IF user_object.barred IS TRUE THEN
254         result.fail_part := 'actor.usr.barred';
255         result.success := FALSE;
256         done := TRUE;
257         RETURN NEXT result;
258     END IF;
259
260     -- Fail if the item can't circulate
261     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
262     IF item_object.circulate IS FALSE THEN
263         result.fail_part := 'asset.copy.circulate';
264         result.success := FALSE;
265         done := TRUE;
266         RETURN NEXT result;
267     END IF;
268
269     -- Fail if the item isn't in a circulateable status on a non-renewal
270     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN 
271         result.fail_part := 'asset.copy.status';
272         result.success := FALSE;
273         done := TRUE;
274         RETURN NEXT result;
275     ELSIF renewal AND item_object.status <> 1 THEN
276         result.fail_part := 'asset.copy.status';
277         result.success := FALSE;
278         done := TRUE;
279         RETURN NEXT result;
280     END IF;
281
282     -- Fail if the item can't circulate because of the shelving location
283     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
284     IF item_location_object.circulate IS FALSE THEN
285         result.fail_part := 'asset.copy_location.circulate';
286         result.success := FALSE;
287         done := TRUE;
288         RETURN NEXT result;
289     END IF;
290
291     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
292     result.matchpoint := circ_test.id;
293
294     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
295
296     -- Fail if we couldn't find a set of tests
297     IF result.matchpoint IS NULL THEN
298         result.fail_part := 'no_matchpoint';
299         result.success := FALSE;
300         done := TRUE;
301         RETURN NEXT result;
302     END IF;
303
304     -- Fail if the test is set to hard non-circulating
305     IF circ_test.circulate IS FALSE THEN
306         result.fail_part := 'config.circ_matrix_test.circulate';
307         result.success := FALSE;
308         done := TRUE;
309         RETURN NEXT result;
310     END IF;
311
312     IF renewal THEN
313         penalty_type = '%RENEW%';
314     ELSE
315         penalty_type = '%CIRC%';
316     END IF;
317
318     FOR standing_penalty IN
319         SELECT  DISTINCT csp.*
320           FROM  actor.usr_standing_penalty usp
321                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
322           WHERE usr = match_user
323                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
324                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
325                 AND csp.block_list LIKE penalty_type LOOP
326
327         result.fail_part := standing_penalty.name;
328         result.success := FALSE;
329         done := TRUE;
330         RETURN NEXT result;
331     END LOOP;
332
333     -- Fail if the user has too many items with specific circ_modifiers checked out
334     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
335         SELECT  INTO items_out COUNT(*)
336           FROM  action.circulation circ
337             JOIN asset.copy cp ON (cp.id = circ.target_copy)
338           WHERE circ.usr = match_user
339                AND circ_lib IN ( SELECT * FROM explode_array(context_org_list) )
340             AND circ.checkin_time IS NULL
341             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
342             AND cp.circ_modifier IN (SELECT circ_mod FROM config.circ_matrix_circ_mod_test_map WHERE circ_mod_test = out_by_circ_mod.id);
343         IF items_out >= out_by_circ_mod.items_out THEN
344             result.fail_part := 'config.circ_matrix_circ_mod_test';
345             result.success := FALSE;
346             done := TRUE;
347             RETURN NEXT result;
348         END IF;
349     END LOOP;
350
351     -- If we passed everything, return the successful matchpoint id
352     IF NOT done THEN
353         RETURN NEXT result;
354     END IF;
355
356     RETURN;
357 END;
358 $func$ LANGUAGE plpgsql;
359
360 CREATE OR REPLACE FUNCTION action.item_user_circ_test( INT, BIGINT, INT ) RETURNS SETOF action.matrix_test_result AS $func$
361     SELECT * FROM action.item_user_circ_test( $1, $2, $3, FALSE );
362 $func$ LANGUAGE SQL;
363
364 CREATE OR REPLACE FUNCTION action.item_user_renew_test( INT, BIGINT, INT ) RETURNS SETOF action.matrix_test_result AS $func$
365     SELECT * FROM action.item_user_circ_test( $1, $2, $3, TRUE );
366 $func$ LANGUAGE SQL;
367
368
369 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
370 DECLARE
371     user_object         actor.usr%ROWTYPE;
372     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
373     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
374     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
375     max_fines           permission.grp_penalty_threshold%ROWTYPE;
376     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
377     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
378     tmp_grp             INT;
379     items_overdue       INT;
380     items_out           INT;
381     context_org_list    INT[];
382     current_fines        NUMERIC(8,2) := 0.0;
383     tmp_fines            NUMERIC(8,2);
384     tmp_groc            RECORD;
385     tmp_circ            RECORD;
386     tmp_org             actor.org_unit%ROWTYPE;
387 BEGIN
388     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
389
390     -- Max fines
391     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
392
393     -- Fail if the user has a high fine balance
394     LOOP
395         tmp_grp := user_object.profile;
396         LOOP
397             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
398
399             IF max_fines.threshold IS NULL THEN
400                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
401             ELSE
402                 EXIT;
403             END IF;
404
405             IF tmp_grp IS NULL THEN
406                 EXIT;
407             END IF;
408         END LOOP;
409
410         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
411             EXIT;
412         END IF;
413
414         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
415
416     END LOOP;
417
418     IF max_fines.threshold IS NOT NULL THEN
419
420         FOR existing_sp_row IN
421                 SELECT  *
422                   FROM  actor.usr_standing_penalty
423                   WHERE usr = match_user
424                         AND org_unit = max_fines.org_unit
425                         AND (stop_date IS NULL or stop_date > NOW())
426                         AND standing_penalty = 1
427                 LOOP
428             RETURN NEXT existing_sp_row;
429         END LOOP;
430
431         SELECT  SUM(f.balance_owed) INTO current_fines
432           FROM  money.materialized_billable_xact_summary f
433                 JOIN (
434                     SELECT  g.id
435                       FROM  money.grocery g
436                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
437                       WHERE usr = match_user
438                             AND xact_finish IS NULL
439                                 UNION ALL
440                     SELECT  circ.id
441                       FROM  action.circulation circ
442                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
443                       WHERE usr = match_user
444                             AND xact_finish IS NULL ) l USING (id);
445
446         IF current_fines >= max_fines.threshold THEN
447             new_sp_row.usr := match_user;
448             new_sp_row.org_unit := max_fines.org_unit;
449             new_sp_row.standing_penalty := 1;
450             RETURN NEXT new_sp_row;
451         END IF;
452     END IF;
453
454     -- Start over for max overdue
455     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
456
457     -- Fail if the user has too many overdue items
458     LOOP
459         tmp_grp := user_object.profile;
460         LOOP
461
462             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
463
464             IF max_overdue.threshold IS NULL THEN
465                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
466             ELSE
467                 EXIT;
468             END IF;
469
470             IF tmp_grp IS NULL THEN
471                 EXIT;
472             END IF;
473         END LOOP;
474
475         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
476             EXIT;
477         END IF;
478
479         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
480
481     END LOOP;
482
483     IF max_overdue.threshold IS NOT NULL THEN
484
485         FOR existing_sp_row IN
486                 SELECT  *
487                   FROM  actor.usr_standing_penalty
488                   WHERE usr = match_user
489                         AND org_unit = max_overdue.org_unit
490                         AND (stop_date IS NULL or stop_date > NOW())
491                         AND standing_penalty = 2
492                 LOOP
493             RETURN NEXT existing_sp_row;
494         END LOOP;
495
496         SELECT  INTO items_overdue COUNT(*)
497           FROM  action.circulation circ
498                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
499           WHERE circ.usr = match_user
500             AND circ.checkin_time IS NULL
501             AND circ.due_date < NOW()
502             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
503
504         IF items_overdue >= max_overdue.threshold::INT THEN
505             new_sp_row.usr := match_user;
506             new_sp_row.org_unit := max_overdue.org_unit;
507             new_sp_row.standing_penalty := 2;
508             RETURN NEXT new_sp_row;
509         END IF;
510     END IF;
511
512     -- Start over for max out
513     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
514
515     -- Fail if the user has too many checked out items
516     LOOP
517         tmp_grp := user_object.profile;
518         LOOP
519             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
520
521             IF max_items_out.threshold IS NULL THEN
522                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
523             ELSE
524                 EXIT;
525             END IF;
526
527             IF tmp_grp IS NULL THEN
528                 EXIT;
529             END IF;
530         END LOOP;
531
532         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
533             EXIT;
534         END IF;
535
536         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
537
538     END LOOP;
539
540
541     -- Fail if the user has too many items checked out
542     IF max_items_out.threshold IS NOT NULL THEN
543
544         FOR existing_sp_row IN
545                 SELECT  *
546                   FROM  actor.usr_standing_penalty
547                   WHERE usr = match_user
548                         AND org_unit = max_items_out.org_unit
549                         AND (stop_date IS NULL or stop_date > NOW())
550                         AND standing_penalty = 3
551                 LOOP
552             RETURN NEXT existing_sp_row;
553         END LOOP;
554
555         SELECT  INTO items_out COUNT(*)
556           FROM  action.circulation circ
557                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
558           WHERE circ.usr = match_user
559                 AND circ.checkin_time IS NULL
560                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
561
562            IF items_out >= max_items_out.threshold::INT THEN
563             new_sp_row.usr := match_user;
564             new_sp_row.org_unit := max_items_out.org_unit;
565             new_sp_row.standing_penalty := 3;
566             RETURN NEXT new_sp_row;
567            END IF;
568     END IF;
569
570     -- Start over for collections warning
571     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
572
573     -- Fail if the user has a collections-level fine balance
574     LOOP
575         tmp_grp := user_object.profile;
576         LOOP
577             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
578
579             IF max_fines.threshold IS NULL THEN
580                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
581             ELSE
582                 EXIT;
583             END IF;
584
585             IF tmp_grp IS NULL THEN
586                 EXIT;
587             END IF;
588         END LOOP;
589
590         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
591             EXIT;
592         END IF;
593
594         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
595
596     END LOOP;
597
598     IF max_fines.threshold IS NOT NULL THEN
599
600         FOR existing_sp_row IN
601                 SELECT  *
602                   FROM  actor.usr_standing_penalty
603                   WHERE usr = match_user
604                         AND org_unit = max_fines.org_unit
605                         AND (stop_date IS NULL or stop_date > NOW())
606                         AND standing_penalty = 4
607                 LOOP
608             RETURN NEXT existing_sp_row;
609         END LOOP;
610
611         SELECT  SUM(f.balance_owed) INTO current_fines
612           FROM  money.materialized_billable_xact_summary f
613                 JOIN (
614                     SELECT  g.id
615                       FROM  money.grocery g
616                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
617                       WHERE usr = match_user
618                             AND xact_finish IS NULL
619                                 UNION ALL
620                     SELECT  circ.id
621                       FROM  action.circulation circ
622                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
623                       WHERE usr = match_user
624                             AND xact_finish IS NULL ) l USING (id);
625
626         IF current_fines >= max_fines.threshold THEN
627             new_sp_row.usr := match_user;
628             new_sp_row.org_unit := max_fines.org_unit;
629             new_sp_row.standing_penalty := 4;
630             RETURN NEXT new_sp_row;
631         END IF;
632     END IF;
633
634
635     RETURN;
636 END;
637 $func$ LANGUAGE plpgsql;
638
639 COMMIT;
640