In odoo, with a Python "raise warning" command I am able to launch a window that warns me of any error in a form. But until I fix that bug I can't save the form.
Now I want to create a simple confirmation window, that if I hit OK it will let me save the form.
Is there a command for this in Python?
Thank you very much.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
3
Réponses
1981
Vues
is there a way to do this with python in an automatic action?
like: raise Warning("xxxx")
but instead of RAISE WARNING, another command?
Thanks!
two possible solutions:
1. using attribute "confirm" on view of button
2. create wizard to do as your needs
I added directly in the view of the model.
<button name="buttonClickEvent" string="Approve" type="object" class="oe_highlight"
confirm="Proceed to Approve Call?"/>
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
0
mars 25
|
1316 | ||
|
4
avr. 24
|
174164 | ||
|
0
déc. 23
|
2087 | ||
|
5
juil. 25
|
227794 | ||
|
1
déc. 22
|
3217 |
is there a way to do this with python in an automatic action?
like: raise Warning("xxxx")
but instead of RAISE WARNING, another command?
Thanks!