Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged

Hi All,
I was trying to override one of Odoo's exception classes in my custom module. Here is what i tried.

exception.py
     

from odoo.exceptions import ValidationError, except_orm
from odoo.http import request
print('-------am here-------------')
class ValidationError(ValidationError):
​def __init__(self, msg):
​print('print ValidationError------',msg)
​super(ValidationError, self).__init__(msg)

But still, the validation error gets called from the base class, not my custom class.

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
2
lis 18
12260
2
pro 24
4425
1
lis 24
3200
2
dub 23
18226
1
bře 23
2469