v 8.0 v 9.0 v 10.0 v 11.0 v 12.0 Third Party 6644
Download for v 9.0
Availability
Odoo Online
Odoo.sh
On Premise
Technical Name sh_message
LicenseLGPL-3
Websitehttps://www.softhealer.com
Versions 16.0 15.0 14.0 17.0 9.0 12.0 11.0 8.0 10.0 13.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Technical Name sh_message
LicenseLGPL-3
Websitehttps://www.softhealer.com
Versions 16.0 15.0 14.0 17.0 9.0 12.0 11.0 8.0 10.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!
by
I-Soft Solutions
on 8/28/20, 9:28 AM

Hi There,

I have downloaded your app and try to install it as per your instructions. However, I get the follwing error when I run it. Could you possibly see what I've done wrong

Many thanks

Traceback:
TypeError: Cannot read property 'display_name' of undefined
    at Engine.eval (eval at _render (http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:3737:73), <anonymous>:26:41)
    at Engine._render (http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:3736:296)
    at Engine.render (http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:3736:151)
    at Engine._render (http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:3740:57)
    at Engine.render (http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:3736:151)
    at Class._setPopOver (http://localhost:8013/web/content/796-b2f62e7/web.assets_backend.js:4280:369)
    at Class.updateState (http://localhost:8013/web/content/796-b2f62e7/web.assets_backend.js:4279:877)
    at http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:120:383
    at Function._.map._.collect (http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:112:270)
    at Function._.invoke (http://localhost:8013/web/content/571-9301ea4/web.assets_common.js:120:294)

Here is my code

view = self.env.ref('sh_message.sh_message_wizard')
view_id = view and view.id or False
context = dict(self._context or {})
context['message'] = "My test message"
return {
'name': 'Success',
'type': 'ir.actions.act_window',
'view_type': 'form',
'view_mode': 'form',
'res_model': 'sh.message.wizard',
'views': [(view.id,'form')],
'view_id': view.id,
'target': 'new',
'context': context,
}