1

我在管理产品上创建了一个选项卡。通过以下方式。

  <adminhtml_catalog_product_edit>
    <reference name="product_tabs">
        <action method="addTab" ifconfig="customoptionspricing/general/enable" ifvalue="1">
            <name>customoptionspricing_tab</name>
            <block>customoptionspricing/adminhtml_catalog_product_tab</block>
        </action>
    </reference>
</adminhtml_catalog_product_edit> 

选项卡显示完美,我在其 phtml 文件中显示了一些自定义数据。

现在我必须在此选项卡的内容中显示产品自定义属性。我不知道如何使用此 phtml 文件或任何其他方式添加此内容。

我试图添加这样的属性:

    $setup = new Mage_Eav_Model_Entity_Setup('core_setup');
    $setup->addAttribute('catalog_product', 'is_cop_product', array(
                 'group'    => 'Custom Options Pricing',
                 'label'    => 'Is Custom Options Pricing (COP) Product',            
                 'type' => 'int',
                 'input'    => 'boolean',                     
                 'visible'  => true,
                 'required' => true,
                 'position' => 1,
                 'global'   => 'Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL',
         'note'    => "is product a cop product"
    ));

但这样它会创建另一个具有此属性的选项卡(新组)。

所以我需要在我已经创建的选项卡上添加这个属性。??谢谢

4

1 回答 1

0

尝试设置used_in_forms

Mage::getSingleton( 'eav/config' )
    ->getAttribute( 'catalog_product','is_cop_product')
    ->setData( 'used_in_forms', array( 'customoptionspricing_tab' ) )
    ->save();

这在 1.8 和 1.9 上对我们有用。在我们的例子中,这是一个客户属性,但我不明白为什么它不适用于产品。

于 2014-07-11T14:18:57.463 回答