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

Evergreen Git git at git.evergreen-ils.org
Fri Jun 10 12:51:55 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  8c501fc6a2bd9ddc6e8a4c35c95942df979536c7 (commit)
      from  288e7af6238d1b7bae0200dd7596431b01ce702c (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 8c501fc6a2bd9ddc6e8a4c35c95942df979536c7
Author: Thomas Berezansky <tsbere at mvlc.org>
Date:   Tue Jun 7 13:45:55 2011 -0400

    Correct error in call number owning library change
    
    Send IDs to the backend, not objects.
    
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>
    Signed-off-by: Jason Etheridge <jason at esilibrary.com>

diff --git a/Open-ILS/xul/staff_client/server/cat/copy_editor.js b/Open-ILS/xul/staff_client/server/cat/copy_editor.js
index 0602c09..5512b36 100644
--- a/Open-ILS/xul/staff_client/server/cat/copy_editor.js
+++ b/Open-ILS/xul/staff_client/server/cat/copy_editor.js
@@ -556,7 +556,7 @@ g.apply_owning_lib = function(ou_id) {
             var old_volume = g.map_acn[copy.call_number()];
             var acn_blob = g.network.simple_request(
                 'FM_ACN_FIND_OR_CREATE',
-                [ses(),old_volume.label(),old_volume.record(),ou_id,old_volume.prefix(),old_volume.suffix(),old_volume.label_class()]
+                [ses(),old_volume.label(),old_volume.record(),ou_id,old_volume.prefix().id(),old_volume.suffix().id(),old_volume.label_class().id()]
             );
             if (typeof acn_blob.ilsevent != 'undefined') {
                 g.error.standard_unexpected_error_alert($('catStrings').getFormattedString('staff.cat.copy_editor.apply_owning_lib.call_number.error', [copy.barcode()]), acn_blob);

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

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


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list