From 5fb2b23a3934e6a009c0c88dabcd1e05e7e063af Mon Sep 17 00:00:00 2001 From: Thomas Berezansky Date: Fri, 18 Apr 2014 09:46:13 -0400 Subject: [PATCH] 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 Signed-off-by: Michele Morgan Signed-off-by: Ben Shum --- Open-ILS/examples/fm_IDL.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml index 13570f99ea..68253f9d8d 100644 --- a/Open-ILS/examples/fm_IDL.xml +++ b/Open-ILS/examples/fm_IDL.xml @@ -5332,7 +5332,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) ]]> -- 2.11.0