Jak dołączyć kolekcję zamówień do niestandardowej tabeli w Magento2?


12

Próbuję dodać nową kolumnę, aby zamówić siatkę w Magento 2.0. Więc muszę zrobić połączenie, aby zamówić kolekcję siatki. Jak mogę to osiągnąć? Ponieważ w magento2 siatka używa komponentu interfejsu użytkownika.

Odpowiedzi:


12

Magento 2 dodaje niestandardowe kolumny do siatki zamówień sprzedaży,

Dołączyć

Magento \ Sales \ Order \ Grid \ Collection

do dowolnej tabeli, najlepszą opcją byłoby użycie wtyczki, ponieważ nie polega ona na przepisywaniu i sprawia, że ​​kod jest ubogi.

Utwórz wtyczkę w pliku etc / di.xml modułu

<type name="Magento\Framework\View\Element\UiComponent\DataProvider\CollectionFactory">
    <plugin name="sales_order_additional_columns" type="Vendor\ModuleName\Plugins\AddColumnsSalesOrderGridCollection" sortOrder="100" disabled="false" />
</type>

Więc przechwytujemy

Magento \ Framework \ View \ Element \ UiComponent \ DataProvider \ CollectionFactory

ponieważ jeśli spojrzysz na

Magento \ Sales \ etc \ di.xml

zobaczyłbyś

Magento \ Sales \ Order \ Grid \ Collection

został wstrzyknięty do

Magento \ Framework \ View \ Element \ UiComponent \ DataProvider \ CollectionFactory

Utwórz folder wtyczek i klasę wtyczek w swoim module

<?php namespace Vendor\ModuleName\Plugins;

use Magento\Framework\Message\ManagerInterface as MessageManager;
use Magento\Sales\Model\ResourceModel\Order\Grid\Collection as SalesOrderGridCollection;

class AddColumnsSalesOrderGridCollection
{
    private $messageManager;
    private $collection;

    public function __construct(MessageManager $messageManager,
        SalesOrderGridCollection $collection
    ) {

        $this->messageManager = $messageManager;
        $this->collection = $collection;
    }

    public function aroundGetReport(
        \Magento\Framework\View\Element\UiComponent\DataProvider\CollectionFactory $subject,
        \Closure $proceed,
        $requestName
    ) {
        $result = $proceed($requestName);
        if ($requestName == 'sales_order_grid_data_source') {
            if ($result instanceof $this->collection
            ) {
                $select = $this->collection->getSelect();
                $select->join(
                    ["soi" => "sales_order_item"],
                    'main_table.entity_id = soi.order_id AND soi.product_type="simple"',
                    array('weight', 'product_type')
                )
                    ->distinct();

                $select->join(
                    ["soa" => "sales_order_address"],
                    'main_table.entity_id = soa.parent_id AND soa.address_type="shipping"',
                    array('email', 'country_id', 'postcode', 'city', 'telephone')
                )
                    ->distinct();
            }

        }
        return $this->collection;
    }
}

Tutaj obserwujemy wokół zdarzenia metody getReport ().

Kopiuj

vendor / magento / module-sales / view / adminhtml / ui_component / sales_order_grid.xml

do zakresu twojego modułu

Producent / nazwa modułu / view / adminhtml / ui_component / sales_order_grid.xml

Usuń całą zawartość skopiowanego pliku sales_order_grid.xml, ponieważ nie chcemy zastępować całej zawartości.

Wpisz następujący kod w module sales_order_grid.xml

    <?xml version="1.0" encoding="UTF-8"?>

<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">

    <columns name="sales_order_columns">

        <!-- sales_order_item weight -->
        <column name="weight">
            <argument name="data" xsi:type="array">
                <item name="config" xsi:type="array">
                    <item name="label" xsi:type="string" translate="true">Weight</item>
                    <item name="sortOrder" xsi:type="number">222</item>
                    <item name="align" xsi:type="string">right</item>
                    <item name="filter" xsi:type="string">text</item>
                    <item name="visible" xsi:type="boolean">true</item>
                    <!--<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>-->
                </item>
            </argument>
        </column>

        <!-- sales_order_item product_type-->
        <column name="product_type">
            <argument name="data" xsi:type="array">
                <item name="options" xsi:type="object">Vendor\ModuleName\Ui\Component\Listing\Column\ProductTypes</item>
                <item name="config" xsi:type="array">
                    <item name="label" xsi:type="string" translate="true">Product Type</item>
                    <item name="sortOrder" xsi:type="number">232</item>
                    <item name="align" xsi:type="string">right</item>
                    <!--<item name="filter" xsi:type="string">select</item>-->
                    <item name="component" xsi:type="string">Magento_Ui/js/grid/columns/select</item>
                    <item name="dataType" xsi:type="string">select</item>
                    <item name="visible" xsi:type="boolean">true</item>
                    <!--<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>-->
                </item>
            </argument>
        </column>

        <!-- sales_order_address country_id -->
        <column name="country_id">
            <argument name="data" xsi:type="array">
                <item name="config" xsi:type="array">
                    <item name="label" xsi:type="string" translate="true">Country ID</item>
                    <item name="sortOrder" xsi:type="number">242</item>
                    <item name="align" xsi:type="string">right</item>
                    <item name="filter" xsi:type="string">text</item>
                    <item name="visible" xsi:type="boolean">true</item>
                    <!--<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>-->
                </item>
            </argument>
        </column>

        <!-- sales_order_address post_code -->
        <column name="postcode">
            <argument name="data" xsi:type="array">
                <item name="config" xsi:type="array">
                    <item name="label" xsi:type="string" translate="true">Postcode</item>
                    <item name="sortOrder" xsi:type="number">252</item>
                    <item name="align" xsi:type="string">right</item>
                    <item name="filter" xsi:type="string">text</item>
                    <item name="visible" xsi:type="boolean">true</item>
                    <!--<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>-->
                </item>
            </argument>
        </column>

        <!-- sales_order_address city -->
        <column name="city">
            <argument name="data" xsi:type="array">
                <item name="config" xsi:type="array">
                    <item name="label" xsi:type="string" translate="true">City</item>
                    <item name="sortOrder" xsi:type="number">252</item>
                    <item name="align" xsi:type="string">right</item>
                    <item name="filter" xsi:type="string">text</item>
                    <item name="visible" xsi:type="boolean">true</item>
                    <!--<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>-->
                </item>
            </argument>
        </column>

        <!-- sales_order_address telephone -->
        <column name="telephone">
            <argument name="data" xsi:type="array">
                <item name="config" xsi:type="array">
                    <item name="label" xsi:type="string" translate="true">Telephone</item>
                    <item name="sortOrder" xsi:type="number">252</item>
                    <item name="align" xsi:type="string">right</item>
                    <item name="filter" xsi:type="string">text</item>
                    <item name="visible" xsi:type="boolean">true</item>
                    <!--<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>-->
                </item>
            </argument>
        </column>

    </columns>

</listing>

Teraz usuń pamięć podręczną z folderu var / cache lub odśwież pamięć podręczną. Dodane kolumny będą widoczne w siatce zamówienia sprzedaży.


Wielkie dzięki za to, moim jedynym problemem (z Magento 2.2.0) było to, że musiałem dodać prefiks tabeli w wierszach ["soi" => "sales_order_item"]i ["soa" => "sales_order_address"].
David

Wydawało mi się, że działa dobrze, ale wydaje się, że działa również z siatką faktur. Po włączeniu modułu identyfikator zamówienia i status są dziwnie puste w siatce faktur. Masz pomysł, co może być nie tak?
David

Dziękuję za te informacje, pomogło mi to dodać nazwę firmy. Ale jak wyświetlić informacje rozliczeniowe i wysyłkowe zamiast samej wysyłki? Mogę wyświetlić 1 lub drugą, ale nie mogę zmienić nazwy „firma”, aby powiedzieć „firma billing” i „firma spedycyjna”, aby użyć jej w sales_order_grid.xml
RLTcode

1
Występują błędy w siatkach strony CMS, bloku CMS, klienta i Creditmemo podczas korzystania z klasy wtyczek. Daj mi znać, jeśli istnieje alternatywne rozwiązanie do modyfikowania kolekcji siatki.
Vishal

Jakie błędy widzisz w siatce faktur itp.?
Asrar,

9

Gdy spojrzysz na \Magento\Framework\Data\Collection\AbstractDbsamą magento2, zapewnij działanie haka dla swojej kolekcji.

protected function _renderFilters()
{
    if ($this->_isFiltersRendered) {
        return $this;
    }

    $this->_renderFiltersBefore(); // Hook for operations before rendering filters

    ....................
}

Więc co musisz zrobić, po prostu dodając do swojej kolekcji [ NAMESPACE\MODULENAME\Model\ResourceModel\YOUR_CLASSNAME\Grid\Collection]

protected function _renderFiltersBefore() {
    $joinTable = $this->getTable('catalog_product_entity_varchar');
    $this->getSelect()->join($joinTable.' as cpev','main_table.entity_id = cpev.entity_id', array('*'));
    parent::_renderFiltersBefore();
}

muszę pokazać moje niestandardowe pole tabeli w siatce zamówień, w tym przypadku ho, aby je wyświetlić?
Pradeep Kumar

@Keyur Shah Dzięki, bardzo mi to pomaga.
Rohit Goel

Cieszę się, że to pomaga :) @RohitGoel Keep pomaga drugiemu członkowi społeczności
Keyur Shah

Jasne :) @KeyurShah Uwielbiam pomagać społeczności. Tworzę siatkę bez komponentu interfejsu użytkownika, czy możesz mi powiedzieć, jak mogę w tym dodać funkcję eksportu.
Rohit Goel

1
Zamiast tego _renderFiltersBeforemożesz również zastąpić / rozszerzyć _initSelect.
Jānis Elmeris

3

Utworzyłem admin grid, który ma dwie niestandardowe tabele. nie możesz tego zrobić przy użyciu typu wirtualnego to di.xml, więc musisz wykonać następujące kroki i zaktualizować swój

etc / di.xml,

Model / Resource / Modulename / Collection.php dodaj dołącz w tym pliku,

Model / Resource / Modulename / Grid / Collection.php,

W twoim etc / di.xml

<type name="Magento\Framework\View\Element\UiComponent\DataProvider\CollectionFactory">
        <arguments>
            <argument name="collections" xsi:type="array">
                <item name="namespace_modulename_listing_data_source" xsi:type="string">Namespace\Modulename\Model\Resource\Modulename\Grid\Collection</item>
            </argument>
        </arguments>
</type>
<type name="Namespace\Modulename\Model\Resource\Modulename\Grid\Collection">
    <arguments>
        <argument name="mainTable" xsi:type="string">tablename</argument>
        <argument name="eventPrefix" xsi:type="string">namespace_modulename_grid_collection</argument>
        <argument name="eventObject" xsi:type="string">namespace_grid_collection</argument>
        <argument name="resourceModel" xsi:type="string">Namespace\Modulename\Model\Resource\Modulename</argument>
    </arguments>
</type>

W swoim Modelu / Zasobie / Modulename / Collection.php

<?php
namespace Namespace\Modulename\Model\Resource\Modulename;

use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;

class Collection extends AbstractCollection
{
    /**
     * Define model & resource model
     */
    const YOUR_TABLE = 'tablename';

    public function __construct(
        \Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory,
        \Psr\Log\LoggerInterface $logger,
        \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy,
        \Magento\Framework\Event\ManagerInterface $eventManager,
        \Magento\Store\Model\StoreManagerInterface $storeManager,
        \Magento\Framework\DB\Adapter\AdapterInterface $connection = null,
        \Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null
    ) {
        $this->_init(
            'Namespace\Modulename\Model\Modulename',
            'Namespace\Modulename\Model\Resource\Modulename'
        );
        parent::__construct(
            $entityFactory, $logger, $fetchStrategy, $eventManager, $connection,
            $resource
        );
        $this->storeManager = $storeManager;
    }
    protected function _initSelect()
    {
        parent::_initSelect();

        $this->getSelect()->joinLeft(
                ['secondTable' => $this->getTable('tablename')],
                'main_table.columnname = secondTable.columnname',
                ['columnname1','columnname2','columnname3']
            );
    }
}
?>

W swoim Modelu / Zasobie / Modulename / Grid / Collection.php

<?php
namespace Namespace\Modulename\Model\Resource\Modulename\Grid;

use Magento\Framework\Api\Search\SearchResultInterface;
use Magento\Framework\Search\AggregationInterface;
use Namespace\Modulename\Model\Resource\Modulename\Collection as ModulenameCollection;

/**
 * Class Collection
 * Collection for displaying grid
 */
class Collection extends ModulenameCollection implements SearchResultInterface
{
    /**
     * Resource initialization
     * @return $this
     */
   public function __construct(
        \Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory,
        \Psr\Log\LoggerInterface $logger,
        \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy,
        \Magento\Framework\Event\ManagerInterface $eventManager,
        \Magento\Store\Model\StoreManagerInterface $storeManager,
        $mainTable,
        $eventPrefix,
        $eventObject,
        $resourceModel,
        $model = 'Magento\Framework\View\Element\UiComponent\DataProvider\Document',
        $connection = null,
        \Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null
    ) {
        parent::__construct(
            $entityFactory,
            $logger,
            $fetchStrategy,
            $eventManager,
            $storeManager,
            $connection,
            $resource
        );
        $this->_eventPrefix = $eventPrefix;
        $this->_eventObject = $eventObject;
        $this->_init($model, $resourceModel);
        $this->setMainTable($mainTable);
    }

    /**
     * @return AggregationInterface
     */
    public function getAggregations()
    {
        return $this->aggregations;
    }

    /**
     * @param AggregationInterface $aggregations
     *
     * @return $this
     */
    public function setAggregations($aggregations)
    {
        $this->aggregations = $aggregations;
    }


    /**
     * Get search criteria.
     *
     * @return \Magento\Framework\Api\SearchCriteriaInterface|null
     */
    public function getSearchCriteria()
    {
        return null;
    }

    /**
     * Set search criteria.
     *
     * @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
     *
     * @return $this
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function setSearchCriteria(
        \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria = null
    ) {
        return $this;
    }

    /**
     * Get total count.
     *
     * @return int
     */
    public function getTotalCount()
    {
        return $this->getSize();
    }

    /**
     * Set total count.
     *
     * @param int $totalCount
     *
     * @return $this
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function setTotalCount($totalCount)
    {
        return $this;
    }

    /**
     * Set items list.
     *
     * @param \Magento\Framework\Api\ExtensibleDataInterface[] $items
     *
     * @return $this
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function setItems(array $items = null)
    {
        return $this;
    }
}

?>

To nie działało
saravanavelu

działa dobrze dla mnie .. jaki jest błąd dla ciebie?
Ekta Puri,

wewnętrzny błąd serwera. czy możesz sprawdzić i sformatować swój kod
saravanavelu

czy mogę gdzieś wyświetlić twoje pliki? ponieważ to zadziałało dla mnie idealnie, nadal spróbuję ponownie sformatować
Ekta Puri

etc / di.xml Model / Resource / Modulename / Collection w di.xml nie ma nic takiego
saravanavelu

2

W definicji interfejsu XML xml istnieje podobny węzeł źródła danych

<dataSource name="listing_name_data_source">
    <argument name="dataProvider" xsi:type="configurableObject">
        <argument name="class" xsi:type="string">UniqueNameGridDataProvider</argument>
        <argument name="name" xsi:type="string">listing_name_data_source</argument>

gdzie listing_name_data_sourcemożna zdefiniować w twoim di.xmllub po prostu odwołać się bezpośrednio do klasy. Sama klasa powinna rozszerzać Magento\Framework\View\Element\UiComponent\DataProvider\CollectionFactoryi mieć jako collectionsargument twoją niestandardową kolekcję. W _initSelect()metodzie tej klasy kolekcji możesz łączyć swoje tabele.


1
w sprzedaży di.xml pokazuje Magento \ Sales \ Model \ ResourceModel \ Order \ Grid \ Collection tam, gdzie sam plik nie wychodzi, w takim przypadku nie możemy przepisać wtyczki lub wydarzenia, o jak to zrobić, proszę sprawdzić sprzedaż di i zamówić kod kolekcji siatki, mam nadzieję, że to wyczyści więcej
Pradeep Kumar

Tutaj jest zdefiniowane github.com/magento/magento2/blob/develop/app/code/Magento/Sales/... i jest typem wirtualnym rozszerzającym się z Magento \ Framework \ View \ Element \ UiComponent \ DataProvider \ SearchResult
Kristof z Fooman

następnie ho, aby dodać dołączyć do tej klasy. czy możesz podać przykładowy kod
Pradeep Kumar


@KristofatFooman podałeś zły przykład, ponieważ jest to typ wirtualny, czy możesz podać przykład kolekcji siatki zdefiniowanej jako typ wirtualny?
LucScu,

2

Dla każdego, kto ma problemy z @Asrar rozwiązania prostu to zrobić:

public function aroundGetReport(
    \Magento\Framework\View\Element\UiComponent\DataProvider\CollectionFactory $subject,
    \Closure $proceed,
    $requestName
) {
    $result = $proceed($requestName);
    if ($requestName == 'sales_order_grid_data_source_firsty') {
        if ($result instanceof $this->collection
        ) {
            $select = $this->collection->getSelect();
            $select->join(
                ["soi" => "sales_order_item"],
                'main_table.entity_id = soi.order_id',
                array('sku', 'name','item_id')
            )
                ->distinct();
            return $this->collection;
        }

    }
    return $result;
}

Wydaje mi się, że to działa dobrze.

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.