Aggiungere gli attributi del prodotto a livello di programmazione al feed di Data Exporter
Puoi estendere gli attributi del prodotto senza registrarli in Adobe Commerce creando un plug-in per aggiungerli durante il processo di sincronizzazione dei dati.
Aggiungi attributi prodotto
Creare un plug-in che aggiunga customer_attribute
alla classe Magento\CatalogDataExporter\Model\Provider\Product\Attributes
.
-
Aggiorna il file di configurazione dependency injection (
di.xml
) per definire il plug-in.code language-xml <type name="Magento\CatalogDataExporter\Model\Provider\Product\Attributes"> <plugin name="product_customer_attributes" type="Vendor\CatalogDataExporter\Model\Plugin\AddAttribute"/> </type>
-
Crea il plug-in.
code language-php <?php declare(strict_types=1); namespace Vendor\CatalogDataExporter\Model\Plugin; use Magento\CatalogDataExporter\Model\Provider\Product\Attributes; class AddAttribute { /** * @param Attributes $subject * @param array $result * @param $arguments * @return array * @throws \Zend_Db_Statement_Exception */ public function afterGet(Attributes $subject, array $result, $arguments): array { $productIds = \array_column($arguments, 'productId'); foreach ($productIds as $productId) { $result[] = [ 'productId' => $productId, // "storeViewCode" must be specified for products where the customer attribute value should be set 'storeViewCode' => 'default', 'attributes' => [ // specify the customer attribute code 'attributeCode' => 'customer_attribute', // provide single or multiple values for the attribute 'value' => [ rand(41,43) ] ] ]; } return $result; } }
Dopo aver aggiunto il plug-in, le modifiche vengono sincronizzate con i servizi vetrina connessi durante la successiva sincronizzazione pianificata. Per inviare immediatamente gli aggiornamenti, utilizzare il seguente comando CLI per avviare manualmente il processo di sincronizzazione.
code language-none bin/magento saas:resync --feed=products
Dichiarare metadati di attributi di prodotto personalizzati
Se crei dinamicamente un attributo di prodotto personalizzato e desideri utilizzarlo per la visualizzazione, la ricerca o il filtro nei servizi di vetrina, aggiungi i metadati dell’attributo di prodotto per configurare il comportamento della vetrina.
-
Aggiornare il file di configurazione dependency injection (
di.xml
) per definire il plug-in per i metadati dell'attributo del prodotto.code language-xml <type name="\Magento\CatalogDataExporter\Model\Provider\ProductMetadata"> <plugin name="product_customer_attributes_metadata" type="Vendor\CatalogDataExporter\Model\Plugin\AddAttributeMetadata"/> </type>
-
Creare il plug-in al provider
\Magento\CatalogDataExporter\Model\Provider\ProductMetadata
seguente.Controlla
ProductAttributeMetadata
invendor/magento/module-catalog-data-exporter/etc/et_schema.xml
per i campi obbligatori.code language-php <?php declare(strict_types=1); namespace Vendor\CatalogDataExporter\Model\Plugin; use Magento\CatalogDataExporter\Model\Provider\ProductMetadata; class AddAttributeMetadata { /** * @param ProductMetadata $subject * @param array $result * @param $arguments * @return array * @throws \Zend_Db_Statement_Exception */ public function afterGet(ProductMetadata $subject, array $result, $arguments): array { $result[] = [ 'id' => '123', 'storeCode' => 'default', 'websiteCode' => 'base', 'storeViewCode' => 'default', // specify the customer attribute code - should be the same as used in the products attributes plugin 'attributeCode' => 'customer_attribute', // only product attributes are supported 'attributeType' => 'catalog_product', // specify the data type 'dataType' => 'int', 'multi' => false, 'label' => 'Customer Attribute', 'frontendInput' => 'select', 'required' => false, 'unique' => false, 'global' => true, 'visible' => true, 'searchable' => true, 'filterable' => true, // This value must be set to true to export it to the storefront services 'visibleInCompareList' => true, 'visibleInListing' => true, 'sortable' => true, 'visibleInSearch' => true, 'filterableInSearch' => true, 'searchWeight' => 1.0, 'usedForRules' => true, 'boolean' => false, 'systemAttribute' => false, 'numeric' => false, // specify the list of attribute options 'attributeOptions' => [ 'option1', 'option2', 'option3' ] ]; return $result; } }
Dopo aver aggiunto il plug-in, le modifiche vengono sincronizzate con i servizi vetrina connessi durante la successiva sincronizzazione pianificata. Per inviare immediatamente gli aggiornamenti, utilizzare il seguente comando CLI per avviare manualmente il processo di sincronizzazione.
code language-none bin/magento saas:resync --feed=productattributes