Magento 2 Pokaż atrybut klienta w formie interfejsu użytkownika


14

Utworzyłem formularz ui_component .

Gdzie muszę pokazać dane klienta, tak samo jak edycja klienta .

Ale mogę wyświetlić ich dane z customer_entitytabeli.

DataProvider.php

public function getData()
{
    if (isset($this->loadedData)) {
        return $this->loadedData;
    }

    // {Vendor}\{Module}\Model\GridFactory 
    // Returns Customer Resource Model
    $items = $this->gridFactory->create()->getCollection();

   $items->getSelect()->join('customer_entity_text as second', 'main_table.entity_id = second.entity_id');
    //print_r($items->getData()); exit;
    foreach($items as $contact){
        $this->loadedData[$contact->getEntityId()]['contact'] = $contact->getData();
    }

    return $this->loadedData;
}

Dołączyłem do customer_entity_textstołu z moją Fabryką, aby wyświetlić status(Atrybut klienta).

Teraz moim drugim atrybutem jest filetyp. Jest na początku. customer_entity_varcharPo pierwsze pomyślałem, że dodać kolejne złączenie, ale myślę, że to nie jest dobry sposób.

Czy jest na to jakieś rozwiązanie? Muszę wyświetlić oba Customer Attributew mojej formie.

ui_component

<field name="value">
        <argument name="data" xsi:type="array">
            <item name="config" xsi:type="array">
                <item name="label" xsi:type="string">Status</item>
                <item name="visible" xsi:type="boolean">true</item>
                <item name="dataType" xsi:type="string">text</item>
                <item name="formElement" xsi:type="string">input</item>
                <item name="source" xsi:type="string">contact</item>
            </item>
        </argument>
    </field>

1). Powyższy komponent działa dobrze dla statusu, ale nie dla obrazu profilu, który jest typem obrazu.

<field name="value">
        <argument name="data" xsi:type="array">
            <item name="config" xsi:type="array">
                <item name="label" xsi:type="string">Profile Image</item>
                <item name="visible" xsi:type="boolean">true</item>
                <item name="formElement" xsi:type="string">fileUploader</item>
                <item name="uploaderConfig" xsi:type="array">
                    <item name="url" xsi:type="url" path="path_controller"/>
                </item>
            </item>
        </argument>
    </field>

Nawet jeśli usunę jedno pole o tej samej nazwie form element, nie będzie to działać.

Spójrz na fieldnazwę valuedla Statusu .

Jeśli używam samo dla obrazu pola niż komponentu obrazu jest zniknął.

Uwaga : nie mam pojęcia, dlaczego Magento nie pozwala używać nazwy jako value.

Ponieważ dołączyłem do kolekcji, więc otrzymuję valuejako klucz tablicy.

** Pytanie: Jak mogę uzyskać atrybuty klienta w tym formularzu bez dołączenia do kolekcji?

Również jeśli masz inne rozwiązanie niż większość, również zapraszamy. **


Czy możesz sprawdzić, czy nowe atrybuty, których używasz, znajdują się w domyślnym zestawie atrybutów jednostki klienta?
niejasne

Czy mógłbyś ponownie przeczytać własne pytanie: pytanie to nie ma dla mnie sensu podczas czytania. A zatem nie pomaga nam to rozwiązać problemu?
Herve Tribouilloy

Zapomnij o reszcie rzeczy. Jeśli możesz odpowiedzieć na pytanie, jak wyświetlić atrybuty klienta w moim niestandardowym formularzu interfejsu użytkownika? jeden jest z obrazem, a drugi to tekst.
Mag TBS

czy masz pytanie, jak zbudować formularz w interfejsie?
Herve Tribouilloy

Odpowiedzi:


0

Musisz utworzyć niestandardową tabelę z relacji customer_entity tabeli przy użyciu skryptu instalacyjnego w następujący sposób:

$relationalTable = 'custom_table';  
$table = $setup->getConnection()
    ->newTable($setup->getTable($relationalTable))
    // --- Add your other columns here ---
    ->addColumn('customer_id', Table::TYPE_INTEGER, 10, ['nullable' => false, 'unsigned' => true],
            'Customer Id')
    ->addForeignKey(
        $setup->getFkName(
            $relationalTable,           // priTableName
            'customer_id',              // priColumnName
            'customer_entity',          // refTableName
            'entity_id'                 // refColumnName
        ),
        'customer_id',                  // column
        $setup->getTable('customer_entity'),    
        'entity_id',                    // refColumn
        Table::ACTION_CASCADE           // onDelete
    )
    ->setComment('Customer relation table');

$setup->getConnection()->createTable($table);

Następnie należy załadować model klienta i dołączyć tabelę niestandardową w funkcji getData () DataProvider.php w następujący sposób:

protected $_customerModel;

public function __construct(
    \Magento\Customer\Model\CustomerFactory $customerModel
) {
    $this->_customerModel = $customerModel;
}

public function getData()
{
    if (isset($this->loadedData)) {
        return $this->loadedData;
    }

   $customer = $this->_customerModel->create();
    $collection = $customer->getCollection();
    $collection->getSelect()->join(
        ['custom' => $this->_resource->getTableName('custom_table')],
        'e.entity_id = custom.customer_id'
    );

    foreach($collection as $item){
        $this->loadedData[$item->getId()]['contact'] = $item->getData();
        // Using $item->getData(), you can get customer object with custom attributes as $item->getStatus() or $item->getProfileImage()
    }

    return $this->loadedData;
}

Teraz możesz używać nazw pól w ui_component w następujący sposób:

<field name="status"> <!-- your custom attribute code as field name -->
...
</field>

<field name="profile_image"> <!-- your custom attribute code as field name -->
...
</field>

Mam nadzieję, że to rozwiązanie może rozwiązać problem.


Potrzebuję pomocy, proszę przejść przez moje pytanie „ magento.stackexchange.com/questions/257577/…
Rv Singh
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.