Magento 2: Jak utworzyć niestandardowy atrybut klienta?


Odpowiedzi:


28

W artykule Magento 2: Jak zrobić atrybut klienta? opisz to krok po kroku.

Główną częścią jest DataInstall::installmetoda poniżej:

public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
    {

        /** @var CustomerSetup $customerSetup */
        $customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);

        $customerEntity = $customerSetup->getEavConfig()->getEntityType('customer');
        $attributeSetId = $customerEntity->getDefaultAttributeSetId();

        /** @var $attributeSet AttributeSet */
        $attributeSet = $this->attributeSetFactory->create();
        $attributeGroupId = $attributeSet->getDefaultGroupId($attributeSetId);

        $customerSetup->addAttribute(Customer::ENTITY, '{attributeCode}', [
            'type' => 'varchar',
            'label' => '{attributeLabel}',
            'input' => 'text',
            'required' => false,
            'visible' => true,
            'user_defined' => true,
            'sort_order' => 1000,
            'position' => 1000,
            'system' => 0,
        ]);
        //add attribute to attribute set
        $attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'magento_username')
        ->addData([
            'attribute_set_id' => $attributeSetId,
            'attribute_group_id' => $attributeGroupId,
            'used_in_forms' => ['adminhtml_customer'],
        ]);

        $attribute->save();


    }

Jakie są zalety wstrzykiwania CustomerSetupFactoryzamiast bezpośredniego wstrzykiwania CustomerSetup? Dziękuję za wyjaśnienie.
Vinai

@Vinai, wygląda wygląda klasa customerSetup oczekuje ModuleDataSetupInterface w konstruktorze, ale ta klasa jest argumentem metody instalacji.
KAndy,

Ponieważ ModuleDataSetupInterfacenie ma żadnego stanu, który byłby specyficzny dla klasy setup, czy nie lepiej byłoby pozwolić ObjectManagerowi odpowiadać za tworzenie zależności instancji? W ten sposób CustomerSetupklient będzie mniej związany z wdrożeniem. O ile widzę.
Vinai

Usunięcie modułu nie usuwa atrybutu, jak więc powinien zostać usunięty?
DevonDahon,

Jak możemy dodać więcej niż jedno pole lub atrybuty?
Jai,

1

W swoim module zaimplementuj poniższy plik, który utworzy nowy podmiot klienta .

Test \ CustomAttribute \ Setup \ InstallData.php

<?php
namespace test\CustomAttribute\Setup;

use Magento\Customer\Setup\CustomerSetupFactory;
use Magento\Customer\Model\Customer;
use Magento\Eav\Model\Entity\Attribute\Set as AttributeSet;
use Magento\Eav\Model\Entity\Attribute\SetFactory as AttributeSetFactory;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;

/**
 * @codeCoverageIgnore
 */
class InstallData implements InstallDataInterface
{

    /**
     * @var CustomerSetupFactory
     */
    protected $customerSetupFactory;

    /**
     * @var AttributeSetFactory
     */
    private $attributeSetFactory;

    /**
     * @param CustomerSetupFactory $customerSetupFactory
     * @param AttributeSetFactory $attributeSetFactory
     */
    public function __construct(
        CustomerSetupFactory $customerSetupFactory,
        AttributeSetFactory $attributeSetFactory
    ) {
        $this->customerSetupFactory = $customerSetupFactory;
        $this->attributeSetFactory = $attributeSetFactory;
    }


    public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
    {

        /** @var CustomerSetup $customerSetup */
        $customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);

        $customerEntity = $customerSetup->getEavConfig()->getEntityType('customer');
        $attributeSetId = $customerEntity->getDefaultAttributeSetId();

        /** @var $attributeSet AttributeSet */
        $attributeSet = $this->attributeSetFactory->create();
        $attributeGroupId = $attributeSet->getDefaultGroupId($attributeSetId);

        $customerSetup->addAttribute(Customer::ENTITY, 'custom_attribute', [
            'type' => 'varchar',
            'label' => 'Custom Attribute',
            'input' => 'text',
            'required' => false,
            'visible' => true,
            'user_defined' => true,
            'position' =>999,
            'system' => 0,
        ]);

        $attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'custom_attribute')
        ->addData([
            'attribute_set_id' => $attributeSetId,
            'attribute_group_id' => $attributeGroupId,
            'used_in_forms' => ['adminhtml_customer'],//you can use other forms also ['adminhtml_customer_address', 'customer_address_edit', 'customer_register_address']
        ]);

        $attribute->save();
    }
}

nie działa ....
Sarfaraj Sipai

To zadziałało dla mnie na Magneto 2.3 ibnab.com/en/blog/magento-2/…
Raivis Dejus

@Rafael Corrêa Gomes czy można utworzyć wiele atrybutów za pomocą tej metody? W jaki sposób?
Pragman

@ZUBU wystarczy dodać nowy $ customerSetup-> addAttribute obok pierwszego, możesz wyszukać -> addAttribute do rdzenia, aby zobaczyć referencje.
Rafael Corrêa Gomes
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.