[open-ils-commits] [GIT] Evergreen ILS branch master updated. 1602d92b9ef4ac152722c136296230d1f20eb4d8

Evergreen Git git at git.evergreen-ils.org
Mon Mar 11 16:09:07 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, master has been updated
       via  1602d92b9ef4ac152722c136296230d1f20eb4d8 (commit)
      from  fd09be78adc3ea285dc4f2ad67ea4702faa8039d (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 1602d92b9ef4ac152722c136296230d1f20eb4d8
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 8ef501b..1d32a03 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
@@ -2074,7 +2074,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