0

我已经通过用户界面在 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"

您能否指导我在树视图中实现这一点,这对我很有帮助。提前致谢。

4

1 回答 1

1

您可以在List视图的文档中找到字段名称为the name of the field to display in the current model.

satge_id字段的类型是Many2one相关的,hr.recruitment.stage因此您可以将相关字段添加到x_recruitersinhr.applicant然后将其添加到列表视图。

于 2020-12-08T22:52:57.470 回答