[open-ils-commits] [GIT] Evergreen ILS branch rel_2_1 updated. cd37546017f179ad9938ddef55e017e9130b89b3

Evergreen Git git at git.evergreen-ils.org
Tue May 24 10:00:34 EDT 2011


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_2_1 has been updated
       via  cd37546017f179ad9938ddef55e017e9130b89b3 (commit)
      from  5038b9aed39a3b6cd2e58c35c700c45a06b3559f (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 cd37546017f179ad9938ddef55e017e9130b89b3
Author: Jason Etheridge <jason at esilibrary.com>
Date:   Mon May 23 11:09:41 2011 -0400

    wrong identifier and lingering copy/paste-o in code for Item Status -> Add Items
    
    Signed-off-by: Jason Etheridge <jason at esilibrary.com>

diff --git a/Open-ILS/xul/staff_client/server/circ/copy_status.js b/Open-ILS/xul/staff_client/server/circ/copy_status.js
index bff79af..4bd7657 100644
--- a/Open-ILS/xul/staff_client/server/circ/copy_status.js
+++ b/Open-ILS/xul/staff_client/server/circ/copy_status.js
@@ -492,7 +492,7 @@ circ.copy_status.prototype = {
                                     if (! map_acn[volume_id]) {
                                         map_acn[ volume_id ] = obj.network.simple_request('FM_ACN_RETRIEVE.authoritative',[ volume_id ]);
                                     }
-                                    var call_number = obj.map_acn[volume_id];
+                                    var call_number = map_acn[volume_id];
                                     var record_id = call_number.record();
                                     var ou_id = call_number.owning_lib();
                                     var label = call_number.label();
@@ -505,7 +505,6 @@ circ.copy_status.prototype = {
                                     var acns_id = typeof call_number.suffix() == 'object'
                                         ? call_number.suffix().id()
                                         : call_number.suffix();
-                                    if (!copy_shortcut[ou_id]) copy_shortcut[ou_id] = {};
                                     var callnumber_composite_key = acnc_id + ':' + acnp_id + ':' + label + ':' + acns_id;
                                     if (!copy_shortcut[record_id]) {
                                         copy_shortcut[record_id] = {};

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

Summary of changes:
 .../xul/staff_client/server/circ/copy_status.js    |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list