[open-ils-commits] r19832 - trunk/Open-ILS/xul/staff_client/server/patron (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Mar 21 12:47:30 EDT 2011


Author: phasefx
Date: 2011-03-21 12:47:26 -0400 (Mon, 21 Mar 2011)
New Revision: 19832

Modified:
   trunk/Open-ILS/xul/staff_client/server/patron/holds.js
Log:
no, this was correct.  doh :)  the list version uses paging, but we're counting the entire set

Modified: trunk/Open-ILS/xul/staff_client/server/patron/holds.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/holds.js	2011-03-21 16:47:13 UTC (rev 19831)
+++ trunk/Open-ILS/xul/staff_client/server/patron/holds.js	2011-03-21 16:47:26 UTC (rev 19832)
@@ -1492,7 +1492,7 @@
                     params.push( obj.pull_from_shelf_interface.current.limit ); params.push( obj.pull_from_shelf_interface.current.offset );
                     var x = document.getElementById('hold_count');
                     if (x) {
-                        obj.network.simple_request('FM_AHR_PULL_LIST_COUNT',params,function(req) {
+                        obj.network.simple_request('FM_AHR_PULL_LIST_COUNT',[ses()],function(req) {
                             var count = req.getResultObject();
                             if (typeof count.ilsevent == 'undefined' && count != null) {
                                 x.setAttribute('value', document.getElementById('patronStrings').getFormattedString(



More information about the open-ils-commits mailing list