My main class:
class ReportController(http.Controller):
@http.route('/report/download_document/<reportname>/<docids>', type='http', auth="user")
@serialize_exception
def download_document(self, **kw):
My inherit class:
from odoo.addons.my_module.controllers.main import ReportController as RC
class ReportControllerProject(RC):
# Override method: download_document in my_module
@http.route('/report/download_document/<reportname>/<docids>', type='http', auth="user")
@serialize_exception
def download_document(self, **kw):
But when I use action to download_document in another module it still uses the function of the inherit class.
I want this function to be used only in the inherit class of this module, not everywhere, so what am I gonna do?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…