마 젠토 2 : 고객 맞춤 속성을 만드는 방법은 무엇입니까?


답변:


28

Magento 2 기사 : 고객 속성을 만드는 방법? 단계별로 설명하십시오.

주요 부분은 DataInstall::install다음과 같습니다.

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


    }

CustomerSetupFactory직접 주사 대신 주사의 이점은 무엇입니까 CustomerSetup? 설명해 주셔서 감사합니다.
Vinai

@Vinai, Looks는 customerSetup 클래스가 생성자에서 ModuleDataSetupInterface를 기대하지만이 클래스는 설치 메소드의 인수입니다.
캔디 앤디

ModuleDataSetupInterface설정 클래스에 특정한 상태가 없기 때문에 ObjectManager가 인스턴스 종속성을 작성하도록하는 것이 더 좋지 않습니까? 그렇게하면 CustomerSetup클라이언트가 구현에 덜 연결됩니다. 최대한 멀리 볼 수.
Vinai 2019

모듈을 제거해도 속성이 제거되지 않습니다. 어떻게 제거해야합니까?
DevonDahon

어떻게 하나 이상의 속성이나 속성을 추가 할 수 있습니까?
Jai

1

모듈에서 아래에이 파일을 구현하여 새 고객 항목을 만듭니다 .

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

작동하지 않습니다 ....
Sarfaraj Sipai

이것은 자기에 나를 위해 2.3 일 ibnab.com/en/blog/magento-2/...
Raivis Dejus

@Rafael Corrêa Gomes이 방법을 사용하여 여러 속성을 만들 수 있습니까? 어떻게?
Pragman

@ ZUBU 당신은 첫 번째 것 옆에 새로운 $ customerSetup-> addAttribute를 추가해야합니다.-> addAttribute를 검색하여 코어를 참조 할 수도 있습니다.
Rafael Corrêa Gomes
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.