[open-ils-commits] r10673 - in trunk/Open-ILS/xul/staff_client: chrome/content/main server/circ server/patron

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Sep 22 00:41:21 EDT 2008


Author: phasefx
Date: 2008-09-22 00:41:19 -0400 (Mon, 22 Sep 2008)
New Revision: 10673

Modified:
   trunk/Open-ILS/xul/staff_client/chrome/content/main/constants.js
   trunk/Open-ILS/xul/staff_client/server/circ/in_house_use.js
   trunk/Open-ILS/xul/staff_client/server/patron/bill_details.xul
   trunk/Open-ILS/xul/staff_client/server/patron/bill_history.xul
   trunk/Open-ILS/xul/staff_client/server/patron/bill_wizard.xul
Log:
bad search & replace.  Need to ask Bill for an .authoritative version of open-ils.search.biblio.mods_from_copy

Modified: trunk/Open-ILS/xul/staff_client/chrome/content/main/constants.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/chrome/content/main/constants.js	2008-09-22 04:36:43 UTC (rev 10672)
+++ trunk/Open-ILS/xul/staff_client/chrome/content/main/constants.js	2008-09-22 04:41:19 UTC (rev 10673)
@@ -200,6 +200,7 @@
 	'MODS_SLIM_RECORD_RETRIEVE' : { 'app' : 'open-ils.search', 'method' : 'open-ils.search.biblio.record.mods_slim.retrieve', 'secure' : false },
 	'MODS_SLIM_RECORD_RETRIEVE.authoritative' : { 'app' : 'open-ils.search', 'method' : 'open-ils.search.biblio.record.mods_slim.retrieve.authoritative', 'secure' : false },
 	'MODS_SLIM_RECORD_RETRIEVE_VIA_COPY' : { 'app' : 'open-ils.search', 'method' : 'open-ils.search.biblio.mods_from_copy', 'secure' : false },
+	'MODS_SLIM_RECORD_RETRIEVE_VIA_COPY.authoritative' : { 'app' : 'open-ils.search', 'method' : 'open-ils.search.biblio.mods_from_copy', 'secure' : false },
 	'PERM_CHECK' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.perm.check' },
 	'PERM_MULTI_ORG_CHECK' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.perm.check.multi_org' },
 	'PERM_RETRIEVE_HIGHEST_ORG' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.perm.highest_org' },

Modified: trunk/Open-ILS/xul/staff_client/server/circ/in_house_use.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/in_house_use.js	2008-09-22 04:36:43 UTC (rev 10672)
+++ trunk/Open-ILS/xul/staff_client/server/circ/in_house_use.js	2008-09-22 04:41:19 UTC (rev 10673)
@@ -278,7 +278,7 @@
 					return; 
 				}
 	
-				var mods = obj.network.simple_request('MODS_SLIM_RECORD_RETRIEVE.authoritative_VIA_COPY',[ copy.id() ]);
+				var mods = obj.network.simple_request('MODS_SLIM_RECORD_RETRIEVE_VIA_COPY.authoritative',[ copy.id() ]);
 				var result = obj.network.simple_request('FM_AIHU_CREATE',
 					[ ses(), { 'copyid' : copy.id(), 'location' : obj.data.list.au[0].ws_ou(), 'count' : multiplier } ]
 				);

Modified: trunk/Open-ILS/xul/staff_client/server/patron/bill_details.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/bill_details.xul	2008-09-22 04:36:43 UTC (rev 10672)
+++ trunk/Open-ILS/xul/staff_client/server/patron/bill_details.xul	2008-09-22 04:41:19 UTC (rev 10673)
@@ -120,7 +120,7 @@
 						$('copy_summary').hidden=false;
 
 						g.network.simple_request(
-							'MODS_SLIM_RECORD_RETRIEVE.authoritative_VIA_COPY',
+							'MODS_SLIM_RECORD_RETRIEVE_VIA_COPY.authoritative',
 							[ r_circ.target_copy() ],
 							function (rreq) {
 								var r_mvr = rreq.getResultObject();

Modified: trunk/Open-ILS/xul/staff_client/server/patron/bill_history.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/bill_history.xul	2008-09-22 04:36:43 UTC (rev 10672)
+++ trunk/Open-ILS/xul/staff_client/server/patron/bill_history.xul	2008-09-22 04:41:19 UTC (rev 10673)
@@ -164,7 +164,7 @@
 						$('copy_summary').hidden=false;
 
 						g.network.simple_request(
-							'MODS_SLIM_RECORD_RETRIEVE.authoritative_VIA_COPY',
+							'MODS_SLIM_RECORD_RETRIEVE_VIA_COPY.authoritative',
 							[ r_circ.target_copy() ],
 							function (rreq) {
 								var r_mvr = rreq.getResultObject();

Modified: trunk/Open-ILS/xul/staff_client/server/patron/bill_wizard.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/bill_wizard.xul	2008-09-22 04:36:43 UTC (rev 10672)
+++ trunk/Open-ILS/xul/staff_client/server/patron/bill_wizard.xul	2008-09-22 04:41:19 UTC (rev 10673)
@@ -73,7 +73,7 @@
 						$('due').value = r_circ.due_date() ? r_circ.due_date().toString().substr(0,10) : '';
 
 						g.network.simple_request(
-							'MODS_SLIM_RECORD_RETRIEVE.authoritative_VIA_COPY',
+							'MODS_SLIM_RECORD_RETRIEVE_VIA_COPY.authoritative',
 							[ r_circ.target_copy() ],
 							function (rreq) {
 								var r_mvr = rreq.getResultObject();



More information about the open-ils-commits mailing list