まず第一に:私はMagento1.7.0.2を使用しています。バンドルされた商品をその場で作成してカートに追加する機能をプログラムしました。この製品はバックエンドで正しく表示されますが、カートからこのアイテムを編集したいときに、フロントエンドでオプションがありません。
また、この生成されたアイテムをカートに適切に追加できないという問題が発生しました。エラーが表示されます:
Some of the products below do not have all the required options. Please edit them and configure all the required options.
生成された製品をバックエンドで開いてそこに保存すると、前面にすべてのオプションが正しく表示されますが、他のエラーは引き続き表示されます。
これまでの私のコードは次のとおりです。
$storeID = 1;
$websiteIDs = array(1);
$cats = array( $this->categoryPresent );
$productCounter = 0;
$presentParams['additional'] = 171; //Product ID
$presentParams['box'] = 167; //Product ID
$presentParams['count'] = 3; //amount of ordered presents
//Create base bundle with all required attributes
$product = Mage::getModel('catalog/product');
$p = array(
'sku_type' => 0,
'sku' => 'present - ' . strtotime('now'),
'name' => "Present",
'description' => 'Present',
'short_description' => 'Present',
'type_id' => 'bundle',
'attribute_set_id' => 9,
'weight_type' => 0,
'visibility' => 4,
'price_type' => 0,
'price_view' => 0,
'status' => 1,
'created_at' => strtotime('now'),
'category_ids' => $cats,
'store_id' => $storeID,
'website_ids' => $websiteIDs,
'base_price_amount' => '',
'base_price_base_amount' => 1,
'base_price_base_unit' => 'St',
'options_container' => 'container1'
);
$product->setData($p);
$product->setStockData(array(
'is_in_stock' => 1,
'qty' => 99999
));
$optionRawData = array();
$selectionRawData = array();
//Insert Box
$productCounter++;
$optionRawData[] = array(
'required' => 1,
'option_id' => '',
'position' => $productCounter,
'type' => 'select',
'title' => 'Box',
'default_title' => 'Box',
'delete' => '',
);
$selectionRawData[$productCounter-1] = array();
$selectionRawData[$productCounter-1][] = array(
'product_id' => $presentParams['box'],
'selection_qty' => 1,
'selection_can_change_qty' => 0,
'position' => $productCounter,
'is_default' => 1,
'selection_id' => '',
'selection_price_type' => 0,
'selection_price_value' => 0.0,
'option_id' => '',
'delete' => ''
);
//Insert Additional
$productCounter++;
$optionRawData[] = array(
'required' => 1,
'option_id' => '',
'position' => $productCounter,
'type' => 'select',
'title' => 'Zubehör',
'default_title' => 'Zubehör',
'delete' => '',
);
$selectionRawData[$productCounter-1] = array();
$selectionRawData[$productCounter-1][] = array(
'product_id' => $presentParams['additional'],
'selection_qty' => 1,
'selection_can_change_qty' => 0,
'position' => $productCounter,
'is_default' => 1,
'selection_id' => '',
'selection_price_type' => 0,
'selection_price_value' => 0.0,
'option_id' => '',
'delete' => ''
);
// Set the Bundle Options & Selection Data ; Save the present
Mage::register('product', $product);
Mage::register('current_product', $product);
$product->setCanSaveConfigurableAttributes(false);
$product->setCanSaveCustomOptions(true);
$product->setCanSaveBundleSelections(true);
$product->setAffectBundleProductSelections(true);
$product->setBundleOptionsData($optionRawData);
$product->setBundleSelectionsData($selectionRawData);
$product->save();
//Add Product to cart
$cart = Mage::getSingleton('checkout/cart');
//Try an other way of setting the bundled_option
/*$option_ids = $product->getTypeInstance(true)->getOptionsIds($product);
$selectionCollection = $product->getTypeInstance(true)->getSelectionsCollection($option_ids, $product);
$bundled_items = array();
foreach($selectionCollection as $key => $option){
//$bundled_items[$key] = $option->product_id;
$bundled_items[$key] = 1;
}
$params = array(
'product' => $product->getId(),
'related_product' => null,
'bundle_option' => $bundled_items,
'qty' => $presentParams['count'],
);*/
$cart->addProduct( $product, $presentParams['count']);
$cart->save();
Mage::getSingleton('checkout/session')->setCartWasUpdated(true);
欠けているコードはほんの少しあると思います。誰かがこの問題を解決するのを手伝ってくれることを願っています。
アップデート
バンドルされた製品はフロントエンドで生成されます。そのため、私が見つけた1つのことは、新製品のインデックス作成です。追加のコードは次のとおりです。
//Index new item
$stockItem = Mage::getModel('cataloginventory/stock_item')->loadByProduct($product->getId());
$stockItem->setForceReindexRequired(true);
Mage::getSingleton('index/indexer')->processEntityAction(
$stockItem,
Mage_CatalogInventory_Model_Stock_Item::ENTITY,
Mage_Index_Model_Event::TYPE_SAVE
);
$product->setForceReindexRequired(true)->setIsChangedCategories(true);
Mage::getSingleton('index/indexer')->processEntityAction($product, Mage_Catalog_Model_Product::ENTITY, Mage_Index_Model_Event::TYPE_SAVE);
これにより、生成された製品が応答カテゴリのリストビューに正しくリストされます。しかし、バンドルの内容はまだ欠落しています。