Hi, i want to check if developer mode is active inside a function, so if is active i will send a more descriptive error message inside a function that can raise and exception, and if is not active i will only show a simple error to user.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Financeiro
- Inventário
- PoS
- Project
- MRP
Esta pergunta foi sinalizada
Two options that come to mind are using has_group('base.group_no_one') on the logged in user, or checking if the URL contains debug=.
Good Luck,
Jake Robinson
Hello
Reinhart
Here you can get your solution.
Write bellow code in your method you can easily get active mode status.
from openerp.http import request
and check weather debug mode active or not.
print "====Checking Debug mode active or not=====", request.debug
Está gostando da discussão? Não fique apenas lendo, participe!
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-sePublicações relacionadas | Respostas | Visualizações | Atividade | |
---|---|---|---|---|
|
0
nov. 16
|
6230 | ||
|
0
dez. 23
|
1961 | ||
|
2
jan. 21
|
6341 | ||
Report in custom module
Resolvido
|
|
2
mar. 20
|
5295 | |
|
1
out. 18
|
5351 |
Hello
Reinhart
Here you can get your solution.
Write bellow code in your method you can easily get active mode status.
from openerp.http import request
and check weather debug mode active or not.
print "====Checking Debug mode active or not=====", request.debug