How would one debug python code in server actions?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Bogføring
- Lager
- PoS
- Project
- MRP
Dette spørgsmål er blevet anmeldt
2
Besvarelser
8617
Visninger
How would one debug python code in server actions?
I'm currently working on a module that does just that. My current patch got rejected on grounds of changing too much code for a rarely used feature, so we decided on a compromise which is to make it available as a module. The module still needs to be written, but if you require this in the meantime, you can look at my current patch at https://github.com/odoo/odoo/pull/2139 - the final module will use roughly the same logic, but it will dispense with the --debug-server-actions flag and use the already existing --debug flag instead.
That sounds great. Altough we're not using odoo (not because of that issue) anymore I am sure someone else is very happy about your efforts.
I'm afraid there is no easy way to do that. You could copy the python code in a method of the model the server action applies to, and call that method with the right ids and context.
Thanks. Do you execute this with a python server action or is there another way?
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Tilmeld digRelated Posts | Besvarelser | Visninger | Aktivitet | |
---|---|---|---|---|
|
1
jun. 15
|
4456 | ||
|
0
jul. 25
|
2 | ||
|
1
maj 24
|
1121 | ||
|
3
jun. 23
|
10614 | ||
|
4
mar. 22
|
12676 |
I've tried logging, warnings, exceptions and print. All don't work! :(
A colleague is also working on a separate effort to enable printing from within server actions.