Author: lektran
Date: Sun May 11 02:45:06 2008
New Revision: 655289

URL: http://svn.apache.org/viewvc?rev=655289&view=rev
Log:
Forgot to change a mthod call, it always pays to read your own commit emails :-)

Modified:
    
ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/inventory/FindFacilityPhysicalInventory.bsh

Modified: 
ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/inventory/FindFacilityPhysicalInventory.bsh
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/inventory/FindFacilityPhysicalInventory.bsh?rev=655289&r1=655288&r2=655289&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/inventory/FindFacilityPhysicalInventory.bsh
 (original)
+++ 
ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/inventory/FindFacilityPhysicalInventory.bsh
 Sun May 11 02:45:06 2008
@@ -45,7 +45,7 @@
 
 if (conditions.size() > 2) {
     EntityConditionList ecl = new EntityConditionList(conditions, 
EntityOperator.AND);
-    physicalInventory = delegator.findByAnd("ProductInventoryItem", ecl, null, 
UtilMisc.toList("productId"), null, false);
+    physicalInventory = delegator.findList("ProductInventoryItem", ecl, null, 
UtilMisc.toList("productId"), null, false);
 
     // also need the overal product QOH and ATP for each product
     atpMap = FastMap.newInstance();


Reply via email to