I'm trying to make reports in Odoo 9, I successfully made at installing Aeroo reports in v9 since it's not supported at the moment.I know there are ways to make reports using the web interface but it's not much easier for the end-users, so I want to make define reports like in Qweb reports, by defining a report and its template , but I couldn't find a way to do it with aeroo.Here is where I'm stuck:
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<!-- Report Definition, registration -->
<report
id="student_profile"
string="Student profile"
model="student.student"
<!-- I changed report-type from qweb-pdf to aeroo -->
report_type="aeroo"
<!-- Usually name refer to the implementation of the template, but for aeroo the template is just .odt file-->
name="student.student_profile_template"
/>
</data>
</openerp>
How can I refer to .odt
file of the template from here (That's if I'm doing it the right way)?