I want to override the report_download method in the addons/report/controllers/main.py file. but I do not know how to inherit the ReportController(Controller) class. I understand that inheriting a controller is not the same as the other classes. Can anyone please help me out?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
I would suggest to do this:
from openerp import http
from openerp.http import request
import openerp.addons.report.controllers.main as main
class Extension(main.ReportController):
@route(['/report/download'], type='http', auth="user")
def report_download(self, data, token):
do_what_you_need_to_do()
return super(Extension, self).report_download(data, token)
Yup, this would be a cleaner way to do it. Thanks Gael.
Ok got it.
from openerp.addons import report
class ReportControllerDerived(report.controllers.main.ReportController):
@route(['/report/download'], type='http', auth="user")
def report_download(self, data, token):
///remaining code
I had not referenced the base class correctly earlier
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
0
سبتمبر 16
|
3633 | ||
|
3
نوفمبر 21
|
8119 | ||
|
1
مارس 19
|
6823 | ||
|
5
يونيو 17
|
9023 | ||
|
5
نوفمبر 16
|
6872 |