Author: mor
Date: Wed Sep 16 05:50:17 2009 New Revision: 815615 URL: http://svn.apache.org/viewvc?rev=815615&view=rev Log: Fixed typo in the method, ???Result* -> ???Results* Modified: ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/visit/ShowVisits.groovy ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/CountFacilityInventoryByProduct.groovy ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindInventoryItemsByLabels.groovy ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy Modified: ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/visit/ShowVisits.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/visit/ShowVisits.groovy?rev=815615&r1=815614&r2=815615&view=diff ============================================================================== --- ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/visit/ShowVisits.groovy (original) +++ ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/visit/ShowVisits.groovy Wed Sep 16 05:50:17 2009 @@ -65,7 +65,7 @@ visitList = new ArrayList(); } - visitListSize = visitListIt.getResultSizeAfterPartialList(); + visitListSize = visitListIt.getResultsSizeAfterPartialList(); if (highIndex > visitListSize) { highIndex = visitListSize; } Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/CountFacilityInventoryByProduct.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/CountFacilityInventoryByProduct.groovy?rev=815615&r1=815614&r2=815615&view=diff ============================================================================== --- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/CountFacilityInventoryByProduct.groovy (original) +++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/CountFacilityInventoryByProduct.groovy Wed Sep 16 05:50:17 2009 @@ -334,7 +334,7 @@ } productListSize = lowIndex + rows.size() + rowProcessed - 1; } else { - productListSize = prodsEli.getResultSizeAfterPartialList(); + productListSize = prodsEli.getResultsSizeAfterPartialList(); } } prodsEli.close(); Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindInventoryItemsByLabels.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindInventoryItemsByLabels.groovy?rev=815615&r1=815614&r2=815615&view=diff ============================================================================== --- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindInventoryItemsByLabels.groovy (original) +++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindInventoryItemsByLabels.groovy Wed Sep 16 05:50:17 2009 @@ -67,7 +67,7 @@ beganTransaction = TransactionUtil.begin(); inventoryItemsEli = delegator.findListIteratorByCondition(inventoryItemAndLabelsView, EntityCondition.makeCondition(andCondition, EntityOperator.AND), null, null, null, findOpts); - inventoryItemsSize = inventoryItemsEli.getResultSizeAfterPartialList(); + inventoryItemsSize = inventoryItemsEli.getResultsSizeAfterPartialList(); context.inventoryItemsSize = inventoryItemsSize; if (highIndex > inventoryItemsSize) { highIndex = inventoryItemsSize; Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy?rev=815615&r1=815614&r2=815615&view=diff ============================================================================== --- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy (original) +++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy Wed Sep 16 05:50:17 2009 @@ -110,7 +110,7 @@ // using list iterator orli = delegator.find("Shipment", mainCond, null, null, orderBy, findOpts); - shipmentListSize = orli.getResultSizeAfterPartialList(); + shipmentListSize = orli.getResultsSizeAfterPartialList(); if (highIndex > shipmentListSize) { highIndex = shipmentListSize; } |
Free forum by Nabble | Edit this page |