[open-ils-commits] [GIT] Evergreen ILS branch master updated. ce45d4cf4466af277b3a681fb0964c430288694b
Evergreen Git
git at git.evergreen-ils.org
Wed Aug 27 00:40:34 EDT 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via ce45d4cf4466af277b3a681fb0964c430288694b (commit)
from 92e84a389e7cba0f988814d1e88f029c9dd4e1a4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ce45d4cf4466af277b3a681fb0964c430288694b
Author: Thomas Berezansky <tsbere at mvlc.org>
Date: Fri Apr 18 09:46:13 2014 -0400
LP#1277551: Limit simplified pull list to available copies
Copies that are targeted by a hold but are not in available or reshelving
statuses should not show up on a pull list.
Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>
Signed-off-by: Michele Morgan <mmorgan at noblenet.org>
Signed-off-by: Ben Shum <bshum at biblio.org>
diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml
index 2f9fc7f..63987ef 100644
--- a/Open-ILS/examples/fm_IDL.xml
+++ b/Open-ILS/examples/fm_IDL.xml
@@ -5423,7 +5423,8 @@ SELECT usr,
ahr.capture_time IS NULL AND
ahr.cancel_time IS NULL AND
csp.id IS NULL AND
- (ahr.expire_time is NULL OR ahr.expire_time > NOW())
+ (ahr.expire_time is NULL OR ahr.expire_time > NOW()) AND
+ acp.status IN (0,7)
]]></oils_persist:source_definition>
<fields oils_persist:primary="id">
<field reporter:label="Status" name="status" oils_persist:virtual="true" />
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/examples/fm_IDL.xml | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list