Reputation: 119
I have added a tracking number column in sales order grid. It is displaying fine in Sales order grid. But while I export the data by csv the following error has occurred.
You cannot define a correlation name 'sst' more than once
Added the custom column into sales_order_grid.xml
<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">
<column name="track_number">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="filter" xsi:type="string">text</item>
<item name="label" xsi:type="string" translate="true">Tracking Number
</item>
</item>
</argument>
</column>
</columns>
</listing>
And override the sales_order_additional_columns function by plugin in di.xml file
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<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>
</config>
Overrite the Collection of sales order grid.
<?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(
["sst" => "sales_shipment_track"],
'main_table.entity_id = sst.entity_id',
'sst.track_number'
)
->distinct();
}
}
return $this->collection;
}
}
Upvotes: 0
Views: 2824
Reputation: 725
join is happening twice in process of exporting, to avoid it, add checking in registry:
use Magento\Framework\Message\ManagerInterface as MessageManager;
use Magento\Framework\Registry;
use Magento\Sales\Model\ResourceModel\Order\Grid\Collection as SalesOrderGridCollection;
class AddColumnsSalesOrderGridCollection
{
private $messageManager;
private $collection;
private $registry;
public function __construct(MessageManager $messageManager,
SalesOrderGridCollection $collection,
Registry $registry
)
{
$this->messageManager = $messageManager;
$this->collection = $collection;
$this->registry = $registry;
}
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
) {
if (is_null($this->registry->registry('shipment_joined'))) {
$select = $this->collection->getSelect();
$select->join(
["sst" => "sales_shipment_track"],
'main_table.entity_id = sst.entity_id',
'sst.track_number'
)
->distinct();
$this->registry->register('shipment_joined', true);
}
}
}
return $this->collection;
}
}
Upvotes: 1