添加到购物车,其中包含magento中虚拟产品的自定义选项

时间:2013-06-28 09:09:01

标签: php magento checkout product

我有一个控制器类可以用于将项目添加到购物车。我的情景是
我的产品有两个自定义选项。一个是孩子,另一个是婴儿。
我想从这两个中添加一个自定义选项到我的购物车中。但是,我尝试了许多不同的方式。但是,我在结帐页面看不到任何自定义选项。我怎样才能做到这一点。这是我的代码示例。

public function indexAction() {
    $products = explode(',', $this->getRequest()->getParam('products'));
    $cart = Mage::getModel('checkout/cart'); 
    $cart->init(); 
    foreach ($products as $product_id) { 
    if ($product_id == '') { 
continue; 
    } 
    $pModel = Mage::getModel('catalog/product')->load($product_id); 
    $param = array(
        'qty' => 2,
        'options' => array(
        'option_id' => $product_id,
        'default_title' => "Ticket for Child or Infant",
        'title' => "Child 2 to 12"
        )
    );  
    if ($pModel->getTypeId() == Mage_Catalog_Model_Product_Type::TYPE_VIRTUAL) { 
       $cart->addProduct($pModel, new Varien_Object($param));
       Mage::getSingleton('checkout/session')->setCartWasUpdated(true);
    }
    $cart->save();
    $this->_redirect('checkout/cart'); 
}  

1 个答案:

答案 0 :(得分:0)

Soooo,您必须非常手动地将商品添加到购物车。这就是......

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

// $products_to_add is something I made up... 
// associative array of product_ids to an array of their custom options
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 believe 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();