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

Evergreen Git git at git.evergreen-ils.org
Wed Oct 10 16:16:47 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, master has been updated
       via  c99de2de3e75383c3d4199b4f8e147dbcdee24c2 (commit)
      from  d933e14655786b760dd187ae7b167cc5d7a3194c (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 c99de2de3e75383c3d4199b4f8e147dbcdee24c2
Author: Jason Etheridge <jason at esilibrary.com>
Date:   Wed Mar 14 16:19:31 2012 -0400

    make the org full name available
    
    in the patron messages interface for each penalty/message
    
    Signed-off-by: Jason Etheridge <jason at esilibrary.com>
    Signed-off-by: Michael Peters <mrpeters at library.in.gov>

diff --git a/Open-ILS/xul/staff_client/server/locale/en-US/common.properties b/Open-ILS/xul/staff_client/server/locale/en-US/common.properties
index ce0ac8e..4cac73a 100644
--- a/Open-ILS/xul/staff_client/server/locale/en-US/common.properties
+++ b/Open-ILS/xul/staff_client/server/locale/en-US/common.properties
@@ -95,6 +95,7 @@ staff.ausp_staff_label=Applied By
 staff.ausp_set_date_label=Applied On 
 staff.ausp_note_label=Note 
 staff.ausp_org_unit_label=Library 
+staff.ausp_org_unit_full_label=Library (Full Name)
 staff.mbts_id_label=Bill # 
 staff.mbts_xact_start_label=Start
 staff.mbts_xact_finish_label=Finish
diff --git a/Open-ILS/xul/staff_client/server/patron/util.js b/Open-ILS/xul/staff_client/server/patron/util.js
index 02e074e..ce41bd6 100644
--- a/Open-ILS/xul/staff_client/server/patron/util.js
+++ b/Open-ILS/xul/staff_client/server/patron/util.js
@@ -388,7 +388,14 @@ patron.util.ausp_columns = function(modify,params) {
             'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { 
                 return my.ausp ? data.hash.aou[ my.ausp.org_unit() ].shortname() : '';
             }
+        },
+        {
+            'persist' : 'hidden width ordinal', 'id' : 'ausp_org_unit_full', 'label' : commonStrings.getString('staff.ausp_org_unit_full_label'), 'flex' : 1,
+            'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { 
+                return my.ausp ? data.hash.aou[ my.ausp.org_unit() ].name() : '';
+            }
         }
+
     ];
     for (var i = 0; i < c.length; i++) {
         if (modify[ c[i].id ]) {

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

Summary of changes:
 .../server/locale/en-US/common.properties          |    1 +
 Open-ILS/xul/staff_client/server/patron/util.js    |    7 +++++++
 2 files changed, 8 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list