「はい/いいえ」ドロップダウンのカスタム製品属性のデフォルト値


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、製品を設定して保存するだけです-すべてが機能します。

これを克服するには?


create drop / attributeの場合は、magento.stackexchange.com
Amit Bera

回答:


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属性の代わりにselect-attributeが作成されるという問題がありました。これを修正するには、使用する必要がありました

'input'             => 'boolean'

の代わりに:

'input'             => 'select'

0

yes / no属性にもデフォルト値0を追加できませんでした。

したがって、イベントを使用してデフォルト値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

以下に示すように、yes / noカスタム属性をmagento createモジュールに追加します。

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();
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.