Created
March 27, 2021 15:05
-
-
Save ilyasProgrammer/c1be3e089b46f95349b9a2645afc2e6a to your computer and use it in GitHub Desktop.
Odoo pop up
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notification = { | |
'type': 'ir.actions.client', | |
'tag': 'display_notification', | |
'params': { | |
'title': ('Your Custom Title'), | |
'message': 'Your Custom Message', | |
'type':'success', #types: success,warning,danger,info | |
'sticky': True, #True/False will display for few seconds if false | |
}, | |
} | |
return notification |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how to use this in odoo?