Qweb Reporting Engine | To day you will learn how to create custom reports in Odoo using QWEB reporting engine. In this post we will learn how to create simple custom reports and its template using QWEB.
What is QWEB
Qweb is a reporting engine or template engine used by Odoo. By using this (QWEB) we can create reports in odoo. It uses XML to create design of reports as per your need. We can also say that QWEB is XML based reporting engine for OpenERP/Odoo.
Read More: How to Add Page Number in QWEB Report
Models.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class example_report(models.AbstractModel): | |
_name = 'report.module_name.report_my_custom_report' | |
@api.multi | |
def render_html(self,data=None): | |
report_obj = self.env['report'] | |
report = report_obj._get_report_from_name('module_name.report_my_custom_report') | |
# your report data structure goes in data_array | |
data_array = [] | |
docargs = { | |
'hold_data_array':data_array, | |
} | |
# here we will pass the report data into our report template | |
return report_obj.render('module_name.report_my_custom_report', docargs) | |
Description
Here we describe important lines, In line no 1 we declare a class named "example_report" and here we use "AbstractModel", for creating our reports.
Read More: Add Custom Header and Footer in QWEB Reports
In line no 2 we declare the name of our report (Note: Here the important things is the name of the report should be same as the name of "template_id" which is created in xml file of the report.) and In line no 14 we render our "Data" to xml files.
XML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<openerp> | |
<data> | |
<report id="your_report_id" | |
model="your.model.name" | |
string="Report Name Goes Here" | |
name="module_name.report_my_custom_report" | |
file="module_name.your_report_id" | |
report_type="qweb-html" /> | |
<template id="report_my_custom_report"> | |
<t t-call="report.layout"> | |
<div class="page"> | |
<div class="text-center"> | |
<h4> | |
<b>Hello This is Custom Report (Odoo QWEB)</b> | |
</h4> | |
<t t-foreach="hold_data_array" t-as="data"> | |
<t t-esc="data[0]" /> | |
<t t-esc="data[1]" /> | |
...... | |
...... | |
...... | |
</t> | |
</div> | |
</div> | |
</t> | |
</template> | |
</data> | |
</openerp> | |
Description
Here the name of template id (report_my_custom_report) is same as the name of report (Line no 2 in Model.py file).
The screen shot of above report is given below:
4 Comments
How do I call the report?
ReplyDeleteYes good question :) you can call that report on button click. I will share this code on Monday. Thanks
Delete@api.multi
Deletedef view_report_button(self):
#your logic goes here for data
return {
'type': 'ir.actions.report.xml',
'report_name': 'your_module_name.report_you_report_template_id',
'report_type':"qweb-pdf",
'data':{'key1':value1,'key2':value2},
}
Above is the code for button to open report.
does this works in odoo11? I heard "report" has been eliminated from odoo 11
Delete