Magento2 - програмно додавання параметрів атрибутів продукту


32

Який правильний (офіційний) спосіб програмного додавання параметра атрибутів продукту в M2? Наприклад, для manufacturerатрибута продукту. Очевидно, що існуючий параметр буде відповідати значенням заголовка "Адміністратор".

Відповіді:


55

Ось підхід, який я придумав для обробки параметрів атрибутів. Клас помічника:

<?php
namespace My\Module\Helper;

class Data extends \Magento\Framework\App\Helper\AbstractHelper
{
    /**
     * @var \Magento\Catalog\Api\ProductAttributeRepositoryInterface
     */
    protected $attributeRepository;

    /**
     * @var array
     */
    protected $attributeValues;

    /**
     * @var \Magento\Eav\Model\Entity\Attribute\Source\TableFactory
     */
    protected $tableFactory;

    /**
     * @var \Magento\Eav\Api\AttributeOptionManagementInterface
     */
    protected $attributeOptionManagement;

    /**
     * @var \Magento\Eav\Api\Data\AttributeOptionLabelInterfaceFactory
     */
    protected $optionLabelFactory;

    /**
     * @var \Magento\Eav\Api\Data\AttributeOptionInterfaceFactory
     */
    protected $optionFactory;

    /**
     * Data constructor.
     *
     * @param \Magento\Framework\App\Helper\Context $context
     * @param \Magento\Catalog\Api\ProductAttributeRepositoryInterface $attributeRepository
     * @param \Magento\Eav\Model\Entity\Attribute\Source\TableFactory $tableFactory
     * @param \Magento\Eav\Api\AttributeOptionManagementInterface $attributeOptionManagement
     * @param \Magento\Eav\Api\Data\AttributeOptionLabelInterfaceFactory $optionLabelFactory
     * @param \Magento\Eav\Api\Data\AttributeOptionInterfaceFactory $optionFactory
     */
    public function __construct(
        \Magento\Framework\App\Helper\Context $context,
        \Magento\Catalog\Api\ProductAttributeRepositoryInterface $attributeRepository,
        \Magento\Eav\Model\Entity\Attribute\Source\TableFactory $tableFactory,
        \Magento\Eav\Api\AttributeOptionManagementInterface $attributeOptionManagement,
        \Magento\Eav\Api\Data\AttributeOptionLabelInterfaceFactory $optionLabelFactory,
        \Magento\Eav\Api\Data\AttributeOptionInterfaceFactory $optionFactory
    ) {
        parent::__construct($context);

        $this->attributeRepository = $attributeRepository;
        $this->tableFactory = $tableFactory;
        $this->attributeOptionManagement = $attributeOptionManagement;
        $this->optionLabelFactory = $optionLabelFactory;
        $this->optionFactory = $optionFactory;
    }

    /**
     * Get attribute by code.
     *
     * @param string $attributeCode
     * @return \Magento\Catalog\Api\Data\ProductAttributeInterface
     */
    public function getAttribute($attributeCode)
    {
        return $this->attributeRepository->get($attributeCode);
    }

    /**
     * Find or create a matching attribute option
     *
     * @param string $attributeCode Attribute the option should exist in
     * @param string $label Label to find or add
     * @return int
     * @throws \Magento\Framework\Exception\LocalizedException
     */
    public function createOrGetId($attributeCode, $label)
    {
        if (strlen($label) < 1) {
            throw new \Magento\Framework\Exception\LocalizedException(
                __('Label for %1 must not be empty.', $attributeCode)
            );
        }

        // Does it already exist?
        $optionId = $this->getOptionId($attributeCode, $label);

        if (!$optionId) {
            // If no, add it.

            /** @var \Magento\Eav\Model\Entity\Attribute\OptionLabel $optionLabel */
            $optionLabel = $this->optionLabelFactory->create();
            $optionLabel->setStoreId(0);
            $optionLabel->setLabel($label);

            $option = $this->optionFactory->create();
            $option->setLabel($optionLabel);
            $option->setStoreLabels([$optionLabel]);
            $option->setSortOrder(0);
            $option->setIsDefault(false);

            $this->attributeOptionManagement->add(
                \Magento\Catalog\Model\Product::ENTITY,
                $this->getAttribute($attributeCode)->getAttributeId(),
                $option
            );

            // Get the inserted ID. Should be returned from the installer, but it isn't.
            $optionId = $this->getOptionId($attributeCode, $label, true);
        }

        return $optionId;
    }

    /**
     * Find the ID of an option matching $label, if any.
     *
     * @param string $attributeCode Attribute code
     * @param string $label Label to find
     * @param bool $force If true, will fetch the options even if they're already cached.
     * @return int|false
     */
    public function getOptionId($attributeCode, $label, $force = false)
    {
        /** @var \Magento\Catalog\Model\ResourceModel\Eav\Attribute $attribute */
        $attribute = $this->getAttribute($attributeCode);

        // Build option array if necessary
        if ($force === true || !isset($this->attributeValues[ $attribute->getAttributeId() ])) {
            $this->attributeValues[ $attribute->getAttributeId() ] = [];

            // We have to generate a new sourceModel instance each time through to prevent it from
            // referencing its _options cache. No other way to get it to pick up newly-added values.

            /** @var \Magento\Eav\Model\Entity\Attribute\Source\Table $sourceModel */
            $sourceModel = $this->tableFactory->create();
            $sourceModel->setAttribute($attribute);

            foreach ($sourceModel->getAllOptions() as $option) {
                $this->attributeValues[ $attribute->getAttributeId() ][ $option['label'] ] = $option['value'];
            }
        }

        // Return option ID if exists
        if (isset($this->attributeValues[ $attribute->getAttributeId() ][ $label ])) {
            return $this->attributeValues[ $attribute->getAttributeId() ][ $label ];
        }

        // Return false if does not exist
        return false;
    }
}

Потім, або в тому ж класі, або включаючи його через ін'єкцію залежності, ви можете додати або отримати свій ідентифікатор опції, зателефонувавши createOrGetId($attributeCode, $label).

Наприклад, якщо ви вводите My\Module\Helper\Dataяк $this->moduleHelper, ви можете зателефонувати:

$manufacturerId = $this->moduleHelper->createOrGetId('manufacturer', 'ABC Corp');

Якщо "ABC Corp" є існуючим виробником, він витягне ідентифікатор. Якщо ні, то це додасть.

ОНОВЛЕНО 2016-09-09: Пер Руд Н., оригінальним рішенням було використано CatalogSetup, що призвело до появи помилки в Magento 2.1. Це переглянуте рішення обходить цю модель, створюючи опцію та ярлик явно. Він повинен працювати на версії 2.0+.


3
Це так само офіційно, як ви збираєтеся отримати. Усі перегляди та додавання опцій проходять через основний Magento. Мій клас - це просто обгортка для тих основних методів, що полегшує їх використання.
Ryan Hoerr

1
Привіт Раян, ви не повинні встановлювати значення для параметра, це внутрішній ідентифікатор, який використовує magento, і я з'ясував важкий шлях, що якщо ви встановите значення на рядкове значення з провідним числом, таким як "123 abc corp", це викликає деякі серйозні проблеми через впровадження Magento\Eav\Model\ResourceModel\Entity\Attribute::_processAttributeOptions. Побачте самі, якщо ви вилучите $option->setValue($label);оператор зі свого коду, він збереже параметр, тоді, коли ви отримаєте його, Magento поверне значення з автоматичного збільшення на eav_attribute_optionтаблиці.
quickshiftin

2
якщо я додаю це у функції foreach, у другій ітерації я отримаю помилку "Magento \ Eav \ Model \ Entity \ Attribute \ OptionManagement :: setOptionValue () має бути типу рядка, об'єкт заданий"
JELLEJ

1
Так, цей код не працює
Sourav

2
@JELLEJ Якщо ви отримуєте проблему Uncaught TypeError: Аргумент 3 передається Magento \ Eav \ Model \ Entity \ Attribute \ OptionManagement :: setOptionValue () повинен бути рядком типу, об'єкт, що задається у функції foreach, то змініть $ option-> setLabel ( $ optionLabel); до $ option-> setLabel ($ label); на лінії 102
Nadeem0035

11

перевірено на Magento 2.1.3.

Я не знайшов працездатного способу створити атрибут за допомогою параметрів відразу. Тому спочатку нам потрібно створити атрибут, а потім додати його параметри.

Введіть наступний клас \ Magento \ Eav \ Setup \ EavSetupFactory

 $setup->startSetup();

 /** @var \Magento\Eav\Setup\EavSetup $eavSetup */
 $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);

Створіть новий атрибут:

$eavSetup->addAttribute(
    'catalog_product',
    $attributeCode,
    [
        'type' => 'varchar',
        'input' => 'select',
        'required' => false,
        ...
    ],
);

Додайте спеціальні параметри.

Функція addAttributeне повертає нічого корисного, яке можна використовувати в майбутньому. Тож після створення атрибуту нам потрібно знайти об’єкт атрибуту самостійно. !!! Важливо нам це потрібно, тому що функція очікує лише attribute_id, але не хоче працювати attribute_code.

У такому випадку нам потрібно отримати attribute_idі передати його функції створення атрибутів.

$attributeId = $eavSetup->getAttributeId('catalog_product', 'attribute_code');

Тоді нам потрібно генерувати масив параметрів так, як очікує магенто:

$options = [
        'values' => [
        'sort_order1' => 'title1',
        'sort_order2' => 'title2',
        'sort_order3' => 'title3',
    ],
    'attribute_id' => 'some_id',
];

Наприклад:

$options = [
        'values' => [
        '1' => 'Red',
        '2' => 'Yellow',
        '3' => 'Green',
    ],
    'attribute_id' => '32',
];

І передайте його у функцію:

$eavSetup->addAttributeOption($options);

3-й парам addAttribute може приймати параметр масиву ['option']
DWils

10

Використання класу Magento \ Eav \ Setup \ EavSetupFactory або навіть \ Magento \ Catalog \ Setup \ CategorySetupFactory може призвести до наступної проблеми: https://github.com/magento/magento2/isissue/4896 .

Класи, які ви повинні використовувати:

protected $_logger;

protected $_attributeRepository;

protected $_attributeOptionManagement;

protected $_option;

protected $_attributeOptionLabel;

 public function __construct(
    \Psr\Log\LoggerInterface $logger,
    \Magento\Eav\Model\AttributeRepository $attributeRepository,
    \Magento\Eav\Api\AttributeOptionManagementInterface $attributeOptionManagement,
    \Magento\Eav\Api\Data\AttributeOptionLabelInterface $attributeOptionLabel,
    \Magento\Eav\Model\Entity\Attribute\Option $option
  ){
    $this->_logger = $logger;
    $this->_attributeRepository = $attributeRepository;
    $this->_attributeOptionManagement = $attributeOptionManagement;
    $this->_option = $option;
    $this->_attributeOptionLabel = $attributeOptionLabel;
 }

Тоді у своїй функції зробіть щось подібне:

 $attribute_id = $this->_attributeRepository->get('catalog_product', 'your_attribute')->getAttributeId();
$options = $this->_attributeOptionManagement->getItems('catalog_product', $attribute_id);
/* if attribute option already exists, remove it */
foreach($options as $option) {
  if ($option->getLabel() == $oldname) {
    $this->_attributeOptionManagement->delete('catalog_product', $attribute_id, $option->getValue());
  }
}

/* new attribute option */
  $this->_option->setValue($name);
  $this->_attributeOptionLabel->setStoreId(0);
  $this->_attributeOptionLabel->setLabel($name);
  $this->_option->setLabel($this->_attributeOptionLabel);
  $this->_option->setStoreLabels([$this->_attributeOptionLabel]);
  $this->_option->setSortOrder(0);
  $this->_option->setIsDefault(false);
  $this->_attributeOptionManagement->add('catalog_product', $attribute_id, $this->_option);

1
Спасибі, ви праві. Я відповідно оновив свою відповідь. Зауважте, що $attributeOptionLabelі $optionє класи ORM; не слід вводити їх безпосередньо. Правильний підхід - ввести їх заводський клас, а потім створити екземпляр у міру необхідності. Також зауважте, що інтерфейси даних API не використовуєте послідовно.
Ryan Hoerr

3
Привіт @ Рудд, дивись мій коментар до відповіді Райана. Ви не хочете дзвонити, $option->setValue()як це стосується внутрішнього option_idполя магенто на eav_attribute_optionстолі.
quickshiftin

Дякую. Це я і дізнався. Відповідно відредагую мою відповідь.
Рууд Н.

0

Для Magento 2.3.3 я виявив, що ви можете скористатися Magento DevTeam підходом.

  • Додати патч
bin/magento setup:db-declaration:generate-patch Vendor_Module PatchName
  • Додайте конструктор CategorySetupFactory
public function __construct(
        ModuleDataSetupInterface $moduleDataSetup,
        Factory $configFactory
        CategorySetupFactory $categorySetupFactory
    ) {
        $this->moduleDataSetup = $moduleDataSetup;
        $this->configFactory = $configFactory;
        $this->categorySetupFactory = $categorySetupFactory;
}
  • Додати атрибут у функції apply ()

    public function apply()
    {
        $categorySetup = $this->categorySetupFactory->create(['setup' => $this->moduleDataSetup]);
    
        $categorySetup->addAttribute(
            \Magento\Catalog\Model\Product::ENTITY,
            'custom_layout',
            [
                'type' => 'varchar',
                'label' => 'New Layout',
                'input' => 'select',
                'source' => \Magento\Catalog\Model\Product\Attribute\Source\Layout::class,
                'required' => false,
                'sort_order' => 50,
                'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE,
                'group' => 'Schedule Design Update',
                'is_used_in_grid' => true,
                'is_visible_in_grid' => false,
                'is_filterable_in_grid' => false
            ]
        );
    }

умм, я просто дізнаюся, що я хотів додати цю відповідь до різного питання. Я просто проживу це тут і додам посилання на цю відповідь там. Я сподіваюся, що це нормально. Це частково відповідає і на це питання :)
embed0

-4

Це НЕ відповідь. Просто вирішення.

Це передбачає, що у вас є доступ до Magento Backend за допомогою браузера, і ви перебуваєте на сторінці атрибутів редагування (URL виглядає як адміністратор / каталог / product_attribute / edit / attribute_id / XXX / key ..)

Перейдіть до консолі браузера (CTRL + SHIFT + J на ​​хром) та вставте наступний код після зміни mimim масиву .

$jq=new jQuery.noConflict();
var mimim=["xxx","yyy","VALUES TO BE ADDED"];
$jq.each(mimim,function(a,b){
$jq("#add_new_option_button").click();
$jq("#manage-options-panel tbody tr:last-child td:nth-child(3) input").val(b);
});

- перевірено на Magento 2.2.2

Детальна стаття - https://tutes.in/how-to-manage-magento-2-product-attribute-values-options-using-console/


1
Це жахливе довгострокове рішення. Ви не можете надійно очікувати, що ці відбірники залишаться тими ж. Це рішення у кращому випадку, якщо воно справді працює так, як очікувалося.
domdambrogia

@domdambrogia згоден. Це вирішення.
th3pirat3
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.