make the org full name available
authorJason Etheridge <jason@esilibrary.com>
Wed, 14 Mar 2012 20:19:31 +0000 (16:19 -0400)
committerLebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Wed, 10 Oct 2012 20:16:39 +0000 (16:16 -0400)
in the patron messages interface for each penalty/message

Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Signed-off-by: Michael Peters <mrpeters@library.in.gov>
Open-ILS/xul/staff_client/server/locale/en-US/common.properties
Open-ILS/xul/staff_client/server/patron/util.js

index ce0ac8e..4cac73a 100644 (file)
@@ -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
index 02e074e..ce41bd6 100644 (file)
@@ -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 ]) {