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

de90aj5v  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(115)

我想要一个通过文件添加on 2 many字段的值的功能(批量上传数据),我如何才能在odoo-16中实现这一点。如果你有任何人知道请解释一下我如何才能做到这一点正确
我试着使用link:https://www.cybrosys.com/blog/import-xlsx-files-in-odoo-using-openpyxl,但我没有正确地理解它,我如何使用它来实现我的功能。请提供解决方案或建议,以实现这一目标。

nhaq1z21

nhaq1z211#

如果你正在尝试写数据抛出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字段名称是只有name属性的fee_ids,并且您想要创建一个新记录并链接到fee_ids,则应该像下面这样完成:

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

希望它能帮助你

相关问题