我有以下问题:
我想以编程方式为我的magento产品添加自定义选项。 这项工作到目前为止,但选项被添加多次,每次商店视图更准确一次,但它们在每个商店视图中都可见。 我只需要一个默认视图选项。这是我使用的代码:
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', 1234);
if(!$product) {
$product = Mage::getModel('catalog/product');
} else {
$product = Mage::getModel('catalog/product')->load($product->getId());
}
$customOpt = array(
'is_delete' => 0,
'is_require' => true,
'title' => 'ProcessingImport',
'type' => 'drop_down',
'price_type' => 'fixed',
'price' => 0,
'sort_order' => 0,
'values' => array(
array(
'is_delete' => 0,
'title' => 'Import ' . rand(10, 100),
'price_type' => 'fixed',
'price' => 0,
'sku' => 'SKUImportOne',
'option_type_id' => -1
),
array(
'is_delete' => 0,
'title' => 'Import ' . rand(10, 100),
'price_type' => 'fixed',
'price' => 0,
'sku' => 'SKUImportTwo',
'option_type_id' => -1
)
),
);
$product->setCanSaveCustomOptions(true);
$product->setProductOptions(array($customOpt));
$product->save();
有人知道为什么每次观看多次添加它? 这是一张你可以看到我的问题的图片:
提前致谢!
答案 0 :(得分:1)
我在代码中找到了解决方案。 在上面发布的代码之后,我有一个循环,我为不同的商店设置了几个价格。而且magento是如此聪明"它为每个商店再次保存所有选项。 我在此循环后放置了代码剪切,该选项仅创建一次。