diff --git a/project_task_note/README.rst b/project_task_note/README.rst new file mode 100644 index 0000000000..14972951b3 --- /dev/null +++ b/project_task_note/README.rst @@ -0,0 +1,98 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +================== +Project task notes +================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:cd0657aec63a11140ad9802ed706c955cbc75f65a7e47fe8282d4c1a2aa722af + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/license-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%2Fproject-lightgray.png?logo=github + :target: https://github.com/OCA/project/tree/19.0/project_task_note + :alt: OCA/project +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/project-19-0/project-19-0-project_task_note + :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/project&target_branch=19.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module add notes in project tasks, only visible for internal users. + +**Table of contents** + +.. contents:: + :local: + +Use Cases / Context +=================== + +There's no field where storing general comments and notes not visible to +the customers in the portal + +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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa + +Contributors +------------ + +- `Tecnativa `__: + + - Carolina Fernandez + - Pilar Vargas + - David Bañón + +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. + +.. |maintainer-pilarvargas-tecnativa| image:: https://github.com/pilarvargas-tecnativa.png?size=40px + :target: https://github.com/pilarvargas-tecnativa + :alt: pilarvargas-tecnativa + +Current `maintainer `__: + +|maintainer-pilarvargas-tecnativa| + +This module is part of the `OCA/project `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/project_task_note/__init__.py b/project_task_note/__init__.py new file mode 100644 index 0000000000..e87e85c4c4 --- /dev/null +++ b/project_task_note/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import models diff --git a/project_task_note/__manifest__.py b/project_task_note/__manifest__.py new file mode 100644 index 0000000000..4623bba0ce --- /dev/null +++ b/project_task_note/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2024 Tecnativa Carolina Fernandez +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +{ + "name": "Project task notes", + "version": "19.0.1.0.0", + "category": "Project Management", + "summary": "Add notes in project tasks", + "author": "Tecnativa, Odoo Community Association (OCA)", + "maintainers": ["pilarvargas-tecnativa"], + "website": "https://github.com/OCA/project", + "license": "AGPL-3", + "installable": True, + "depends": ["project"], + "data": ["views/project_task_views.xml"], +} diff --git a/project_task_note/i18n/es.po b/project_task_note/i18n/es.po new file mode 100644 index 0000000000..05696cb557 --- /dev/null +++ b/project_task_note/i18n/es.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_task_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-15 15:44+0000\n" +"PO-Revision-Date: 2025-12-09 15:34+0000\n" +"Last-Translator: \"Pedro M. Baeza\" \n" +"Language-Team: \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.10.4\n" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Insert internal notes here" +msgstr "Introduzca las notas internas aquí" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Internal Notes" +msgstr "Notas internas" + +#. module: project_task_note +#: model:ir.model.fields,field_description:project_task_note.field_project_task__notes +msgid "Internal notes" +msgstr "Notas internas" + +#. module: project_task_note +#: model:ir.model,name:project_task_note.model_project_task +msgid "Task" +msgstr "Tarea" diff --git a/project_task_note/i18n/it.po b/project_task_note/i18n/it.po new file mode 100644 index 0000000000..2f91f0b7b9 --- /dev/null +++ b/project_task_note/i18n/it.po @@ -0,0 +1,37 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_task_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-12-10 11:42+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.10.4\n" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Insert internal notes here" +msgstr "Inserire qui le note interne" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Internal Notes" +msgstr "Note interne" + +#. module: project_task_note +#: model:ir.model.fields,field_description:project_task_note.field_project_task__notes +msgid "Internal notes" +msgstr "Note interne" + +#. module: project_task_note +#: model:ir.model,name:project_task_note.model_project_task +msgid "Task" +msgstr "Lavoro" diff --git a/project_task_note/i18n/project_task_note.pot b/project_task_note/i18n/project_task_note.pot new file mode 100644 index 0000000000..b68b175435 --- /dev/null +++ b/project_task_note/i18n/project_task_note.pot @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_task_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Insert internal notes here" +msgstr "" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Internal Notes" +msgstr "" + +#. module: project_task_note +#: model:ir.model.fields,field_description:project_task_note.field_project_task__notes +msgid "Internal notes" +msgstr "" + +#. module: project_task_note +#: model:ir.model,name:project_task_note.model_project_task +msgid "Task" +msgstr "" diff --git a/project_task_note/i18n/pt_BR.po b/project_task_note/i18n/pt_BR.po new file mode 100644 index 0000000000..d73ce19940 --- /dev/null +++ b/project_task_note/i18n/pt_BR.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_task_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Insert internal notes here" +msgstr "" + +#. module: project_task_note +#: model_terms:ir.ui.view,arch_db:project_task_note.view_task_form2 +msgid "Internal Notes" +msgstr "" + +#. module: project_task_note +#: model:ir.model.fields,field_description:project_task_note.field_project_task__notes +msgid "Internal notes" +msgstr "" + +#. module: project_task_note +#: model:ir.model,name:project_task_note.model_project_task +msgid "Task" +msgstr "" diff --git a/project_task_note/models/__init__.py b/project_task_note/models/__init__.py new file mode 100644 index 0000000000..ebd54ea2e6 --- /dev/null +++ b/project_task_note/models/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import project_task diff --git a/project_task_note/models/project_task.py b/project_task_note/models/project_task.py new file mode 100644 index 0000000000..2725a3a7ce --- /dev/null +++ b/project_task_note/models/project_task.py @@ -0,0 +1,10 @@ +# Copyright 2024 Tecnativa Carolina Fernandez +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from odoo import fields, models + + +class ProjectTask(models.Model): + _inherit = "project.task" + + notes = fields.Html(string="Internal notes") diff --git a/project_task_note/pyproject.toml b/project_task_note/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/project_task_note/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/project_task_note/readme/CONTEXT.md b/project_task_note/readme/CONTEXT.md new file mode 100644 index 0000000000..8899a8184d --- /dev/null +++ b/project_task_note/readme/CONTEXT.md @@ -0,0 +1,2 @@ +There's no field where storing general comments and notes not visible to +the customers in the portal diff --git a/project_task_note/readme/CONTRIBUTORS.md b/project_task_note/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..2f3e56b0d2 --- /dev/null +++ b/project_task_note/readme/CONTRIBUTORS.md @@ -0,0 +1,5 @@ +- [Tecnativa](https://www.tecnativa.com): + + > - Carolina Fernandez + > - Pilar Vargas + > - David Bañón diff --git a/project_task_note/readme/DESCRIPTION.md b/project_task_note/readme/DESCRIPTION.md new file mode 100644 index 0000000000..c74b06b80b --- /dev/null +++ b/project_task_note/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module add notes in project tasks, only visible for internal users. diff --git a/project_task_note/readme/USAGE.srt b/project_task_note/readme/USAGE.srt new file mode 100644 index 0000000000..0919f7f8e5 --- /dev/null +++ b/project_task_note/readme/USAGE.srt @@ -0,0 +1,4 @@ +To use this module, you need to: + +#. Go to menu Project > Search > Tasks and create/edit task +#. Inside Description page on project task form, you will see internal notes to fill in diff --git a/project_task_note/static/description/icon.png b/project_task_note/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/project_task_note/static/description/icon.png differ diff --git a/project_task_note/static/description/index.html b/project_task_note/static/description/index.html new file mode 100644 index 0000000000..a0f038ba33 --- /dev/null +++ b/project_task_note/static/description/index.html @@ -0,0 +1,445 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Project task notes

+ +

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

+

This module add notes in project tasks, only visible for internal users.

+

Table of contents

+ +
+

Use Cases / Context

+

There’s no field where storing general comments and notes not visible to +the customers in the portal

+
+
+

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.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+
    +
  • Tecnativa:

    +
    +
      +
    • Carolina Fernandez
    • +
    • Pilar Vargas
    • +
    • David Bañón
    • +
    +
    +
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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.

+

Current maintainer:

+

pilarvargas-tecnativa

+

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

+

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

+
+
+
+
+ + diff --git a/project_task_note/views/project_task_views.xml b/project_task_note/views/project_task_views.xml new file mode 100644 index 0000000000..00bd1e1ade --- /dev/null +++ b/project_task_note/views/project_task_views.xml @@ -0,0 +1,27 @@ + + + + + + project_task.form.note + project.task + + + +
Internal Notes
+ + +
+
+