[open-ils-commits] [GIT] Evergreen ILS branch master updated. 611a34bbeac64555f9b18b7aac0fd3e040e4b2f8

Evergreen Git git at git.evergreen-ils.org
Wed Nov 28 09:11:13 EST 2018


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  611a34bbeac64555f9b18b7aac0fd3e040e4b2f8 (commit)
      from  acd4e96972e0ac3464f6a43378330c9fe5a68f34 (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 611a34bbeac64555f9b18b7aac0fd3e040e4b2f8
Author: Cesar Velez <cesar.velez at equinoxinitiative.org>
Date:   Tue Nov 6 14:14:04 2018 -0500

    LP#1746769 - add item tag owner OU to label in volcopy editor
    
    Adding the owner to differentiate item tags with same label
    that are owned by different OU.
    
    Signed-off by: Cesar Velez <cesar.velez at equinoxinitiative.org>
    
    Signed-off-by: Jason Etheridge <jason at EquinoxInitiative.org>

diff --git a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
index 406c0c0..20c8257 100644
--- a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
+++ b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
@@ -2149,7 +2149,7 @@ function($scope , $q , $window , $routeParams , $location , $timeout , egCore ,
                         { order_by : { 'acpt' : ['label'] } }, { atomic: true }
                     ).then(function(list) {
                         return list.map(function(item) {
-                            return item.label();
+                            return item.label() + " (" + egCore.org.get(item.owner()).shortname() + ")";
                         });
                     });
                 }

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

Summary of changes:
 .../web/js/ui/default/staff/cat/volcopy/app.js     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list