无法覆盖类HttpRequest方法在Web模块中调度?

时间:2014-06-10 14:48:57

标签: python openerp override openerp-7

我试图在openerp项目中覆盖web => http.py文件中的方法。 我写了这段代码:

#in my_http.py 
from openerp.addons import web
class my_httprequest(web.http.HttpRequest):
    def dispatch(self, method):
        #some new code here ...

但不会覆盖原件? 问题在哪里,为什么不能覆盖?

1 个答案:

答案 0 :(得分:0)

您是否将'my_http.py'语句放在' openerp .py'文件中?