Magento 2: วิธีสร้างแอตทริบิวต์ที่กำหนดเองของลูกค้า?


17

ขั้นตอนในการสร้างแอตทริบิวต์ที่กำหนดเองสำหรับเอนทิตีของลูกค้าใน Magento 2 คืออะไร


การเพิ่มโปรแกรมคุณสมบัติใน MAGENTO 2 บทความatwix.com/magento/adding-attribute-programatically-magento2ทีละขั้นตอน
danielruedaa

คำตอบ:


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 ใน Constructor แต่คลาสนี้เป็นอาร์กิวเมนต์ของวิธีการติดตั้ง
KAndy

เนื่องจากModuleDataSetupInterfaceไม่มีสถานะที่เฉพาะเจาะจงสำหรับคลาสการตั้งค่ามันจะดีกว่าไหมถ้าปล่อยให้ ObjectManager รับผิดชอบในการสร้างการอ้างอิงอินสแตนซ์แล้ว? ด้วยวิธีนี้CustomerSetupลูกค้าจะน้อยกว่าคู่กับการใช้งาน เท่าที่ฉันเห็น
Vinai

การลบโมดูลไม่ได้เป็นการลบแอททริบิวอย่างไรควรจะลบมันอย่างไร?
DevonDahon

เราจะเพิ่ม fieds หรือแอตทริบิวต์มากกว่าหนึ่งรายการได้อย่างไร
ใจ

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

สิ่งนี้ใช้ได้กับฉันใน Magneto 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.