[open-ils-commits] r13736 - in branches/rel_1_6/Open-ILS/xul/staff_client: chrome/content/main server/patron (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Jul 24 15:42:13 EDT 2009


Author: phasefx
Date: 2009-07-24 15:42:08 -0400 (Fri, 24 Jul 2009)
New Revision: 13736

Modified:
   branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/main/constants.js
   branches/rel_1_6/Open-ILS/xul/staff_client/server/patron/bills.js
Log:
backporting changeset 13735: faster method for bill retrieval

Modified: branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/main/constants.js
===================================================================
--- branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/main/constants.js	2009-07-24 19:27:59 UTC (rev 13735)
+++ branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/main/constants.js	2009-07-24 19:42:08 UTC (rev 13736)
@@ -206,6 +206,7 @@
 	'FM_MG_CREATE' : { 'app' : 'open-ils.circ', 'method' : 'open-ils.circ.money.grocery.create' },
 	'FM_MG_RETRIEVE' : { 'app' : 'open-ils.circ', 'method' : 'open-ils.circ.money.grocery.retrieve' },
 	'FM_MOBTS_HAVING_BALANCE' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.transactions.have_balance' },
+	'FM_MOBTS_HAVING_BALANCE.authoritative' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.transactions.have_balance.authoritative' },
 	'FM_MOBTS_TOTAL_HAVING_BALANCE' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.transactions.have_balance.total' },
 	'FM_MOBTS_COUNT_HAVING_BALANCE' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.transactions.have_balance.count' },
 	'FM_MOBTS_OPEN' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.transactions' },

Modified: branches/rel_1_6/Open-ILS/xul/staff_client/server/patron/bills.js
===================================================================
--- branches/rel_1_6/Open-ILS/xul/staff_client/server/patron/bills.js	2009-07-24 19:27:59 UTC (rev 13735)
+++ branches/rel_1_6/Open-ILS/xul/staff_client/server/patron/bills.js	2009-07-24 19:42:08 UTC (rev 13736)
@@ -23,10 +23,7 @@
 
 	'current_payments' : [],
 
-	'SHOW_ME_THE_BILLS' : 'FM_MBTS_IDS_RETRIEVE_ALL_HAVING_BALANCE.authoritative',
-	//'SHOW_ME_THE_BILLS' : 'FM_MBTS_IDS_RETRIEVE_ALL_STILL_OPEN',
-	//'SHOW_ME_THE_BILLS' : 'FM_MOBTS_HAVING_BALANCE',
-	/*'SHOW_ME_THE_BILLS' : 'FM_MOBTS_OPEN',*/
+    'SHOW_ME_THE_BILLS' : 'FM_MOBTS_HAVING_BALANCE.authoritative',
 
 	'refresh' : function(dont_show_me_the_money) {
 		var obj = this;



More information about the open-ils-commits mailing list