Override python function in odoo

别说谁变了你拦得住时间么 提交于 2019-12-20 04:49:36

问题


I make some changes in the read_group function which is located in the odoo/server/openerp/models.

What I need now is to override this function in my own module. So I copy this function in the .py file of my module but this doesn't work for me. Can any one tell me how to do that?


回答1:


Please find the example as below

from openerp import models
def read_group():
    #YOUR OVERRIDDEN Function

models.BaseModel.read_group = read_group

For New API and old API compatibility issue you can also use _register_hook as given in example on this link. https://stackoverflow.com/a/34854721/1451220



来源:https://stackoverflow.com/questions/31430624/override-python-function-in-odoo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!