0

次のような属性をプログラムで作成する関数があります。

     function createAttribute($code, $label, $attribute_type, $product_type,$attributeSetId)
    {
    $_attribute_data = array(
    'attribute_code' => $code,
    'is_global' => '1',
    'frontend_input' => $attribute_type, 
    'default_value_text' => '',
    'default_value_yesno' => '0',
    'default_value_date' => '',
    'default_value_textarea' => '',
    'is_unique' => '0',
    'is_required' => '0',
    'apply_to' => array($product_type), 
    'is_configurable' => '0',
    'is_searchable' => '0',
    'is_visible_in_advanced_search' => '0',
    'is_comparable' => '0',
    'is_used_for_price_rules' => '0',
    'is_wysiwyg_enabled' => '0',
    'is_html_allowed_on_front' => '1',
    'is_visible_on_front' => '1',
    'used_in_product_listing' => '0',
    'used_for_sort_by' => '0',
    'is_filterable' => '1',
    'frontend_label' => $label,

);
$model = Mage::getModel('catalog/resource_eav_attribute');
if (!isset($_attribute_data['is_configurable'])) {
    $_attribute_data['is_configurable'] = 0;
}
if (!isset($_attribute_data['is_filterable'])) {
    $_attribute_data['is_filterable'] = 0;
}
if (!isset($_attribute_data['is_filterable_in_search'])) {
    $_attribute_data['is_filterable_in_search'] = 0;
}
if (is_null($model->getIsUserDefined()) || $model->getIsUserDefined() != 0) {
    $_attribute_data['backend_type'] = $model->getBackendTypeByInput($_attribute_data['frontend_input']);
}


$model2=Mage::getModel('eav/entity_setup','core_setup');
$attributeGroupId = '';
if($attributeSetId)
{
     $attributeGroup=$model2->getAttributeGroup('catalog_product',$attributeSetId,'Noutati');

if(array_key_exists('attribute_group_id',$attributeGroup))
{
    $attributeGroupId = $attributeGroup['attribute_group_id'];
    $model->setAttributeGroupId($attributeGroupId);
}   
    $model->setAttributeSetId($attributeSetId);
}   





$model->addData($_attribute_data);
$model->setEntityTypeId(Mage::getModel('eav/entity')->setType('catalog_product')->getTypeId());
$model->setIsUserDefined(1);



try {
    $model->save();

    $attribute = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product',$code);
    $attributeId = $attribute->getId();
    assignAttributeToGroup($attributeId,$attributeGroupId,$attributeSetId);

} catch (Exception $e) { echo '<p>Sorry, error occured while trying to save the attribute. Error: '.$e->getMessage().'</p>'; }

 }

上記の関数は、この Web サイトから取得されます。次のように、スクリプトでこの関数を呼び出します。

  createAttribute('test', 'Label Test', "multiselect", "simple",'77');

ご覧のとおり、magento ストア用に作成するすべての属性は複数選択ドロップダウンであるため、次の関数を使用して新しく作成した属性の属性値を追加します。

 function addAttributeValue($arg_attribute, $arg_value)
{
    $attribute_model        = Mage::getModel('eav/entity_attribute');

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

    if(!attributeValueExists($arg_attribute, $arg_value))
    {
        $value['option'] = array($arg_value,$arg_value);
        $result = array('value' => $value);
        $attribute->setData('option',$result);
        $attribute->save();
    }

    $attribute_options_model= Mage::getModel('eav/entity_attribute_source_table') ;
    $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;
}

属性を作成するときに、どのような値になるか正確にわからないため、この方法で行う必要があります

両方の関数は完全に機能し、属性を作成し、正しい属性セットに追加し、必要な属性値も正しく追加しますが、次のシナリオに直面しています:

商品を作成し、上記の関数で新しく作成した属性を追加したセットに追加すると、商品編集ページのバックエンドに属性が表示されますが、何かを保存しようとすると保存されません。ページが更新され、セッションからのメッセージは製品が保存されましたが、選択された属性値はその製品にはありません。実際には、製品バックエンド編集ページからこの属性の値を保存できません

スクリプトの実行後にすべてのインデックス管理を更新しましたが、問題は解決しません。また、この方法で 1000 を超える属性を作成し、それぞれに少なくとも 4 ~ 5 の値があるため、データ量が膨大になることにも言及する必要があります....だから、これをプログラムで機能させる必要があります。上記が正しく機能しない理由について誰かが私にヒントを与えることができれば、本当に感謝しています。

よろしくお願いします

4

1 に答える 1

1

何が問題なのか具体的にはわかりませんが、カタログ EAV の処理を​​担当するクラス、つまりMage_Catalog_Model_Resource_Setup- 以前はMage_Catalog_Model_Resource_Eav_Mysql4_Setup. このクラスとその親Mage_Eav_Model_Entity_Setupには、CRUD 属性と列挙値に必要なものがすべて含まれています。

$setup = Mage::getResourceModel('catalog/setup','catalog_setup');
$setup->addAttribute(
    'catalog_product',
    'your_attr_code',
    array(
        'type'  => 'text',
        'label' => 'Test'
    )
);

このクラスを使用する利点は_prepareValues()、カタログ エンティティ属性 (参照テcatalog_eav_attribute​​ーブル) に固有の既定のパラメーターと、すべての EAV 属性 (参照テeav_attribute​​ーブルと親_prepareValues()メソッド) に共通のパラメーターを設定するメソッドがあることです。

理解と例の最良の情報源は、 Mage/Catalog/sql/およびMage/Catalog/data/のセットアップ スクリプトを参照することです。

于 2013-04-19T13:34:11.487 に答える