Author: eckardjf
Date: Fri Apr 16 18:26:00 2010
New Revision: 935022

URL: http://svn.apache.org/viewvc?rev=935022&view=rev
Log:
added supplierProductId to ShoppingCartItem with getter & setter

Modified:
    
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java

Modified: 
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java?rev=935022&r1=935021&r2=935022&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java
 (original)
+++ 
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java
 Fri Apr 16 18:26:00 2010
@@ -88,6 +88,7 @@ public class ShoppingCartItem implements
     private String delegatorName = null;
     private String prodCatalogId = null;
     private String productId = null;
+    private String supplierProductId = null;
     private String parentProductId = null;
     private String externalId = null;
     /** ends up in orderItemTypeId */
@@ -1662,6 +1663,17 @@ public class ShoppingCartItem implements
     public String getProductId() {
         return productId;
     }
+
+    /** Returns the item's supplierProductId. */
+    public String getSupplierProductId() {
+        return supplierProductId;
+    }
+
+    /** Set the item's supplierProductId. */
+    public void setSupplierProductId(String supplierProductId) {
+        this.supplierProductId = supplierProductId;
+    }
+
     /** Set the item's description. */
     public void setName(String itemName) {
         this.itemDescription = itemName;


Reply via email to