“是/否”下拉自定义产品属性的默认值


10

我使用以下脚本安装属性:

$installer = $this;
$installer->startSetup();

$installer->removeAttribute('catalog_product', 'customizableonly');
$installer->addAttribute('catalog_product', 'customizableonly', array(
        'group'                     => 'General',
        'input'                     => 'select',
        'type'                      => 'int',
        'label'                     => 'Customizable Only',
        'source'                    => 'eav/entity_attribute_source_boolean',
        'global'                    => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
        'visible'                   => 1,
        'required'                  => 0,
        'visible_on_front'          => 0,
        'is_html_allowed_on_front'  => 0,
        'is_configurable'           => 0,
        'searchable'                => 0,
        'filterable'                => 0,
        'comparable'                => 0,
        'unique'                    => false,
        'user_defined'              => false,
        'default'           => 0,
        'is_user_defined'           => false,
        'used_in_product_listing'   => true
));

$this->endSetup();

也尝试过 $installer = new Mage_Catalog_Model_Resource_Eav_Mysql4_Setup('core_setup');

然后在其他代码中使用属性的值。但是我总能得到null。我发现,该属性未设置为默认值。当我打开产品时-会显示下拉列表No,但是当我在代码中获得它的值时,它是null。如果我仅单击下拉列表,只需设置No并保存产品-一切正常。

如何克服呢?


Answers:


14

尝试将默认值设置为字符串

'default' => '0'

或为空

'default' => ''

更新资料

当您为不受影响的旧产品添加新产品时,将添加默认值。

尝试通过批量操作解决产品管理中的问题

在管理产品内部,有一个称为“更新属性”的操作。选择要更新的所有产品,然后选择“更新属性”并在其中添加所有新信息。


1
我已经尝试过了,但是没有用。:(
Syspect 2014年

3

您应该为所有现有实体手动设置值:

$productIds = Mage::getResourceModel('catalog/product_collection')
    ->getAllIds();

// Now create an array of attribute_code => values
$attributeData = array("my_attribute_code" =>"my_attribute_value");

// Set the store to affect. I used admin to change all default values
$storeId = 0; 

// Now update the attribute for the given products.
Mage::getSingleton('catalog/product_action')
    ->updateAttributes($productIds, $attributeData, $storeId);

来源:https : //stackoverflow.com/questions/4906497/default-attribute-value-for-all-product-in-magento。请参阅Asrar Malik的答案。


3

我遇到的问题是,使用选择属性上方的代码段创建了而不是yes / no属性。为了解决这个问题,我不得不使用

'input'             => 'boolean'

代替:

'input'             => 'select'

0

我也无法将默认值0添加到yes / no属性。

因此,我使用了一个事件来添加默认值0

<frontend>
    <events>
        <customer_save_before>
            <observers>
                <xx_save_observer>
                    <type>singleton</type>
                    <class>xx/observer</class>
                    <method>customerSaveBefore</method>
                </xx_save_observer>
            </observers>
        </customer_save_before>
    </events>
</frontend>

方法:

public function customerSaveBefore(Varien_Event_Observer $observer)
{
    try {
        $customer = $observer->getCustomer();
        if (!$customer->getYourCustomAttribute()) {
            $customer->setYourCustomAttribute(0);
        }
    } catch ( Exception $e ) {
        Mage::log( "customer_save_before observer failed: ".$e->getMessage());
    }
}

0

用于向magento创建模块添加yes / no自定义属性,如下所示。

http://www.pearlbells.co.uk/how-to-add-custom-attribute-dropdown-to-category-section-magento/

    <?php
$this->startSetup();
$this->addAttribute(Mage_Catalog_Model_Category::ENTITY, 'featured_product', array(
    'group'         => 'General Information',
    'input'         => 'select',
    'type'          => 'text',
    'label'         => 'Featured Product',
    'backend'       => '',
    'visible'       => true,
    'required'      => false,
    'visible_on_front' => true,
    'global'        => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
    'source' => 'eav/entity_attribute_source_boolean',
));

$this->endSetup();
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.