diff --git a/muk_web_client/__manifest__.py b/muk_web_client/__manifest__.py index e6e3575..761f0f4 100644 --- a/muk_web_client/__manifest__.py +++ b/muk_web_client/__manifest__.py @@ -20,7 +20,7 @@ { "name": "MuK Web Client", "summary": """Odoo Web Client Extension""", - "version": "11.0.2.0.0", + "version": "11.0.2.0.1", "category": "Extra Tools", "license": "AGPL-3", "website": "http://www.mukit.at", diff --git a/muk_web_client/models/res_config_settings.py b/muk_web_client/models/res_config_settings.py index 39eccb4..0d424f4 100644 --- a/muk_web_client/models/res_config_settings.py +++ b/muk_web_client/models/res_config_settings.py @@ -26,4 +26,8 @@ class ResConfigSettings(models.TransientModel): module_muk_web_client_refresh = fields.Boolean( string="Web Refresh", help="Define action rules to automatically refresh views.") + + module_muk_web_client_notification = fields.Boolean( + string="Web Notification", + help="Send instant messages to users in real time.") \ No newline at end of file diff --git a/muk_web_client/views/res_config_settings_view.xml b/muk_web_client/views/res_config_settings_view.xml index 6c00651..aba8f3e 100644 --- a/muk_web_client/views/res_config_settings_view.xml +++ b/muk_web_client/views/res_config_settings_view.xml @@ -41,6 +41,20 @@ +
Adds a notification channel to + the web client. By sending a message to this channel, a notification + is send to the web client. Messages can either be sent via a wizard + or directly from the python code either via a method in ResUsers or + by an entry in the bus system.
+With the Notification Wizard you + can easily create and send new messages. If no user is selected, the + message is sent globally to all users.
+A message can be either an + information or a warning and the sticky option leaves the message + displayed until a user action.
+