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

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

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

mor-2
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);