[open-ils-commits] r19831 - branches/rel_2_1/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:17 EDT 2011
Author: phasefx
Date: 2011-03-21 12:47:13 -0400 (Mon, 21 Mar 2011)
New Revision: 19831
Modified:
branches/rel_2_1/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: branches/rel_2_1/Open-ILS/xul/staff_client/server/patron/holds.js
===================================================================
--- branches/rel_2_1/Open-ILS/xul/staff_client/server/patron/holds.js 2011-03-21 16:47:01 UTC (rev 19830)
+++ branches/rel_2_1/Open-ILS/xul/staff_client/server/patron/holds.js 2011-03-21 16:47:13 UTC (rev 19831)
@@ -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