v 8.0 v 9.0 v 10.0 v 11.0 v 12.0 Third Party 6676
Download for v 11.0 Deploy on Odoo.sh
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 27
Technical Name sh_message
LicenseLGPL-3
Websitehttps://www.softhealer.com
Versions 17.0 9.0 16.0 14.0 15.0 11.0 8.0 10.0 12.0 13.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 27
Technical Name sh_message
LicenseLGPL-3
Websitehttps://www.softhealer.com
Versions 17.0 9.0 16.0 14.0 15.0 11.0 8.0 10.0 12.0 13.0

Popup Message

This module is useful to create custom popup message
Wasting your important time to make popup message wizard like Alret, Success, Warnings?
We will help you to make this procedure quick, just add few line of code in your project to open the popup message wizard.

Key features:
  • Easy to use and flexible.
  • you can create alerts, warnings, success messages by just few line of code.
  • Time saving.

Popup message looks like below image

Put the below code where you want to open the popup message. you can give 'title/name' and 'message' as you want.


Our other modules

All in one - Mass Email Send
All in one - Mass Email Send
Project Task to Calendar and Calendar to Task Easy Management
Project Task to Calendar and Calendar to Task Easy Management
Website Portfolio
Website Portfolio

Help & Support

You will get free support and assistance in case of any issues


Email Helpdesk Support More About Us Skype

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.
There are no ratings yet!
Why can't I play it
by
gw.dai
on 5/8/19, 5:29 AM

My popover won't pop up. The code is the same as above


How does this module work?
by
Jayant Bulbule
on 9/2/18, 3:46 PM

Just thinking how does this module work? Or rather how this should be used? The code snippet you provided above and advised to put where the message needs to be shown has a "return {}" statement in itself. Where would be control be returned and would it not impact the overall flow of the .py file in which this code has been put in? view = self.env.ref('sh_message.sh_message_wizard') view_id = view and view.id or False context = dict(self._context or {}) context['message'] = message_to_display return { 'name': title_to_display, 'type': 'ir.actions.act_windows', 'view_type': 'form', 'view_mode': 'form', 'res_model': 'sh.message.wizard', 'views': [(view.id, 'form')], 'view_id': view.id, 'target': 'new', 'context': context, }