Questions tagged [custom-reports]
Questions related to reports that is developed using any custom module
22 questions
0 votes
1 answer
171 views
Adding magento 2 order attribute
I want to create an order attribute that creates a field in sales_order_item table also. I want to insert some product-related data in this table which I want to filter later in sales report.
0 votes
0 answers
161 views
Magento 2: Hide empty rows for custom report
I've created a custom report in the Magento 2 backend. Everything is working great, but by default the results grid shows "We can't find records for this period" for any days where there's ...
1 vote
1 answer
570 views
Magento 2 Remove Total from report table
I have overridden the Sales report in my custom report file but I want to remove footer which is automatically added that I don't need how to remove that footer My layout xml file is <?xml ...
4 votes
2 answers
6k views
Data showing in Grid but not in export file Magento2
I have created a custom report, Used below code in my ui_component listing file. <column name="custom_tax_code" class="Vendor\Module\Ui\Component\Listing\Column\Quantity"> <argument name="...
2 votes
1 answer
1k views
Magento 2: Display Payment Method in Custom Sales report grid
I have created the custom sales report to show required fields on the grid, Used below code to show payment method, Vendor/Module/view/adminhtml/ui_component/salesfinacereport_manage_listing.xml &...
1 vote
0 answers
486 views
Magento 2 help validate function to count bundle product child items of an order
I'm trying to write a function that takes an order object, and returns an array of sku => qty (key-value) showing how many of each sku was sold/shipped. The tricky part is, magento formats line items ...
1 vote
0 answers
135 views
Display record count in custom report on the basis of row count. Magento 1.9 custom report
In my Custom Report. I have created a collection which count is 25. But After this I have applied some joins on that by another collection. but on which I have made join is returning 25 records. ...
1 vote
1 answer
103 views
Custom report without using collection
I have a request which to make custom report, and data for the report need to calculate by helper function and will generate a data array with row and columns. Is there any solution to let data array ...