From: Dan Wells Date: Thu, 12 Feb 2015 21:01:13 +0000 (-0500) Subject: Hardcode local "New Book" status (101) to allow circ X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=44ead33032932f487d45a1e987ae57264aa2bed7;p=working%2FEvergreen.git 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 --- 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;