コンテンツへスキップ
メニュー
この質問にフラグが付けられました
3 返信
2485 ビュー

Hi all, 

In my company we are looking for a way to better notify users of whats happening in odoo (Chat and Activities) - is there any way to show the notifications as browser popups?


Also, is there a way to do the same thing in the odoo mobile app?

Emails are ok but i need real push messages...


Thank you!


アバター
破棄
最善の回答

You can allow Odoo to send you notifications through your browser, that also is possible for the Odoo App. So you get those standard notifications of your OS.







obd.digital

アバター
破棄
最善の回答

How exactly can push popup notifications be set up? We have enabled in user settings "Notification: Handle in Odoo" (instead of Email). But this only enables an alert on the small bell in the upper right of the page but no system messages. How could we we make system messages work?


アバター
破棄
最善の回答

Hi,

In odoo, you can send sticky notifications by using the code


def sticky_notif(self):

    return {

            'type': 'ir.actions.client',

            'tag': 'display_notification',

            'params': {

                'message': _("Sample sticky notification"),

                'type': 'success',

            },

        }


The notification will be appear like


Hope it helps

アバター
破棄

@Cybrosys Techno Solutions Pvt.Ltd,

Relative to the OP's initial inquiry, where do you propose this code you shared goes? That is, where would it be used, both in this specific case AND in other cases?

Thanks in advance.

関連投稿 返信 ビュー 活動
1
12月 24
907
0
2月 24
851
0
4月 17
12092
1
7月 24
2217
4
5月 25
1033