我试图在Odoo 9中制作报告,我成功地在v9中安装了Aeroo报告,因为目前它不受支持。我知道有办法使用网络界面制作报告但是它对最终用户来说并不容易,因此我希望通过定义报告及其模板来制作Qweb报告中的定义报告,但我无法找到使用aeroo的方法。这就是我被困的地方:
<?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>
如何从这里引用模板的.odt
文件(如果我以正确的方式进行操作,那该怎么办?)