gpt4 book ai didi

python - Odoo 分层 TreeView

转载 作者:太空宇宙 更新时间:2023-11-03 14:44:09 25 4
gpt4 key购买 nike

我正在尝试从 Odoo 重新创建公司结构 View 。

我已根据 res.company 示例使用 parent_idchild_ids 创建了我的 model

但是没有成功。这是我的 XML

<record id="open_module_tree_my_department_my" model="ir.actions.act_window">
<field name="name">My Department</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">my.department</field>
<field name="domain">[('parent_id','=',False)]</field>
<field name="view_type">tree</field>
</record>

这是我的模型

class MyDepartment(models.Model):
_name = 'my.department'
_description = 'My Department'

name = fields.Char(string="My Department", required=True)

parent_id = fields.Many2one("my.department", "Parent Department", select=True)
child_ids = fields.One2many("my.department", "parent_id", string="Children")

我错过了什么?

最佳答案

@strike_noir据我所知,“field_parent”已从 Odoo 11 中删除,您对 odoo11+ 中的分层 TreeView 有何其他调整。

谢谢。

关于python - Odoo 分层 TreeView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46385947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com