5

我创建了相当大的导入脚本,将产品从 CSV 导入到 magento。我还有一个问题要解决。

我对属性使用下拉列表。不幸的是,我无法为单个产品的这些属性设置值。我做了什么:

  • 创建属性集 [php],
  • 为这个集合添加了带有值的下拉属性 [php],
  • 在适当的属性集中添加了新产品,并尝试为我创建的属性设置值。

我尝试了几种方法,这是一种对我来说看起来不错的方法:

private function setOrAddOptionAttribute($product, $arg_attribute, $arg_value) {
    $attribute_model = Mage::getModel('eav/entity_attribute');
    $attribute_options_model = Mage::getModel('eav/entity_attribute_source_table');

    $attribute_code = $attribute_model->getIdByCode('catalog_product', $arg_attribute);

    $attribute = $attribute_model->load($attribute_code);

    $attribute_options_model->setAttribute($attribute);
    $options = $attribute_options_model->getAllOptions(false);

    // determine if this option exists
    $value_exists = false;
    foreach($options as $option) {
        if ($option['label'] == $arg_value) {
            $value_exists = true;
            break;
        }
    }

    // if this option does not exist, add it.
    if (!$value_exists) {
        $attribute->setData('option', array(
            'value' => array(
                'option' => array($arg_value,$arg_value)
            )
        ));
        $attribute->save();
    }


    $product->setData($arg_attribute, $arg_value);
    $product->save();
}

不幸的是,它不起作用。有任何想法吗?我正在使用 Magento 1.7.0.2

4

2 回答 2

12

你可以这样做:

$attr_id = $this->attributeValueExists('manufacturer', 'Samsung');
$product->setData('manufacturer', $attr_id );
$product->save();

public function attributeValueExists($arg_attribute, $arg_value)
{
    $attribute_model        = Mage::getModel('eav/entity_attribute');
    $attribute_options_model= Mage::getModel('eav/entity_attribute_source_table') ;

    $attribute_code         = $attribute_model->getIdByCode('catalog_product', $arg_attribute);
    $attribute              = $attribute_model->load($attribute_code);

    $attribute_table        = $attribute_options_model->setAttribute($attribute);
    $options                = $attribute_options_model->getAllOptions(false);

    foreach($options as $option)
    {
        if ($option['label'] == $arg_value)
        {
            return $option['value'];
        }
    }

    return false;
}

如果您有任何问题,请告诉我。

亲切地。

于 2013-11-27T16:43:10.870 回答
7

我重写了初始函数,使其适用于文本和选择字段:

public function setOrAddOptionAttribute($product, $arg_attribute, $arg_value) {
    $attribute_model = Mage::getModel('eav/entity_attribute');
    $attribute_options_model = Mage::getModel('eav/entity_attribute_source_table');

    $attribute_code = $attribute_model->getIdByCode('catalog_product', $arg_attribute);
    $attribute = $attribute_model->load($attribute_code);
    $attributeType = $attribute->getFrontendInput();
    if ($attributeType == 'select') {

        $attribute_options_model->setAttribute($attribute);
        $options = $attribute_options_model->getAllOptions(false);

        // determine if this option exists
        $value_exists = false;
        foreach ($options as $option) {
            if ($option['label'] == $arg_value) {
                $value_exists = true;
                break;
            }
        }

        // if this option does not exist, add it.
        if (!$value_exists) {
            $attribute->setData('option', array(
                'value' => array(
                    'option' => array($arg_value, $arg_value)
                )
            ));
            $attribute->save();
            // Now get the option value for this newly created attribute value
            $_product = Mage::getModel('catalog/product');
            $attr = $_product->getResource()->getAttribute($arg_attribute);
            if ($attr->usesSource()) {
                $option['value'] = $attr->getSource()->getOptionId($arg_value);
            }

        }
        $product->setData($arg_attribute, $option['value']);
    } else {
        $product->setData($arg_attribute, $arg_value);
    }
}
于 2016-02-01T13:54:22.437 回答