XML 在 ODOO 14 中显示父对象
XML display parent object in ODOO 14
我已经通过用户界面为 hr.recruitment.stage 创建了一个新的 many2many(x_recruiters) 字段,我正试图在申请人的树视图中访问它,比如
<?xml version="1.0"?>
<tree string="Applicants" multi_edit="1" sample="1">
<field name="stage_id.x_recruiters"/>
</tree>
但是显示错误
Error while validating view: Field "stage_id.x_recruiters" does not exist in model "hr.applicant"
能否请您指导我在树视图中实现这一点,这对我很有帮助。提前致谢。
您可以在List
视图的文档中找到该字段名称是the name of the field to display in the current model
。
satge_id
字段的类型是 Many2one
与 hr.recruitment.stage
相关,因此您可以在 hr.applicant
中将相关字段添加到 x_recruiters
然后将其添加到列表视图。
我已经通过用户界面为 hr.recruitment.stage 创建了一个新的 many2many(x_recruiters) 字段,我正试图在申请人的树视图中访问它,比如
<?xml version="1.0"?>
<tree string="Applicants" multi_edit="1" sample="1">
<field name="stage_id.x_recruiters"/>
</tree>
但是显示错误
Error while validating view: Field "stage_id.x_recruiters" does not exist in model "hr.applicant"
能否请您指导我在树视图中实现这一点,这对我很有帮助。提前致谢。
您可以在List
视图的文档中找到该字段名称是the name of the field to display in the current model
。
satge_id
字段的类型是 Many2one
与 hr.recruitment.stage
相关,因此您可以在 hr.applicant
中将相关字段添加到 x_recruiters
然后将其添加到列表视图。