Атрибут клиента не отображается в форме учетной записи администратора adminhtml в Magento Enterprise 2.2.0


11

Я создал модуль "Wgac_Subscription". Я хочу создать пользовательский атрибут клиента. Он указан в admin, как показано на рисунке ниже, но не отображается в форме adminhtml клиента.

Wgac / Подписка / Setup / InstallData.php

<?php
namespace Wgac\Subscription\Setup;

use Magento\Eav\Setup\EavSetup;
use Magento\Eav\Setup\EavSetupFactory;
use Magento\Customer\Model\Customer;
use Magento\Customer\Setup\CustomerSetupFactory;
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;

class InstallData implements InstallDataInterface
{
    private $eavSetupFactory;

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

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



    public function __construct(
        EavSetupFactory $eavSetupFactory,
        CustomerSetupFactory $customerSetupFactory,
        AttributeSetFactory $attributeSetFactory
    )
    {
        $this->eavSetupFactory = $eavSetupFactory;
        $this->customerSetupFactory = $customerSetupFactory;
        $this->attributeSetFactory = $attributeSetFactory;

    }

    public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
    {
        $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
    /*
        **
        * Create  Customer Attribute "customer_chargify_id"
        ** ==== START ====
        */

         /** @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, 'customer_chargify_id', [
            'type' => 'varchar',
            'label' => 'Customer Chargify Id',
            'input' => 'text',
            'required' => false,
            'visible' => true,
            "unique"  => true,
            'user_defined' => true,
            'position' =>999,
            'system' => 0,
        ]);

        $attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'customer_chargify_id')
        ->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();

        /*        
        *   === END ===       
        */



    }
}

Wgac / Подписка / просмотр / основание / ui_component / customer_form.xml

<?xml version="1.0" encoding="UTF-8"?>
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_con
figuration.xsd">
    <fieldset name="customer">
        <field name="customer_chargify_id">
            <argument name="data" xsi:type="array">
                <item name="config" xsi:type="array">
                    <item name="dataType" xsi:type="string">text</item>
                    <item name="formElement"
                    xsi:type="string">input</item>
                    <item name="source"
                    xsi:type="string">customer</item>
                </item>
            </argument>
        </field>
    </fieldset>
</form>

введите описание изображения здесь

Пожалуйста, предложите мне, если я что-то упустил.


1
У меня такая же проблема. Я не могу понять, что является причиной этого. Удалось ли решить ее и отобразить атрибут в учетной записи клиента в админке?
Раду

1
magento.stackexchange.com/questions/231216/… решил это за меня!
Раду

Ответы:


4

Значение 'used_in_forms' должно быть ['adminhtml_customer', 'customer_account_edit'] . Если вы не хотите, чтобы этот атрибут показывался для клиента, вы должны установить visible = false . Вы можете обновить ваши InstallData, как показано ниже:

$customerSetup->removeAttribute(Customer::ENTITY, 'customer_chargify_id');
$customerSetup->addAttribute(Customer::ENTITY, 'customer_chargify_id', [
            'type' => 'varchar',
            'label' => 'Customer Chargify Id',
            'input' => 'text',
            'required' => false,
            'visible' => false,
            "unique" => true,
            'user_defined' => true,
            'position' => 999,
            'system' => 0,
        ]);

        $attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'customer_chargify_id')
            ->addData([
                'attribute_set_id' => $attributeSetId,
                'attribute_group_id' => $attributeGroupId,
                'used_in_forms' => ['adminhtml_customer', 'customer_account_edit'],
            ]);

И убедитесь, что вы удалили YourVendor_YourModule в таблице setup_module, если хотите перезапустить скрипт InstallData

Надеюсь, что это поможет вам

С уважением


1
Одно исправление: чтобы атрибут был виден администраторам, но не во внешнем интерфейсе, вам нужно customer_eav_attribute.is_visible=1( visibletrue), но eav_attribute.is_user_defined=0( user_definedfalse).
Райан Херр
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.