gpt4 book ai didi

OpenERP/Odoo 模型关系 XML 语法

转载 作者:行者123 更新时间:2023-12-04 16:39:28 25 4
gpt4 key购买 nike

我正在使用 OpenERP 7.0。
下面的代码来自文件 addons/project/security/project_security.xml
请解释一下数字 4、6 和 0 是从哪里来的?
我可以咨询文档中的哪个地方?

<record id="group_project_user" model="res.groups">
<field name="name">User</field>
<field name="category_id" ref="base.module_category_project_management"/>
</record>

<record id="group_project_manager" model="res.groups">
<field name="name">Manager</field>
<field name="category_id" ref="base.module_category_project_management"/>
<field name="implied_ids" eval="[(4, ref('group_project_user'))]"/>
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>

<record model="ir.ui.menu" id="base.menu_definitions">
<field name="groups_id" eval="[(6,0,[ref('group_project_manager')])]"/>
</record>

最佳答案

对于 many2many field ,需要元组列表。
这是接受的元组列表,具有相应的语义:

(0, 0,  { values })    link to a new record that needs to be created with the given values dictionary
(1, ID, { values }) update the linked record with id = ID (write *values* on it)
(2, ID) remove and delete the linked record with id = ID (calls unlink on ID, that will delete the object completely, and the link to it as well)
(3, ID) cut the link to the linked record with id = ID (delete the relationship between the two objects but does not delete the target object itself)
(4, ID) link to existing record with id = ID (adds a relationship)
(5) unlink all (like using (3,ID) for all linked records)
(6, 0, [IDs]) replace the list of linked IDs (like using (5) then (4,ID) for each ID in the list of IDs)

Example:
[(6, 0, [8, 5, 6, 4])] sets the many2many to ids [8, 5, 6, 4]

对于 one2many 字段,需要元组列表。
这是接受的元组列表,具有相应的语义:
(0, 0,  { values })    link to a new record that needs to be created with the given values dictionary
(1, ID, { values }) update the linked record with id = ID (write *values* on it)
(2, ID) remove and delete the linked record with id = ID (calls unlink on ID, that will delete the object completely, and the link to it as well)

Example:
[(0, 0, {'field_name':field_value_record1, ...}), (0, 0, {'field_name':field_value_record2, ...})]

我希望这能消除你的疑虑

感谢致敬

关于OpenERP/Odoo 模型关系 XML 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26011102/

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