[open-ils-commits] [GIT] Evergreen ILS branch rel_2_2 updated. c5019e4ef98378a2f63b770959c7ca29c233825f
Evergreen Git
git at git.evergreen-ils.org
Mon Mar 11 16:10:44 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_2 has been updated
via c5019e4ef98378a2f63b770959c7ca29c233825f (commit)
from 4fcc5d1041028b5d837983a4c5743ee28d1b2aa5 (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 c5019e4ef98378a2f63b770959c7ca29c233825f
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 393c0e1..39a81b3 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
@@ -2038,7 +2038,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