[open-ils-commits] [GIT] Evergreen ILS branch master updated. 72047148220f78e230cc916e253dd81e15cc0fe4
Evergreen Git
git at git.evergreen-ils.org
Tue May 24 10:00:33 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 72047148220f78e230cc916e253dd81e15cc0fe4 (commit)
from 598d111851cbf03c73e6bef7633c1ca13bd72276 (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 72047148220f78e230cc916e253dd81e15cc0fe4
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 ca91ad2..9ff0201 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