gpt4 book ai didi

postgresql - 类型错误 : create() got multiple values for keyword argument 'context'

转载 作者:行者123 更新时间:2023-11-29 12:00:54 24 4
gpt4 key购买 nike

我遇到这样的错误:

TypeError: create () got multiple values ​​for keyword argument 'context'

这是代码:

mov_id = self.create(cr, uid, ids, {'so_ids':so, 'product_ids':product},context=context)

有什么问题?

最佳答案

要创建记录,参数是游标、user_id、值字典和上下文。例如

mov_id = self.create(cr, uid, {'so_ids': so, 'product_ids': product},context=context)

创建不带任何id,如果你想使用复制,那么使用

mov_id = self.copy(cr, uid, ids, {'so_ids':so, 'product_ids':product},context=context)

关于postgresql - 类型错误 : create() got multiple values for keyword argument 'context' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11481076/

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