添加到购物车自定义选项的虚拟产品在magento


add to cart with custom option for virtual product in magento

我有一个单控制器类,可以将项目添加到购物车中。我的场景是
我的产品有两个自定义选项。一个是孩子,另一个是婴儿
我想从这两个选项中添加一个自定义选项到我的购物车中。但是,我尝试了很多不同的方式。但是,我在结账页面上看不到任何自定义选项。我该怎么做。这是我的代码示例。

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'); 
}  

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

$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();