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

Evergreen Git git at git.evergreen-ils.org
Fri Jun 10 12:51:54 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, master has been updated
       via  7eb1d4f2cc6a3a30517f28a8bc9f4f0c1e411b45 (commit)
      from  7543140d57b955bdfb45f0bffa0fbe31d9a1e1da (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 7eb1d4f2cc6a3a30517f28a8bc9f4f0c1e411b45
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