[open-ils-commits] r16412 - in branches/rel_1_6_0/Open-ILS/xul/staff_client/server: admin patron (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon May 10 14:37:49 EDT 2010


Author: phasefx
Date: 2010-05-10 14:37:44 -0400 (Mon, 10 May 2010)
New Revision: 16412

Modified:
   branches/rel_1_6_0/Open-ILS/xul/staff_client/server/admin/adminlib.js
   branches/rel_1_6_0/Open-ILS/xul/staff_client/server/patron/summary.js
Log:
backport changesets 16411 and 16393 for authoritative methods

Modified: branches/rel_1_6_0/Open-ILS/xul/staff_client/server/admin/adminlib.js
===================================================================
--- branches/rel_1_6_0/Open-ILS/xul/staff_client/server/admin/adminlib.js	2010-05-10 18:32:18 UTC (rev 16411)
+++ branches/rel_1_6_0/Open-ILS/xul/staff_client/server/admin/adminlib.js	2010-05-10 18:37:44 UTC (rev 16412)
@@ -30,7 +30,7 @@
 function fetchFleshedUser(id, callback) {
 	if(id == null) return null;
 	var req = new Request(
-		'open-ils.actor:open-ils.actor.user.fleshed.retrieve', SESSION, id );
+		'open-ils.actor:open-ils.actor.user.fleshed.retrieve.authoritative', SESSION, id );
 
 	if( callback ) {
 		req.callback( function(r){callback(r.getResultObject());} );

Modified: branches/rel_1_6_0/Open-ILS/xul/staff_client/server/patron/summary.js
===================================================================
--- branches/rel_1_6_0/Open-ILS/xul/staff_client/server/patron/summary.js	2010-05-10 18:32:18 UTC (rev 16411)
+++ branches/rel_1_6_0/Open-ILS/xul/staff_client/server/patron/summary.js	2010-05-10 18:37:44 UTC (rev 16412)
@@ -694,7 +694,7 @@
 							);
 						} else if (obj.id && obj.id != 'null') {
 							robj = obj.network.simple_request(
-								'FM_AU_FLESHED_RETRIEVE_VIA_ID',
+								'FM_AU_FLESHED_RETRIEVE_VIA_ID.authoritative',
 								[ ses(), obj.id ]
 							);
 						} else {



More information about the open-ils-commits mailing list