[open-ils-commits] [GIT] Evergreen ILS branch rel_2_2 updated. 6da7dfe6e84a19e7717ddd9865bf6a146fbd7cbd

Evergreen Git git at git.evergreen-ils.org
Mon Jun 11 13:49:14 EDT 2012


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  6da7dfe6e84a19e7717ddd9865bf6a146fbd7cbd (commit)
      from  2b56acffb83db22797ad2a1ddefd2382fe5f92e6 (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 6da7dfe6e84a19e7717ddd9865bf6a146fbd7cbd
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Mon Jun 11 11:18:08 2012 -0400

    Show Vandelay Buckets in Manage Record Buckets
    
    The 'Manage Record Buckets' view is currently filtered to show
    only 'staff_client' type buckets.  This expands the filter to
    include 'vandelay_queue' buckets.
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/xul/staff_client/server/cat/record_buckets.js b/Open-ILS/xul/staff_client/server/cat/record_buckets.js
index e4a0038..6d11ca1 100644
--- a/Open-ILS/xul/staff_client/server/cat/record_buckets.js
+++ b/Open-ILS/xul/staff_client/server/cat/record_buckets.js
@@ -296,7 +296,7 @@ cat.record_buckets.prototype = {
                                         util.functional.filter_list(
                                             buckets.biblio,
                                             function(o) {
-                                                return o.btype() == 'staff_client';
+                                                return (o.btype() == 'staff_client' || o.btype() == 'vandelay_queue');
                                             }
                                         ),
                                         function(o) {

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

Summary of changes:
 .../xul/staff_client/server/cat/record_buckets.js  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list