svn commit: r1791477 - /ofbiz/branches/release15.12/applications/order/src/org/ofbiz/order/order/OrderServices.java

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

svn commit: r1791477 - /ofbiz/branches/release15.12/applications/order/src/org/ofbiz/order/order/OrderServices.java

Deepak Dixit-5
Author: deepak
Date: Sat Apr 15 09:23:43 2017
New Revision: 1791477

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

Modified:
    ofbiz/branches/release15.12/applications/order/src/org/ofbiz/order/order/OrderServices.java

Modified: ofbiz/branches/release15.12/applications/order/src/org/ofbiz/order/order/OrderServices.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/release15.12/applications/order/src/org/ofbiz/order/order/OrderServices.java?rev=1791477&r1=1791476&r2=1791477&view=diff
==============================================================================
--- ofbiz/branches/release15.12/applications/order/src/org/ofbiz/order/order/OrderServices.java (original)
+++ ofbiz/branches/release15.12/applications/order/src/org/ofbiz/order/order/OrderServices.java Sat Apr 15 09:23:43 2017
@@ -4316,7 +4316,7 @@ public class OrderServices {
             }
         }
 
-        toStore.addAll(cart.makeOrderItems());
+        toStore.addAll(cart.makeOrderItems(false, true, dispatcher));
         toStore.addAll(cart.makeAllAdjustments());
 
         long groupIndex = cart.getShipInfoSize();