跳至内容
菜单
此问题已终结
1 回复
3053 查看

I have a new field for a model with existing records. It works on new records but I also want old records to have a value on the field. How can I achieve this?

形象
丢弃

What is the type of your new field? Is it a normal field or compute field?
It would be better if you share your code.

编写者

It turns out what I needed was odoo hooks

最佳答案

Hi,


You can use odoo Post hooks for this problem:


You need to post_init_function in your manifest file:


              'post_init_hook':'add_field_test'



Import the post_init_hook function in your __init__.py file and define the function


from . hooks import add_field_test


Inside the hooks.py file define the function as follows,


from odoo import api,SUPERUSER_ID


def add_field_test(cr,registry):

env=api.Environment(cr,SUPERUSER_ID,{})

for rec in env[demo.model].search([]):

rec.field="value"


For more information refer: https://www.cybrosys.com/blog/how-to-use-hooks-in-odoo-development


Hope it helps

形象
丢弃
相关帖文 回复 查看 活动
1
9月 23
2469
1
3月 24
1684
1
4月 24
2850
2
1月 24
3849
0
10月 23
2262