ODOO
odoo 14
"The <report> tag is deprecated, use a <record> tag for ...etc "
some time you can get the error above when you create new report tin odoo 14.0 because 90% created it as bellow ,
<report
id="report_action_id"
string="Report Name"
model="model.name"
report_type="qweb-html"
name="module_name.report_temp_id"
menu="True"
/>
But , You have to create it as bellow to fix this error
<record id="report_action_id" model="ir.actions.report">
<field name="name">Report Name</field>
<field name="model">model.name</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">module_name.report_temp_id</field>
<field name="report_file">module_name.report_temp_id</field>
<field name="binding_model_id" ref="model.name"/>
<field name="binding_type">report</field>
</record>
No comments:
Post a Comment