如何在odoo中为one2many字段添加导入记录功能

问题描述 投票:0回答:1

我想要通过文件添加 on2many 字段值的功能(批量上传数据),我如何在 odoo-16 中实现这一点。如果您知道,请解释我如何才能正确实现这一目标

我尝试使用链接:https://www.cybrosys.com/blog/import-xlsx-files-in-odoo-using-openpyxl,但我没有正确理解它如何使用它来实现我的目标功能。请提供解决方案或建议来实现它。

csv import odoo xlsx one2many
1个回答
0
投票

如果您正在尝试编写数据抛出Python,这可能会帮助您:

(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)

例如,如果您的 One2many 字段名称是仅包含名称属性的 Fee_ids,并且您想要创建一条新记录并链接到 Fee_ids,则应按如下方式完成:

record.update({
   'fee_ids': [(0, 0, {'name': 'Sample Name'})]
})

希望对你有帮助

© www.soinside.com 2019 - 2024. All rights reserved.