=========================
Client side message boxes
=========================
..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:c6ab6322d92b7ec73af6324032ed00e8a974d28ad30f78d025febc67e5976bf7
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
:target: https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message
:alt: OCA/web
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_ir_actions_act_window_message
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
This module allows to show a message popup on the client side as result of a button.
**Table of contents**
.. contents::
:local:
Usage
=====
Depend on this module and return
.. code:: python
{
'type': 'ir.actions.act_window.message',
'title': _('My title'),
'message': _('My message'),
# optional title of the close button, if not set, will be _('Close')
# if set False, no close button will be shown
# you can create your own close button with an action of type
# ir.actions.act_window_close
'close_button_title': 'Make this window go away',
# Use HTML instead of text
'is_html_message': True,
# this is an optional list of buttons to show
'buttons': [
# a button can be any action (also ir.actions.report.xml et al)
{
'type': 'ir.actions.act_window',
'name': 'All customers',
'res_model': 'res.partner',
'view_mode': 'form',
'views': [[False, 'list'], [False, 'form']],
'domain': [('customer', '=', True)],
},
# or if type == method, you need to pass a model, a method name and
# parameters
{
'type': 'method',
'name': _('Yes, do it'),
'model': self._name,
'method': 'myfunction',
# list of arguments to pass positionally
'args': [self.ids],
# dictionary of keyword arguments
'kwargs': {'force': True},
# button style
'classes': 'btn-primary',
}
]
}
You are responsible for translating the messages.
Known issues / Roadmap
======================
* add `message_type` to differenciate between warnings, errors, etc.
* have one `message_type` to show a nonmodal warning on top right
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Credits
=======
Authors
~~~~~~~
* Therp BV
* ACSONE SA/NV
Contributors
~~~~~~~~~~~~
* Holger Brunn <hbrunn@therp.nl>
* Zakaria Makrelouf (ACSONE SA/NV) <z.makrelouf@gmail.com>
* Benjamin Willig (ACSONE SA/NV) <benjamin.willig@acsone.eu>
* Ioan Galan (Studio73) <ioan@studio73.es>
* Abraham Anes (Studio73) <abraham@studio73.es>
* Miguel Gandia (Studio73) <miguel@studio73.es>
* `DynApps NV <https://www.dynapps.be>`_:
* Koen Loodts
* Raf Ven
Maintainers
~~~~~~~~~~~
This module is maintained by the OCA.
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Raw data
{
"_id": null,
"home_page": "https://github.com/OCA/web",
"name": "odoo-addon-web-ir-actions-act-window-message",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": "",
"keywords": "",
"author": "Therp BV, ACSONE SA/NV, Odoo Community Association (OCA)",
"author_email": "support@odoo-community.org",
"download_url": "",
"platform": null,
"description": "=========================\nClient side message boxes\n=========================\n\n.. \n !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n !! This file is generated by oca-gen-addon-readme !!\n !! changes will be overwritten. !!\n !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n !! source digest: sha256:c6ab6322d92b7ec73af6324032ed00e8a974d28ad30f78d025febc67e5976bf7\n !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n :target: https://odoo-community.org/page/development-status\n :alt: Beta\n.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n :alt: License: AGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github\n :target: https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message\n :alt: OCA/web\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_ir_actions_act_window_message\n :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png\n :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0\n :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module allows to show a message popup on the client side as result of a button.\n\n**Table of contents**\n\n.. contents::\n :local:\n\nUsage\n=====\n\nDepend on this module and return\n\n.. code:: python\n\n {\n 'type': 'ir.actions.act_window.message',\n 'title': _('My title'),\n 'message': _('My message'),\n # optional title of the close button, if not set, will be _('Close')\n # if set False, no close button will be shown\n # you can create your own close button with an action of type\n # ir.actions.act_window_close\n 'close_button_title': 'Make this window go away',\n # Use HTML instead of text\n 'is_html_message': True,\n # this is an optional list of buttons to show\n 'buttons': [\n # a button can be any action (also ir.actions.report.xml et al)\n {\n 'type': 'ir.actions.act_window',\n 'name': 'All customers',\n 'res_model': 'res.partner',\n 'view_mode': 'form',\n 'views': [[False, 'list'], [False, 'form']],\n 'domain': [('customer', '=', True)],\n },\n # or if type == method, you need to pass a model, a method name and\n # parameters\n {\n 'type': 'method',\n 'name': _('Yes, do it'),\n 'model': self._name,\n 'method': 'myfunction',\n # list of arguments to pass positionally\n 'args': [self.ids],\n # dictionary of keyword arguments\n 'kwargs': {'force': True},\n # button style\n 'classes': 'btn-primary',\n }\n ]\n }\n\nYou are responsible for translating the messages.\n\nKnown issues / Roadmap\n======================\n\n* add `message_type` to differenciate between warnings, errors, etc.\n* have one `message_type` to show a nonmodal warning on top right\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us to smash it by providing a detailed and welcomed\n`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n~~~~~~~\n\n* Therp BV\n* ACSONE SA/NV\n\nContributors\n~~~~~~~~~~~~\n\n* Holger Brunn <hbrunn@therp.nl>\n* Zakaria Makrelouf (ACSONE SA/NV) <z.makrelouf@gmail.com>\n* Benjamin Willig (ACSONE SA/NV) <benjamin.willig@acsone.eu>\n* Ioan Galan (Studio73) <ioan@studio73.es>\n* Abraham Anes (Studio73) <abraham@studio73.es>\n* Miguel Gandia (Studio73) <miguel@studio73.es>\n* `DynApps NV <https://www.dynapps.be>`_:\n\n * Koen Loodts\n * Raf Ven\n\nMaintainers\n~~~~~~~~~~~\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n :alt: Odoo Community Association\n :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\nThis module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n\n\n",
"bugtrack_url": null,
"license": "AGPL-3",
"summary": "Show a message box to users",
"version": "16.0.1.0.1",
"project_urls": {
"Homepage": "https://github.com/OCA/web"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "240408be5b207c05bc8bec07981362ad4fae65843110ae1cd2abe471e6b7d965",
"md5": "da1ea9c141c1a830f7a6e67f86244889",
"sha256": "6b18eff699cd09e53f8ef06713abf53067a8873af29d4d6d535897514b5b7dd7"
},
"downloads": -1,
"filename": "odoo_addon_web_ir_actions_act_window_message-16.0.1.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "da1ea9c141c1a830f7a6e67f86244889",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 30880,
"upload_time": "2024-01-19T07:35:19",
"upload_time_iso_8601": "2024-01-19T07:35:19.174001Z",
"url": "https://files.pythonhosted.org/packages/24/04/08be5b207c05bc8bec07981362ad4fae65843110ae1cd2abe471e6b7d965/odoo_addon_web_ir_actions_act_window_message-16.0.1.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-01-19 07:35:19",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "OCA",
"github_project": "web",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "beautifulsoup4",
"specs": []
},
{
"name": "bokeh",
"specs": [
[
"==",
"3.1.1"
]
]
},
{
"name": "mpld3",
"specs": [
[
"==",
"0.5.9"
]
]
},
{
"name": "plotly",
"specs": [
[
"==",
"5.13.1"
]
]
}
],
"lcname": "odoo-addon-web-ir-actions-act-window-message"
}