[OFBiz] SVN: r4669 - trunk/applications/order/src/org/ofbiz/order/shoppingcart

jacopo at svn.ofbiz.org jacopo at svn.ofbiz.org
Tue Mar 15 05:12:29 EST 2005


Author: jacopo
Date: 2005-03-15 04:12:22 -0600 (Tue, 15 Mar 2005)
New Revision: 4669

Modified:
   trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCart.java
Log:
The selectedAmount was not set in OrderItems.

Modified: trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCart.java
===================================================================
--- trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCart.java	2005-03-14 20:52:45 UTC (rev 4668)
+++ trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCart.java	2005-03-15 10:12:22 UTC (rev 4669)
@@ -2536,6 +2536,7 @@
                 orderItem.set("prodCatalogId", item.getProdCatalogId());
                 orderItem.set("productCategoryId", item.getProductCategoryId());
                 orderItem.set("quantity", new Double(item.getQuantity()));
+                orderItem.set("selectedAmount", new Double(item.getSelectedAmount()));
                 orderItem.set("unitPrice", new Double(item.getBasePrice()));
                 orderItem.set("unitListPrice", new Double(item.getListPrice()));
 



More information about the Svn mailing list