Override python function in odoo

放肆的年华 提交于 2019-12-02 03:04:42

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

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