From: erickson Date: Thu, 21 Jul 2005 21:19:30 +0000 (+0000) Subject: items on hold shelf are permitted X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6891053f80160b105a2bd0aafe561f2fa0a4fc71;p=Evergreen.git items on hold shelf are permitted git-svn-id: svn://svn.open-ils.org/ILS/trunk@1348 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Evergreen/circ_rules/permit_circ.rules b/Evergreen/circ_rules/permit_circ.rules index c7f81e2e62..c3a46f73d6 100644 --- a/Evergreen/circ_rules/permit_circ.rules +++ b/Evergreen/circ_rules/permit_circ.rules @@ -30,7 +30,7 @@ IF patron.profile == "JUVENILE" && patron_copies > 5; IF ! copy.circulate; ret(COPY_NOCIRC, "Copy is not allowed to circulate"); END; -IF copy.status != "Available"; +IF copy.status != "Available" && copy.status != "On holds shelf"; ret(COPY_UNAVAIL, "Copy is unavailable: ${copy.status}"); END; IF !copy.location.circulate;