[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. 878c7078c3a9d6c13f67792bcf74aa511e7c4d0a

Evergreen Git git at git.evergreen-ils.org
Mon Feb 18 13:20:07 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, rel_3_2 has been updated
       via  878c7078c3a9d6c13f67792bcf74aa511e7c4d0a (commit)
      from  b38c072ad7f9733538fa55220b5b17978df30308 (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 878c7078c3a9d6c13f67792bcf74aa511e7c4d0a
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