magento同一产品有许多数量不同的尺寸改变一次

时间:2013-06-28 07:44:57

标签: magento

我对magento有一点经验。我的所有产品都有自定义尺寸。 所有产品都有不同的尺寸和不同的价格。

客户将一件数量为5的产品添加到购物车。所以这种尺寸的5种产品被添加到购物车中。当客户添加不同尺寸的其他产品时,购物车中的所有产品都会更改为此尺寸。

如何防止此行为?

1 个答案:

答案 0 :(得分:0)

除非您以编程方式执行此操作(即编写代码),否则无法执行此操作。

当Magento添加产品时,它首先会查看报价/购物车以查看是否已存在。如果有,它会拉出那个并增加数量。没有办法把它关掉。

以编程方式,您非常手动将商品添加到购物车。这就是......

$cart = Mage::getSingleton("checkout/cart");

foreach ($products_to_add as $product_id => $custom_options) {
  $product = Mage::getModel("catalog/product")->load($product_id);
  $options = new Varien_Object(array("options" => $custom_options,
                                     "qty" => 1));

  // some products may result in multiple products getting added to cart
  // I beleive this pulls them all and sets the custom options accordingly
  $add_all = $product->getTypeInstance(true)
      ->prepareForCartAdvanced($options, $product, Mage_Catalog_Model_Product_Type_Abstract::PROCESS_MODE_FULL);

  foreach ($add_all as $add_me) {
    $item = Mage::getModel('sales/quote_item');
    $item->setStoreId(Mage::app()->getStore()->getId());
    $item->setOptions($add_me->getCustomOptions())
      ->setProduct($add_me);

    $item->setQty(1);
    $cart->getQuote()->addItem($item);
  }
}

// when done adding all the items, finally call save on the cart
$cart->save();