Magento - 添加新的分组产品时如何设置关联产品
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最近我需要这个用于 magento 中的可配置产品。也许这会有所帮助:
Recently I need this for configurable products in magento. Maybe this will help: