Skip to content

Instantly share code, notes, and snippets.

@sehrishnaz
Created June 27, 2022 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sehrishnaz/a763a0058412a966bc072fb4ee8b27bd to your computer and use it in GitHub Desktop.
Save sehrishnaz/a763a0058412a966bc072fb4ee8b27bd to your computer and use it in GitHub Desktop.
Display Only Sticky Notification in Odoo15
def cmd_send_notification(self):
return {
'type': 'ir.actions.client',
'tag': 'display_notification',
'params': {
'title': _('Your Custom Notification Title'),
'message': 'Your Custom Message...',
'sticky': False,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment