diff --git a/mail_activity_board/README.rst b/mail_activity_board/README.rst index d45558185..d8fcf808a 100644 --- a/mail_activity_board/README.rst +++ b/mail_activity_board/README.rst @@ -17,18 +17,19 @@ Mail Activity Board :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github - :target: https://github.com/OCA/social/tree/16.0/mail_activity_board + :target: https://github.com/OCA/social/tree/17.0/mail_activity_board :alt: OCA/social .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_activity_board + :target: https://translation.odoo-community.org/projects/social-17-0/social-17-0-mail_activity_board :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/social&target_branch=16.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/social&target_branch=17.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| -This module adds an activity board with form, tree, kanban, calendar, pivot, graph and search views. +This module adds an activity board with form, tree, kanban, calendar, +pivot, graph and search views. **Table of contents** @@ -40,13 +41,14 @@ Usage To use this module, you need to: -#. Access to the views from menu Boards. +1. Access to the views from menu Boards. A smartButton of activities is added in the mail thread from form view. From this smartButton is linked to the activity board, to the view tree, which shows the activities related to the opportunity. -From the form view of the activity you can navigate to the origin of the activity. +From the form view of the activity you can navigate to the origin of the +activity. Bug Tracker =========== @@ -54,7 +56,7 @@ Bug Tracker Bugs are tracked on `GitHub 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -62,7 +64,7 @@ Credits ======= Authors -~~~~~~~ +------- * SDi * David Juaneda @@ -70,26 +72,26 @@ Authors * ACSONE SA/NV Contributors -~~~~~~~~~~~~ +------------ -* `SDI `_: +- `SDI `__: - * David Juaneda + - David Juaneda -* `ForgeFlow `_: +- `ForgeFlow `__: - * Miquel Raïch (miquel.raich@forgeflow.com) + - Miquel Raïch (miquel.raich@forgeflow.com) -* `Pesol `_: +- `Pesol `__: - * Pedro Gonzalez (pedro.gonzalez@pesol.es) + - Pedro Gonzalez (pedro.gonzalez@pesol.es) -* `ACSONE SA/NV `_ +- `ACSONE SA/NV `__ - * Laurent Mignon + - Laurent Mignon Maintainers -~~~~~~~~~~~ +----------- This module is maintained by the OCA. @@ -101,6 +103,6 @@ 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/social `_ project on GitHub. +This module is part of the `OCA/social `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mail_activity_board/models/mail_activity.py b/mail_activity_board/models/mail_activity.py index aca767a8d..6ed172ad4 100644 --- a/mail_activity_board/models/mail_activity.py +++ b/mail_activity_board/models/mail_activity.py @@ -28,7 +28,7 @@ class MailActivity(models.Model): for record in self: ref = False if record.res_id: - ref = "{},{}".format(record.res_model, record.res_id) + ref = f"{record.res_model},{record.res_id}" record.related_model_instance = ref @api.model diff --git a/mail_activity_board/pyproject.toml b/mail_activity_board/pyproject.toml new file mode 100644 index 000000000..4231d0ccc --- /dev/null +++ b/mail_activity_board/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/mail_activity_board/readme/CONTRIBUTORS.md b/mail_activity_board/readme/CONTRIBUTORS.md new file mode 100644 index 000000000..a7c1444e4 --- /dev/null +++ b/mail_activity_board/readme/CONTRIBUTORS.md @@ -0,0 +1,8 @@ +- [SDI](https://www.sdi.es): + - David Juaneda +- [ForgeFlow](https://www.forgeflow.com): + - Miquel Raïch () +- [Pesol](https://www.pesol.es): + - Pedro Gonzalez () +- [ACSONE SA/NV](https://www.acsone.eu) + - Laurent Mignon \<\> diff --git a/mail_activity_board/readme/CONTRIBUTORS.rst b/mail_activity_board/readme/CONTRIBUTORS.rst deleted file mode 100644 index adad24ffc..000000000 --- a/mail_activity_board/readme/CONTRIBUTORS.rst +++ /dev/null @@ -1,15 +0,0 @@ -* `SDI `_: - - * David Juaneda - -* `ForgeFlow `_: - - * Miquel Raïch (miquel.raich@forgeflow.com) - -* `Pesol `_: - - * Pedro Gonzalez (pedro.gonzalez@pesol.es) - -* `ACSONE SA/NV `_ - - * Laurent Mignon diff --git a/mail_activity_board/readme/DESCRIPTION.rst b/mail_activity_board/readme/DESCRIPTION.md similarity index 63% rename from mail_activity_board/readme/DESCRIPTION.rst rename to mail_activity_board/readme/DESCRIPTION.md index 925a1c0ef..4676294fb 100644 --- a/mail_activity_board/readme/DESCRIPTION.rst +++ b/mail_activity_board/readme/DESCRIPTION.md @@ -1 +1,2 @@ -This module adds an activity board with form, tree, kanban, calendar, pivot, graph and search views. +This module adds an activity board with form, tree, kanban, calendar, +pivot, graph and search views. diff --git a/mail_activity_board/readme/USAGE.rst b/mail_activity_board/readme/USAGE.md similarity index 83% rename from mail_activity_board/readme/USAGE.rst rename to mail_activity_board/readme/USAGE.md index 82a854851..30fb22bdf 100644 --- a/mail_activity_board/readme/USAGE.rst +++ b/mail_activity_board/readme/USAGE.md @@ -1,9 +1,10 @@ To use this module, you need to: -#. Access to the views from menu Boards. +1. Access to the views from menu Boards. A smartButton of activities is added in the mail thread from form view. From this smartButton is linked to the activity board, to the view tree, which shows the activities related to the opportunity. -From the form view of the activity you can navigate to the origin of the activity. +From the form view of the activity you can navigate to the origin of the +activity. diff --git a/mail_activity_board/static/description/index.html b/mail_activity_board/static/description/index.html index ad78516fa..c1f353c57 100644 --- a/mail_activity_board/static/description/index.html +++ b/mail_activity_board/static/description/index.html @@ -369,8 +369,9 @@ ul.auto-toc { !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:f7d5a8f20c6ac87af148f360f18d7ac8af6552bd4ab89cdcb971fea7f7a408aa !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/social Translate me on Weblate Try me on Runboat

-

This module adds an activity board with form, tree, kanban, calendar, pivot, graph and search views.

+

Beta License: AGPL-3 OCA/social Translate me on Weblate Try me on Runboat

+

This module adds an activity board with form, tree, kanban, calendar, +pivot, graph and search views.

Table of contents

    @@ -393,14 +394,15 @@ ul.auto-toc {

    A smartButton of activities is added in the mail thread from form view. From this smartButton is linked to the activity board, to the view tree, which shows the activities related to the opportunity.

    -

    From the form view of the activity you can navigate to the origin of the activity.

    +

    From the form view of the activity you can navigate to the origin of the +activity.

Bug Tracker

Bugs are tracked on GitHub 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.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -442,7 +444,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome

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/social project on GitHub.

+

This module is part of the OCA/social project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/pandoc-3.1.9-1-amd64.deb b/pandoc-3.1.9-1-amd64.deb new file mode 100644 index 000000000..77ae8bb6e Binary files /dev/null and b/pandoc-3.1.9-1-amd64.deb differ