Este es el enfoque que se me ocurrió para manejar las opciones de atributos. Clase auxiliar:
<?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;
}
}
Luego, ya sea en la misma clase o incluyéndolo a través de inyección de dependencia, puede agregar u obtener su ID de opción llamando createOrGetId($attributeCode, $label)
.
Por ejemplo, si inyecta My\Module\Helper\Data
como $this->moduleHelper
, puede llamar a:
$manufacturerId = $this->moduleHelper->createOrGetId('manufacturer', 'ABC Corp');
Si 'ABC Corp' es un fabricante existente, extraerá la identificación. Si no, lo agregará.
ACTUALIZADO 09/09/2016: según Ruud N., la solución original utilizaba CatalogSetup, lo que provocó un error que comenzó en Magento 2.1. Esta solución revisada evita ese modelo, creando la opción y la etiqueta explícitamente. Debería funcionar en 2.0+.
Magento\Eav\Model\ResourceModel\Entity\Attribute::_processAttributeOptions
. Compruébelo usted mismo, si elimina la$option->setValue($label);
declaración de su código, guardará la opción, luego, cuando la obtenga, Magento devolverá el valor de un incremento automático en laeav_attribute_option
tabla.probado en Magento 2.1.3.
No encontré ninguna forma viable de crear atributos con opciones a la vez. Inicialmente, necesitamos crear un atributo y luego agregarle opciones.
Inyecte la siguiente clase \ Magento \ Eav \ Setup \ EavSetupFactory
Crear nuevo atributo:
Añadir opciones personalizadas.
La función
addAttribute
no devuelve nada útil que pueda usarse en el futuro. Entonces, después de la creación del atributo, necesitamos recuperar el objeto atributo por nosotros mismos. ¡Importante! Lo necesitamos porque la función solo esperaattribute_id
, pero no quiere trabajarattribute_code
.En ese caso, necesitamos obtenerlo
attribute_id
y pasarlo a la función de creación de atributos.Entonces necesitamos generar una matriz de opciones de la forma en que magento espera:
Como ejemplo:
Y pásalo a funcionar:
fuente
El uso de la clase Magento \ Eav \ Setup \ EavSetupFactory o incluso la clase \ Magento \ Catalog \ Setup \ CategorySetupFactory puede provocar el siguiente problema: https://github.com/magento/magento2/issues/4896 .
Las clases que debes usar:
Luego, en su función, haga algo como esto:
fuente
$attributeOptionLabel
y$option
son clases ORM; no debes inyectarlos directamente. El enfoque adecuado es inyectar su clase de fábrica, luego crear una instancia según sea necesario. También tenga en cuenta que no está utilizando las interfaces de datos API de manera consistente.$option->setValue()
ya que es para unoption_id
campo magento interno en laeav_attribute_option
mesa.Para Magento 2.3.3, descubrí que puede adoptar el enfoque Magento DevTeam.
Añadir atributo en la función apply ()
fuente
Esta NO es una respuesta. Solo una solución alternativa.
Se supone que tiene acceso a Magento Backend usando el navegador y que está en la página de edición de atributos (la URL se ve como admin / catalog / product_attribute / edit / attribute_id / XXX / key ..)
Vaya a la consola del navegador (CTRL + MAYÚS + J en Chrome) y pegue el siguiente código después de cambiar la matriz mimim .
- probado en Magento 2.2.2
Artículo detallado: https://tutes.in/how-to-manage-magento-2-product-attribute-values-options-using-console/
fuente