You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mo...@apache.org on 2010/06/21 15:01:35 UTC

svn commit: r956558 - /ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/cart/LookupBulkAddSupplierProducts.groovy

Author: mor
Date: Mon Jun 21 13:01:35 2010
New Revision: 956558

URL: http://svn.apache.org/viewvc?rev=956558&view=rev
Log:
Fixed an issue when SupplierProduct.minimumOrderQuantity was not displayed on the bulk product lookup screen in order entry.

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/cart/LookupBulkAddSupplierProducts.groovy

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/cart/LookupBulkAddSupplierProducts.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/cart/LookupBulkAddSupplierProducts.groovy?rev=956558&r1=956557&r2=956558&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/cart/LookupBulkAddSupplierProducts.groovy (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/cart/LookupBulkAddSupplierProducts.groovy Mon Jun 21 13:01:35 2010
@@ -128,7 +128,8 @@ for (supplierProduct in supplierProducts
             productInfoMap.supplierProductId = supplierProduct.supplierProductId;
             productInfoMap.lastPrice = supplierProduct.lastPrice;
             productInfoMap.orderQtyIncrements = supplierProduct.orderQtyIncrements;
-    
+            productInfoMap.minimumOrderQuantity = supplierProduct.minimumOrderQuantity;
+
             productInfoMap.minimumStock = productFacility.minimumStock;
     
             newProductList.add(productInfoMap);