From 44ead33032932f487d45a1e987ae57264aa2bed7 Mon Sep 17 00:00:00 2001 From: Dan Wells Date: Thu, 12 Feb 2015 16:01:13 -0500 Subject: [PATCH] Hardcode local "New Book" status (101) to allow circ This is the part handled by Bill's current branch, so just added here for completeness. Signed-off-by: Dan Wells --- Open-ILS/src/sql/Pg/100.circ_matrix.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/sql/Pg/100.circ_matrix.sql b/Open-ILS/src/sql/Pg/100.circ_matrix.sql index 837c34e534..ae25922bd1 100644 --- a/Open-ILS/src/sql/Pg/100.circ_matrix.sql +++ b/Open-ILS/src/sql/Pg/100.circ_matrix.sql @@ -497,7 +497,7 @@ BEGIN END IF; -- Fail if the item isn't in a circulateable status on a non-renewal - IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN + IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8, 101 ) THEN result.fail_part := 'asset.copy.status'; result.success := FALSE; done := TRUE; -- 2.11.0