I started to learn Odoo Qweb report by reading the documentation here: https://www.odoo.com/documentation/8.0/reference/reports.html
for the invoice report, i saw in my database vue that there is a vue called account_invoice_report and i guess this vue is called to get information about the report content.
my Question are:
- Where this vue is call in python file?
- I want to create my own database vue and call it in pyhton to create a report( simple view with to tables) can someone share with me a link explaining how to perform that?
I learned that when you define a model with a _name="myname", Odoo will create a corresponding table if it doesn't exist, is it the same way with view?
Thank you