[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch master updated. 30912a6eb2c87099bae01e13cd85c5381b7b8852

Evergreen Git git at git.evergreen-ils.org
Thu Jul 10 15:08:15 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  30912a6eb2c87099bae01e13cd85c5381b7b8852 (commit)
       via  b1e53c10ec4c98579bb7b5fd2f1686adbf6e043b (commit)
      from  686764a43543e1a725050d23f5cbec013d21a693 (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 30912a6eb2c87099bae01e13cd85c5381b7b8852
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Fri May 30 15:45:18 2014 -0400

    Release notes entry for holds shelf expire change
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/docs/RELEASE_NOTES_NEXT/Circulation/holds-shelf-expire-date.txt b/docs/RELEASE_NOTES_NEXT/Circulation/holds-shelf-expire-date.txt
new file mode 100644
index 0000000..ef34f50
--- /dev/null
+++ b/docs/RELEASE_NOTES_NEXT/Circulation/holds-shelf-expire-date.txt
@@ -0,0 +1,6 @@
+Change to Holds Shelf Expire Report
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+When limiting to Clearable Holds in the Browse Holds Shelf interface, the
+system will no longer display and clear holds expiring today. Instead, it will
+look for holds that expired before today.

commit b1e53c10ec4c98579bb7b5fd2f1686adbf6e043b
Author: Mike Rylander <mrylander at gmail.com>
Date:   Fri Apr 11 14:09:35 2014 -0400

    LP#1306753: Only look at holds that expire before 'today'
    
    We should not count today when generating the hold expiration list.
    So, we'll look for holds that expire before 'today' instead of those
    that expire before 'now'.
    
    Signed-off-by: Mike Rylander <mrylander at gmail.com>
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Ben Shum <bshum at biblio.org>

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 794f2dd..0939086 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
@@ -2148,7 +2148,7 @@ sub fetch_captured_holds {
     };
     if($self->api_name =~ /expired/) {
         $query->{'where'}->{'+alhr'}->{'-or'} = {
-                shelf_expire_time => { '<' => 'now'},
+                shelf_expire_time => { '<' => 'today'},
                 cancel_time => { '!=' => undef },
         };
     }

-----------------------------------------------------------------------

Summary of changes:
 .../perlmods/lib/OpenILS/Application/Circ/Holds.pm |    2 +-
 .../Circulation/holds-shelf-expire-date.txt        |    6 ++++++
 2 files changed, 7 insertions(+), 1 deletions(-)
 create mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/holds-shelf-expire-date.txt


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list