Dynamic Excel Generation
“Easily Create Excel Report from Python Code”
This module allows users to generate excel reports from a few lines of code.
With All Community Apps Dependencies
Description
This module is the core and base engine for generating reports in Excel formats. “Dynamic Excel Generation” module allows users to easily create excel reports from a few lines of Python code.
Dependencies
- Web
- Base
- Oi_action_file
- Base_import
Demonstration
Sample Code
rows = [ ['Order Number', 'Customer','Salesperson', 'Amount'] ] for record in records.sorted(lambda record: record.partner_id.name): row = [record.name, record.partner_id.name, record.user_id.name, record.amount_total] rows.append(row) action = env['oi_excel_export'].export(rows)