[open-ils-commits] [GIT] Evergreen ILS branch master updated. 5117c42bdc087af778e0d8cae8773c0b35afa2f4

Evergreen Git git at git.evergreen-ils.org
Mon Feb 18 13:20:06 EST 2019


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  5117c42bdc087af778e0d8cae8773c0b35afa2f4 (commit)
      from  eb2d38267effaa3ecce608d8dfe4cc765b561eb2 (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 5117c42bdc087af778e0d8cae8773c0b35afa2f4
Author: Jeff Davis <jdavis at sitka.bclibraries.ca>
Date:   Tue Aug 21 13:01:06 2018 -0700

    LP#1752665: suppress located URIs in holdings view
    
    To test:
    
    [1] Locate or create a bibliographic record that has at least
        one located URI (e.g., an 856 with a $9 containing an org
        unit code)
    [2] View the record in the Holdings View in the web staff interface,
        with the 'Show empty call numbers' (or volumes) option
        selected.
    [3] Note that rows are displayed with a call number label of '##URI##';
        these are for the located URIs and should not be visible here.
    [4] Apply the patch and repeat step 2. This time the '##URI##' entries
        should not display.
    
    Signed-off-by: Jeff Davis <jdavis at sitka.bclibraries.ca>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js b/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js
index 476dbe2bf5..20ce815faf 100644
--- a/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js
+++ b/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js
@@ -72,7 +72,7 @@ function(egCore , $q) {
 
         var p = egCore.pcrud.search(
             'acn',
-            {record : rid, owning_lib : org_list, deleted : 'f'},
+            {record : rid, owning_lib : org_list, deleted : 'f', label : {'!=' : '##URI##'}},
             svc.flesh
         ).then(
             function() { // finished

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

Summary of changes:
 Open-ILS/web/js/ui/default/staff/cat/services/holdings.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list