📄 shoppingcart.java
字号:
/*
* $Id: ShoppingCart.java,v 1.39 2004/03/05 19:45:54 ajzeneski Exp $
*
* Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.ofbiz.order.shoppingcart;
import java.text.NumberFormat;
import java.util.*;
import java.sql.Timestamp;
import org.ofbiz.base.util.*;
import org.ofbiz.entity.GenericDelegator;
import org.ofbiz.entity.GenericEntityException;
import org.ofbiz.entity.GenericPK;
import org.ofbiz.entity.GenericValue;
import org.ofbiz.order.order.OrderReadHelper;
import org.ofbiz.order.shoppingcart.product.ProductPromoWorker;
import org.ofbiz.service.LocalDispatcher;
import org.ofbiz.product.store.ProductStoreWorker;
/**
* <p><b>Title:</b> ShoppingCart.java
* <p><b>Description:</b> Shopping Cart Object.
*
* @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a>
* @author <a href="mailto:cnelson@einnovation.com">Chris Nelson</a>
* @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a>
* @version $Revision: 1.39 $
* @since 2.0
*/
public class ShoppingCart implements java.io.Serializable {
public static final String module = ShoppingCart.class.getName();
private List paymentMethodIds = new LinkedList();
private List singleUsePaymentIds = new LinkedList();
private Map paymentMethodAmounts = new HashMap();
private List paymentMethodTypeIds = new LinkedList();
private Map paymentMethodTypeAmounts = new HashMap();
private String orderType = "SALES_ORDER"; // default orderType
private String poNumber = null;
private String orderId = null;
private String firstAttemptOrderId = null;
private String billingAccountId = null;
private double billingAccountAmt = 0.00;
private String currencyUom = null;
private GenericValue orderShipmentPreference = null;
private String orderAdditionalEmails = null;
private boolean viewCartOnAdd = false;
/** Holds value of order adjustments. */
private List adjustments = new LinkedList();
private List cartLines = new ArrayList();
private Map contactMechIdsMap = new HashMap();
public static class ProductPromoUseInfo {
public String productPromoId;
public String productPromoCodeId;
public double totalDiscountAmount = 0;
public double quantityLeftInActions = 0;
public ProductPromoUseInfo(String productPromoId, String productPromoCodeId, double totalDiscountAmount, double quantityLeftInActions) {
this.productPromoId = productPromoId;
this.productPromoCodeId = productPromoCodeId;
this.totalDiscountAmount = totalDiscountAmount;
this.quantityLeftInActions = quantityLeftInActions;
}
public String getProductPromoId() { return this.productPromoId; }
public String getProductPromoCodeId() { return this.productPromoCodeId; }
public double getTotalDiscountAmount() { return this.totalDiscountAmount; }
public double getQuantityLeftInActions() { return this.quantityLeftInActions; }
}
/** Contains a List for each productPromoId (key) containing a productPromoCodeId (or empty string for no code) for each use of the productPromoId */
private List productPromoUseInfoList = new LinkedList();
/** Contains the promo codes entered */
private Set productPromoCodes = new HashSet();
private List freeShippingProductPromoActions = new ArrayList();
private transient GenericDelegator delegator = null;
private String delegatorName = null;
private String productStoreId = null;
private String webSiteId = null;
private GenericValue userLogin = null;
private GenericValue autoUserLogin = null;
private Locale locale; // holds the locale from the user session
/** don't allow empty constructor */
protected ShoppingCart() {}
/** Creates a new cloned ShoppingCart Object. */
public ShoppingCart(ShoppingCart cart) {
this.delegator = cart.getDelegator();
this.delegatorName = delegator.getDelegatorName();
this.productStoreId = cart.getProductStoreId();
this.paymentMethodIds = cart.getPaymentMethodIds();
this.paymentMethodTypeIds = cart.getPaymentMethodTypeIds();
this.poNumber = cart.getPoNumber();
this.orderId = cart.getOrderId();
this.firstAttemptOrderId = cart.getFirstAttemptOrderId();
this.billingAccountId = cart.getBillingAccountId();
this.orderShipmentPreference = cart.getOrderShipmentPreference();
this.orderAdditionalEmails = cart.getOrderAdditionalEmails();
this.adjustments = new LinkedList(cart.getAdjustments());
this.contactMechIdsMap = new HashMap(cart.getOrderContactMechIds());
this.freeShippingProductPromoActions = new ArrayList(cart.getFreeShippingProductPromoActions());
this.productPromoUseInfoList = new LinkedList(cart.productPromoUseInfoList);
this.productPromoCodes = new HashSet(cart.productPromoCodes);
this.locale = cart.getLocale();
this.currencyUom = cart.getCurrency();
this.viewCartOnAdd = cart.viewCartOnAdd();
// clone the items
List items = cart.items();
Iterator itIt = items.iterator();
while (itIt.hasNext()) {
cartLines.add(new ShoppingCartItem((ShoppingCartItem) itIt.next()));
}
}
/** Creates new empty ShoppingCart object. */
public ShoppingCart(GenericDelegator delegator, String productStoreId, String webSiteId, String currencyUom) {
this.delegator = delegator;
this.delegatorName = delegator.getDelegatorName();
this.productStoreId = productStoreId;
this.webSiteId = webSiteId;
this.currencyUom = currencyUom;
this.orderShipmentPreference = delegator.makeValue("OrderShipmentPreference", null);
// make sure locale is initialized if nothing other than from jvm
// for a web shopping cart this would be set later by the webShoppingCart methods
this.locale = Locale.getDefault();
// set the default view cart on add for this store
GenericValue productStore = ProductStoreWorker.getProductStore(productStoreId, delegator);
String storeViewCartOnAdd = productStore.getString("viewCartOnAdd");
if (storeViewCartOnAdd != null && "Y".equalsIgnoreCase(storeViewCartOnAdd)) {
this.viewCartOnAdd = true;
}
}
public GenericDelegator getDelegator() {
if (delegator == null) {
delegator = GenericDelegator.getGenericDelegator(delegatorName);
}
return delegator;
}
public String getProductStoreId() {
return this.productStoreId;
}
public void setProductStoreId(String productStoreId) {
this.productStoreId = productStoreId;
}
public Locale getLocale() {
return locale;
}
public void setLocale(Locale locale) {
this.locale = locale;
}
// =======================================================================
// Methods for cart items
// =======================================================================
/** Add an item to the shopping cart, or if already there, increase the quantity.
* @return the new/increased item index
* @throws CartItemModifyException
*/
public int addOrIncreaseItem(String productId, double selectedAmount, double quantity, Map features, Map attributes, String prodCatalogId, LocalDispatcher dispatcher) throws CartItemModifyException {
// public int addOrIncreaseItem(GenericValue product, double quantity, HashMap features) {
// Check for existing cart item.
for (int i = 0; i < this.cartLines.size(); i++) {
ShoppingCartItem sci = (ShoppingCartItem) cartLines.get(i);
if (sci.equals(productId, features, attributes, prodCatalogId, selectedAmount)) {
double newQuantity = sci.getQuantity() + quantity;
if (Debug.verboseOn()) Debug.logVerbose("Found a match for id " + productId + " on line " + i + ", updating quantity to " + newQuantity, module);
sci.setQuantity(newQuantity, dispatcher, this);
return i;
}
}
// Add the new item to the shopping cart if it wasn't found.
return this.addItem(0, ShoppingCartItem.makeItem(new Integer(0), productId, selectedAmount, quantity, features, attributes, prodCatalogId, dispatcher, this));
}
public int addOrIncreaseItem(String productId, double quantity, Map features, Map attributes, String prodCatalogId, LocalDispatcher dispatcher) throws CartItemModifyException {
return addOrIncreaseItem(productId, 0.00, quantity, features, attributes, prodCatalogId, dispatcher);
}
/** Add a non-product item to the shopping cart.
* @return the new item index
* @throws CartItemModifyException
*/
public int addNonProductItem(String itemType, String description, String categoryId, double price, double quantity, Map attributes, String prodCatalogId, LocalDispatcher dispatcher) throws CartItemModifyException {
return this.addItem(0, ShoppingCartItem.makeItem(new Integer(0), itemType, description, categoryId, price, 0.00, quantity, attributes, prodCatalogId, dispatcher, this, true));
}
/** Add an item to the shopping cart. */
public int addItem(int index, ShoppingCartItem item) {
if (!cartLines.contains(item)) {
cartLines.add(index, item);
return index;
} else {
return this.getItemIndex(item);
}
}
/** Add an item to the shopping cart. */
public int addItemToEnd(String productId, double amount, double quantity, HashMap features, HashMap attributes, String prodCatalogId, LocalDispatcher dispatcher) throws CartItemModifyException {
return addItemToEnd(ShoppingCartItem.makeItem(null, productId, amount, quantity, features, attributes, prodCatalogId, dispatcher, this));
}
/** Add an item to the shopping cart. */
public int addItemToEnd(ShoppingCartItem item) {
if (!cartLines.contains(item)) {
cartLines.add(item);
return cartLines.size() - 1;
} else {
return this.getItemIndex(item);
}
}
/** Get a ShoppingCartItem from the cart object. */
public ShoppingCartItem findCartItem(String productId, Map features, Map attributes, String prodCatalogId, double selectedAmount) {
// Check for existing cart item.
for (int i = 0; i < this.cartLines.size(); i++) {
ShoppingCartItem cartItem = (ShoppingCartItem) cartLines.get(i);
if (cartItem.equals(productId, features, attributes, prodCatalogId, selectedAmount)) {
return cartItem;
}
}
return null;
}
/** Get all ShoppingCartItems from the cart object with the given productId. */
public List findAllCartItems(String productId) {
if (productId == null) return new LinkedList(this.cartLines);
List itemsToReturn = new LinkedList();
// Check for existing cart item.
for (int i = 0; i < this.cartLines.size(); i++) {
ShoppingCartItem cartItem = (ShoppingCartItem) cartLines.get(i);
if (productId.equals(cartItem.getProductId())) {
itemsToReturn.add(cartItem);
}
}
return itemsToReturn;
}
/** Remove quantity 0 ShoppingCartItems from the cart object. */
public void removeEmptyCartItems() {
// Check for existing cart item.
for (int i = 0; i < this.cartLines.size();) {
ShoppingCartItem cartItem = (ShoppingCartItem) cartLines.get(i);
if (cartItem.getQuantity() == 0.0) {
cartLines.remove(i);
} else {
i++;
}
}
}
/** Returns this item's index. */
public int getItemIndex(ShoppingCartItem item) {
return cartLines.indexOf(item);
}
/** Get a ShoppingCartItem from the cart object. */
public ShoppingCartItem findCartItem(int index) {
if (cartLines.size() <= index)
return null;
return (ShoppingCartItem) cartLines.get(index);
}
/** Remove an item from the cart object. */
public void removeCartItem(int index, LocalDispatcher dispatcher) throws CartItemModifyException {
if (index < 0) return;
if (cartLines.size() <= index) return;
ShoppingCartItem item = (ShoppingCartItem) cartLines.remove(index);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -