Magento2-製品属性オプションをプログラムで追加


32

M2で製品属性オプションをプログラムで追加する正しい(公式の)方法は何ですか?例:manufacturer製品属性。明らかに、既存のオプションは「Admin」タイトル値と一致します。

回答:


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;
    }
}

次に、同じクラス内で、または依存性注入を介してそれを含めて、を呼び出してオプションIDを追加または取得できますcreateOrGetId($attributeCode, $label)

たとえば、My\Module\Helper\Dataとして注入する$this->moduleHelper場合、次を呼び出すことができます:

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

「ABC Corp」が既存のメーカーの場合、IDを取得します。そうでない場合は、追加されます。

2016年9月9日更新: Ruud N.によると、元のソリューションではCatalogSetupが使用されていたため、Magento 2.1でバグが発生していました。この修正されたソリューションは、そのモデルをバイパスし、オプションとラベルを明示的に作成します。2.0以降で動作するはずです。


3
それはあなたが得るつもりであるのと同じくらい公式です。ルックアップとオプションの追加はすべて、Magentoコアを経由します。私のクラスは、これらのコアメソッドを簡単に使用できるラッパーです。
ライアンホー

1
こんにちはライアン、オプションで値を設定しないでください、これはmagentoが使用する内部IDですの実装に起因するいくつかの深刻な問題 Magento\Eav\Model\ResourceModel\Entity\Attribute::_processAttributeOptions$option->setValue($label);コードからステートメントを削除すると、オプションが保存されます。フェッチすると、Magentoはeav_attribute_optionテーブルの自動インクリメントから値を返します。
quickshiftin

2
これをforeach関数に追加すると、2回目の反復で「Magento \ Eav \ Model \ Entity \ Attribute \ OptionManagement :: setOptionValue()は文字列、オブジェクトが指定されている必要があります」エラーが発生します
JELLEJ

1
はい、このコードは機能しません
Sourav

2
@JELLEJ Uncaught TypeError:Magento \ Eav \ Model \ Entity \ Attribute \ OptionManagement :: setOptionValue()に渡される引数3は文字列型である必要がある場合、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');

次に、magentoが期待する方法でオプション配列を生成する必要があります。

$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);

addAttributeの第三paramが配列パラメータ[「オプション」]取ることができます
DWils

10

:Magentoの\ EAV \セットアップ\ EavSetupFactoryあるいは\ Magentoの\カタログ\セットアップ\ CategorySetupFactoryクラスを使用すると、次のような問題につながる可能性がhttps://github.com/magento/magento2/issues/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データインターフェイスを一貫して使用していないことに注意してください。
ライアンホー16

3
こんにちは@ラッド、ライアンの答えに対する私のコメントをご覧ください。テーブルの$option->setValue()内部magento option_idフィールド用であるため、呼び出したくないでしょうeav_attribute_option
quickshiftin

ありがとうございました。それも私が見つけたものです。それに応じて私の答えを編集します。
ルードN.

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バックエンドにアクセスし、属性編集ページにアクセスしていることを前提としています(URLはadmin / catalog / 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
これはひどい長期的な解決策です。これらのセレクターが同じままであることを確実に期待することはできません。実際に期待どおりに動作する場合、これは最善の回避策です。
-dombrobrogia

@domdambrogiaは同意します。これは回避策です。
th3pirat3
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.