Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate a report in excel (xls, xlsx) format on ODOO?

In purchase module, I want to generate the details which is being printed in the purchase order button as a pdf report. My requirement is how to print the report in excel format in odoo 10?

like image 336
Navi Avatar asked Mar 08 '23 15:03

Navi


1 Answers

You can export the current tree view as an excel file with this module: web_export_view

Or you can build your own excel report with this other modules: report_xls report_xlsx

There are modules that already use the report_xls module, but you can look for them in the Odoo Apps or in the OCA repository

like image 178
ChesuCR Avatar answered Apr 02 '23 16:04

ChesuCR