platform icon indicating copy to clipboard operation
platform copied to clipboard

Datagrid export for other datagrid sources then ORM.

Open hvanoch opened this issue 2 years ago • 1 comments

Summary
When trying to export a datagrid with a non "ORM" datasource an exception is thrown in the export processor.

Steps to reproduce
Create a datagrid with array datasource and set export: true in grid config

Actual Result

In DatagridExportIdFetcher.php line 90:
                                                                                                                                                     
  [Symfony\Component\Debug\Exception\UndefinedMethodException]                                                                                       
  Attempted to call an undefined method named "getQueryBuilder" of class "\Oro\Bundle\DataGridBundle\Datasource\ArrayDatasource\ArrayDatasource".  
                                                                                                                                                     

Exception trace:
  at /var/www/html/vendor/oro/platform/src/Oro/Bundle/DataGridBundle/ImportExport/DatagridExportIdFetcher.php:90
 Oro\Bundle\DataGridBundle\ImportExport\DatagridExportIdFetcher->getGridRootEntity() at /var/www/html/vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Handler/ExportHandler.php:164
 Oro\Bundle\DataGridBundle\Handler\ExportHandler->getEntityName() at /var/www/html/vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Async/Export/PreExportMessageProcessor.php:130
 Oro\Bundle\DataGridBundle\Async\Export\PreExportMessageProcessor->getMessageBody() at /var/www/html/vendor/oro/platform/src/Oro/Bundle/ImportExportBundle/Async/Export/PreExportMessageProcessorAbstract.php:92
 Oro\Bundle\ImportExportBundle\Async\Export\PreExportMessageProcessorAbstract->process() at /var/www/html/vendor/oro/platform/src/Oro/Component/MessageQueue/Client/DelegateMessageProcessor.php:36
 Oro\Component\MessageQueue\Client\DelegateMessageProcessor->process() at /var/www/html/vendor/oro/platform/src/Oro/Component/MessageQueue/Consumption/QueueConsumer.php:192
 Oro\Component\MessageQueue\Consumption\QueueConsumer->doConsume() at /var/www/html/vendor/oro/platform/src/Oro/Component/MessageQueue/Consumption/QueueConsumer.php:127
 Oro\Component\MessageQueue\Consumption\QueueConsumer->consume() at /var/www/html/vendor/oro/platform/src/Oro/Component/MessageQueue/Client/ConsumeMessagesCommand.php:96
 Oro\Component\MessageQueue\Client\ConsumeMessagesCommand->consume() at /var/www/html/vendor/oro/platform/src/Oro/Bundle/MessageQueueBundle/Command/ClientConsumeMessagesCommand.php:46
 Oro\Bundle\MessageQueueBundle\Command\ClientConsumeMessagesCommand->consume() at /var/www/html/vendor/oro/platform/src/Oro/Component/MessageQueue/Client/ConsumeMessagesCommand.php:90
 Oro\Component\MessageQueue\Client\ConsumeMessagesCommand->execute() at /var/www/html/vendor/symfony/console/Command/Command.php:255
 Symfony\Component\Console\Command\Command->run() at /var/www/html/vendor/symfony/console/Application.php:1027
 Symfony\Component\Console\Application->doRunCommand() at /var/www/html/vendor/symfony/framework-bundle/Console/Application.php:97
 Symfony\Bundle\FrameworkBundle\Console\Application->doRunCommand() at /var/www/html/vendor/symfony/console/Application.php:273
 Symfony\Component\Console\Application->doRun() at /var/www/html/vendor/symfony/framework-bundle/Console/Application.php:83
 Symfony\Bundle\FrameworkBundle\Console\Application->doRun() at /var/www/html/vendor/symfony/console/Application.php:149
 Symfony\Component\Console\Application->run() at /var/www/html/bin/console:29

Expected Result
Export to also work with non orm datasource types

Details about your environment

  • OroPlatform version: 4.2
  • PHP version: 7.4
  • Database (MySQL, PostgreSQL) version 8.0

hvanoch avatar Dec 14 '21 10:12 hvanoch

The array data source has a very limited list of features. Export is one of the features that is not implemented for it.

anyt avatar Dec 14 '21 13:12 anyt