我是Odoo的初学者,我想自定义销售中已经存在的报表,因此我继承了销售,但是我的代码显示了一个错误,即: 验证约束时出错..不能在父视图中定位
除此以外,如果我仅执行第一部分,它会起作用,但会直接修改脏的报告,但模块中的报告仍为空。
代码如下:
<template id="report_real_estate_rental_in" inherit_id="sale.report_saleorder_document">
<xpath expr="//span[@t-field='doc.name']" position="after">
<p>JE SUIS LA</p>
</xpath>
</template>
<template id="report_real_estate_rental">
<t t-call = "web.html_container" >
<t t-foreach = "docs" t-as = "o" >
<t t-call = "web.external_layout" >
<div class = "page" >
<t t-call="report_real_estate_rental_in"/>
</div>
</t>
</t>
</t>
</template>
答案 0 :(得分:0)
当xpath表达式不能位于父视图中时,通常会发生此错误。请确保xpath表达式正确,并且您继承的模板ID是正确的。请查看此link,以继承和修改Odoo中的现有报告。
答案 1 :(得分:0)
如果我按照您的意思回答了问题,那么当您使用t-call
时,还必须包括模块名称,因此它将是module_name.template_id
。
根据您的情况,将其更改为<t t-call="your_module_name.report_real_estate_rental_in"/>