svn commit: r465348 - /incubator/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/ViewFacilityInventoryByProduct.bsh

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r465348 - /incubator/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/ViewFacilityInventoryByProduct.bsh

jacopoc
Author: jacopoc
Date: Wed Oct 18 12:51:09 2006
New Revision: 465348

URL: http://svn.apache.org/viewvc?view=rev&rev=465348
Log:
Applied patch from Anil K Patel (OFBIZ-381) to fix missing search parameters in links for print/export of "view inventory by product" report.

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

Modified: incubator/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/ViewFacilityInventoryByProduct.bsh
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/ViewFacilityInventoryByProduct.bsh?view=diff&rev=465348&r1=465347&r2=465348
==============================================================================
--- incubator/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/ViewFacilityInventoryByProduct.bsh (original)
+++ incubator/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/facility/ViewFacilityInventoryByProduct.bsh Wed Oct 18 12:51:09 2006
@@ -52,6 +52,7 @@
         try {
             offsetQOH = Integer.parseInt(offsetQOHQty);
             hasOffsetQOH = true;
+            searchParameterString = searchParameterString + "&offsetQOHQty=" + offsetQOH;
         } catch(NumberFormatException nfe) {
         }
     }
@@ -59,6 +60,7 @@
         try {
             offsetATP = Integer.parseInt(offsetATPQty);
             hasOffsetATP = true;
+            searchParameterString = searchParameterString + "&offsetATPQty=" + offsetATP;
         } catch(NumberFormatException nfe) {
         }
     }