Śledzę wiele artykułów, ale nie jestem w stanie utworzyć atrybutu wielokrotnego wyboru. i otrzymuję następujący błąd.
a: 5: {i: 0; s: 50: „Nie znaleziono modelu źródłowego” dla atrybutu „exinent1”; i: 1; s: 3008: „# 0 C: \ wamp \ www \ magento8 \ app \ code \rdzeń.
a mój skrypt to:
<?php
$installer = $this;
$installer->startSetup();
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
$entityTypeId = $setup->getEntityTypeId('customer');
$attributeSetId = $setup->getDefaultAttributeSetId($entityTypeId);
$attributeGroupId = $setup->getDefaultAttributeGroupId($entityTypeId, $attributeSetId);
$setup->addAttribute('customer', 'exinent1', array(
'input' => 'multiselect',
'type' => 'varchar',
'backend' => 'eav/entity_attribute_backend_array',
'label' => 'exinent1',
'visible' => 1,
'required' => 0,
'user_defined' => 1,
'option' => array (
'value' => array('optionone' => array('First Option'),
'optiontwo' => array('Second Option'),
'optionthree' => array('Third Option'),
)
),
));
$setup->addAttributeToGroup(
$entityTypeId,
$attributeSetId,
$attributeGroupId,
'exinent1',
'100'
);
$oAttribute = Mage::getSingleton('eav/config')->getAttribute('customer', 'exinent1');
$oAttribute->setData('used_in_forms', array('adminhtml_customer'));
$oAttribute->save();
$setup->endSetup();
i config.xml to:
<?xml version="1.0"?>
<config>
<modules>
<Exinent_Cusatt>
<version>3.1.5.6</version>
</Exinent_Cusatt>
</modules>
<global>
<resources>
<exinent_cusatt_setup>
<setup>
<module>Exinent_Cusatt</module>
</setup>
</exinent_cusatt_setup>
</resources>
</global>
</config>
sql
multiselect-attribute
customer-attribute
sivakumar
źródło
źródło
Odpowiedzi:
Myślę, że popełniłeś wiele błędów .. Proszę bardzo,
etc / config.xml
Pomocnik / Data.php:
Mode / Eav / Entity / Attribute / Source / Customeroptions14042122330.php
sql / customerattribute1404212233_setup / mysql4-install-0.1.0.php
To jest… Wystarczy włączyć moduł deklarować pulę kodów, i nie mylić z liczbami ..
<customerattribute1404212233_setup>
To po prostu losowe nie dla ciebie atrybutu tożsamości, aby zapobiec powielaniu wpisu. ..Twoje zdrowie ..!źródło
Cześć Elavarasan i Sivakumar,
Nie jest dobrym pomysłem, aby wywoływać kod opcji w postaci statycznej ... Po prostu musisz pobrać za pomocą tabeli Eav
Surcemodel getAllOptions () powinien być
źródło