You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by de...@apache.org on 2017/04/15 09:07:44 UTC

svn commit: r1791475 - /ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/order/OrderServices.java

Author: deepak
Date: Sat Apr 15 09:07:44 2017
New Revision: 1791475

URL: http://svn.apache.org/viewvc?rev=1791475&view=rev
Log:
Fixed: Editing quantity of configurable products changes actual product 
(OFBIZ-9225)
Thanks Suraj Khurana for your contribution.

Modified:
    ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/order/OrderServices.java

Modified: ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/order/OrderServices.java
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/order/OrderServices.java?rev=1791475&r1=1791474&r2=1791475&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/order/OrderServices.java (original)
+++ ofbiz/ofbiz-framework/trunk/applications/order/src/main/java/org/apache/ofbiz/order/order/OrderServices.java Sat Apr 15 09:07:44 2017
@@ -4200,7 +4200,7 @@ public class OrderServices {
             }
         }
 
-        toStore.addAll(cart.makeOrderItems(dispatcher));
+        toStore.addAll(cart.makeOrderItems(false, true, dispatcher));
         toStore.addAll(cart.makeAllAdjustments());
 
         long groupIndex = cart.getShipInfoSize();