[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 12f12f15e75952a2a0555a445dbfa198b6b0d8ff
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_1 has been updated
via 12f12f15e75952a2a0555a445dbfa198b6b0d8ff (commit)
from 5db7ed07d2b2fcabfadbfef3dd3376ea9bfae0ee (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 12f12f15e75952a2a0555a445dbfa198b6b0d8ff
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 b4fb738524..c330acf946 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
@@ -71,7 +71,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