Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

python - how to override function in inherit controller Odoo 12 only using in this module

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.5k users

...