From: phasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Mon, 4 Jan 2010 15:51:06 +0000 (+0000)
Subject: forward porting changeset 15256 for completeness, though this interface is being... 
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ddc4958a5e213b254891ea7447b34725e2707abe;p=evergreen%2Fmasslnc.git

forward porting changeset 15256 for completeness, though this interface is being deprecated

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15258 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/xul/staff_client/server/circ/copy_details.xul b/Open-ILS/xul/staff_client/server/circ/copy_details.xul
index 911dd05ea5..d8b42e2a30 100644
--- a/Open-ILS/xul/staff_client/server/circ/copy_details.xul
+++ b/Open-ILS/xul/staff_client/server/circ/copy_details.xul
@@ -130,7 +130,8 @@
                 $('r_hold').disabled = true;
                 if (g.hold) {
                     $('r_hold').disabled = false;
-                    var status_robj = g.network.simple_request('FM_AHR_STATUS',[ ses(), g.hold.id() ]);
+                    var better_fleshed_hold_blob = g.network.simple_request('FM_AHR_BLOB_RETRIEVE.authoritative',[ ses(), g.hold.id() ]);
+                    var status_robj = better_fleshed_hold_blob.status;
                     JSAN.use('circ.util');
                     var columns = circ.util.hold_columns( 
                         { 
@@ -146,7 +147,7 @@
 
                     JSAN.use('util.list'); g.list = new util.list('hold');
                     g.list.init( { 'columns' : columns, 'map_row_to_columns' : circ.util.std_map_row_to_columns(), });
-                    g.list.append( { 'row' : { 'my' : { 'ahr' : g.hold, 'acp' : g.copy, 'status' : status_robj, } } });
+                    g.list.append( { 'row' : { 'my' : { 'ahr' : better_fleshed_hold_blob.hold, 'acp' : g.copy, 'status' : status_robj, } } });
     
                     JSAN.use('patron.util'); 
                     var au_obj = patron.util.retrieve_fleshed_au_via_id( ses(), g.hold.usr() );