You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by si...@apache.org on 2007/04/19 00:17:25 UTC

svn commit: r530184 - /ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindFacilityTransfers.bsh

Author: sichen
Date: Wed Apr 18 15:17:22 2007
New Revision: 530184

URL: http://svn.apache.org/viewvc?view=rev&rev=530184
Log:
Retrieving facilityId from the parameters map

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

Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindFacilityTransfers.bsh
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindFacilityTransfers.bsh?view=diff&rev=530184&r1=530183&r2=530184
==============================================================================
--- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindFacilityTransfers.bsh (original)
+++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/FindFacilityTransfers.bsh Wed Apr 18 15:17:22 2007
@@ -26,7 +26,7 @@
 
 delegator = request.getAttribute("delegator");
 
-String facilityId = request.getParameter("facilityId");
+String facilityId = parameters.get("facilityId");
 if (facilityId != null) context.put("facilityId", facilityId);
 
 GenericValue facility = delegator.findByPrimaryKey("Facility", UtilMisc.toMap("facilityId", facilityId));