[open-ils-commits] [GIT] Evergreen ILS branch rel_2_3 updated. 9a082a5f6d66c96a057015e9207882ca94e53814
Evergreen Git
git at git.evergreen-ils.org
Mon Mar 11 16:09:55 EDT 2013
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, rel_2_3 has been updated
via 9a082a5f6d66c96a057015e9207882ca94e53814 (commit)
from 8df82a97fca4f5191c6f42266cc4f68a07b7a293 (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 9a082a5f6d66c96a057015e9207882ca94e53814
Author: Steven Callender <stevecallender at esilibrary.com>
Date: Thu Oct 4 09:17:29 2012 -0400
Exclude copies that have been deleted from showing up on the browse holds shelf list.
If an item had been deleted while it had a status of On Holds Shelf, it would permanently show up on
the browse holds list. This will exclude deleted copies from the results.
Signed-off-by: Steven Callender <stevecallender at esilibrary.com>
Signed-off-by: Mike Rylander <mrylander at gmail.com>
diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
index e98b88e..8b20659 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
@@ -2056,7 +2056,7 @@ sub fetch_captured_holds {
}
},
where => {
- '+acp' => { status => OILS_COPY_STATUS_ON_HOLDS_SHELF },
+ '+acp' => { status => OILS_COPY_STATUS_ON_HOLDS_SHELF, deleted => 'f' },
'+alhr' => {
capture_time => { "!=" => undef },
current_copy => $current_copy,
-----------------------------------------------------------------------
Summary of changes:
.../perlmods/lib/OpenILS/Application/Circ/Holds.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list