我正在为我们的一个客户配置一个magento网上商店。他们有颜色代码,因此我必须设置可配置的产品。但是,在网上商店展示可配置产品之前,我需要选择一个属性来分配给它......
如果我必须导入+/- 800个产品的整个目录,这真的很不方便......
我已经找到了自动生成的下一个脚本但是我不知道在哪里放它...我已经尝试在configurable.php文件中使用它,但是没有用。请帮帮我!
foreach($configAttrCodes as $attrCode){
$super_attribute= Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product',$attrCode->code);
$configurableAtt = Mage::getModel('catalog/product_type_configurable_attribute')->setProductAttribute($super_attribute);
$newAttributes[] = array(
'id' => $configurableAtt->getId(),
'label' => $configurableAtt->getLabel(),
'position' => $super_attribute->getPosition(),
'values' => $configurableAtt->getPrices() ? $configProduct->getPrices() : array(),
'attribute_id' => $super_attribute->getId(),
'attribute_code' => $super_attribute->getAttributeCode(),
'frontend_label' => $super_attribute->getFrontend()->getLabel(),
);
echo "test ";
}
echo "test2 ";
if(empty($existingAtt) && !empty($newAttributes)){
$configProduct->setCanSaveConfigurableAttributes(true);
$configProduct->setConfigurableAttributesData($newAttributes);
$configProduct->save();
答案 0 :(得分:0)
此脚本最好用shell脚本为产品分配配置属性。它不完整。我不得不在这个脚本中添加很多内容,比如能够提供产品ID,以及要配置的属性代码以及可配置的属性。
很难向你展示它是什么,因为你需要的不仅仅是这个脚本来分配属性。我运行一个脚本来抓取可配置产品的所有ID,然后用它们创建一个缓存文件。我他们使用另一个脚本将这些ID提供给上面的脚本,以便它可以配置它们。总共有3个脚本。然后我使用shell脚本来运行该过程。
这是由另一位用户发布的,旨在帮助您指明您需要前进的方向,但绝不是一个独立的脚本。我可以通过电子邮件向您发送所有三个脚本的源文件,如果有帮助,您可以将它们反转以查看我的操作。