Magento - 添加新的分组产品时如何设置关联产品

发布于 2024-10-21 18:32:03 字数 813 浏览 4 评论 0原文

$newProduct = Mage::getModel('catalog/product');
$newProduct->setSku('testsku');
$newProduct->setPrice(100);
$newProduct->setAttributeSetId(4); 
$newProduct->setCategoryIds(array(3,4));
$newProduct->setTypeId("grouped");
$newProduct->setName('Product Name');
$newProduct->setDescription('The Product Description');
$newProduct->setShortDescription('Brief Description');
$newProduct->setStatus(1);
$newProduct->setTaxClassId('2');            
$newProduct->setCreatedAt(strtotime('now'));
$newProduct->save();

但我不知道如何将关联产品添加到我的新分组产品中。 我尝试了这段代码:

$new_product = Mage::getResourceModel('catalog/product_type_grouped')
        ->setUsedProducts($newProduct->getId(), array(7390));

它不正确。我希望有人能帮助我。

你好,拉皮

$newProduct = Mage::getModel('catalog/product');
$newProduct->setSku('testsku');
$newProduct->setPrice(100);
$newProduct->setAttributeSetId(4); 
$newProduct->setCategoryIds(array(3,4));
$newProduct->setTypeId("grouped");
$newProduct->setName('Product Name');
$newProduct->setDescription('The Product Description');
$newProduct->setShortDescription('Brief Description');
$newProduct->setStatus(1);
$newProduct->setTaxClassId('2');            
$newProduct->setCreatedAt(strtotime('now'));
$newProduct->save();

But I don't know how to add Associated products to my new Grouped product.
I tried this code:

$new_product = Mage::getResourceModel('catalog/product_type_grouped')
        ->setUsedProducts($newProduct->getId(), array(7390));

It is not correct. I hope somebody can help me.

Greetings, Rapi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏日落 2024-10-28 18:32:04

最近我需要这个用于 magento 中的可配置产品。也许这会有所帮助:

$loader = Mage::getResourceModel('catalog/product_type_configurable')->load($configurableProduct, NULL);
$children = $configurableProduct->getTypeInstance()->getUsedProductIds();   // actual list of children 

$children[] = $product->getId();    // some simple product id
$children = array_unique($children);
$loader->saveProducts($configurableProduct, array_values($children));   // save new list of children to configurable product

Recently I need this for configurable products in magento. Maybe this will help:

$loader = Mage::getResourceModel('catalog/product_type_configurable')->load($configurableProduct, NULL);
$children = $configurableProduct->getTypeInstance()->getUsedProductIds();   // actual list of children 

$children[] = $product->getId();    // some simple product id
$children = array_unique($children);
$loader->saveProducts($configurableProduct, array_values($children));   // save new list of children to configurable product
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文