From 6cf06360942bf0d5562c37e40812747a2164120a Mon Sep 17 00:00:00 2001 From: MariaBForgeFlow Date: Mon, 30 Oct 2023 11:55:52 +0100 Subject: [PATCH 01/99] [ADD] helpdesk_product --- helpdesk_product/README.rst | 0 helpdesk_product/__init__.py | 1 + helpdesk_product/__manifest__.py | 13 ++++++ helpdesk_product/models/__init__.py | 1 + helpdesk_product/models/helpdesk_ticket.py | 7 ++++ helpdesk_product/readme/CONTRIBUTORS.rst | 3 ++ helpdesk_product/readme/DESCRIPTION.rst | 1 + .../views/helpdesk_ticket_view.xml | 41 +++++++++++++++++++ 8 files changed, 67 insertions(+) create mode 100644 helpdesk_product/README.rst create mode 100644 helpdesk_product/__init__.py create mode 100644 helpdesk_product/__manifest__.py create mode 100644 helpdesk_product/models/__init__.py create mode 100644 helpdesk_product/models/helpdesk_ticket.py create mode 100644 helpdesk_product/readme/CONTRIBUTORS.rst create mode 100644 helpdesk_product/readme/DESCRIPTION.rst create mode 100644 helpdesk_product/views/helpdesk_ticket_view.xml diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst new file mode 100644 index 0000000000..e69de29bb2 diff --git a/helpdesk_product/__init__.py b/helpdesk_product/__init__.py new file mode 100644 index 0000000000..0650744f6b --- /dev/null +++ b/helpdesk_product/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py new file mode 100644 index 0000000000..bbcbaee97b --- /dev/null +++ b/helpdesk_product/__manifest__.py @@ -0,0 +1,13 @@ +{ + "name": "Helpdesk Product", + "summary": "Add the option to select product in the tickets.", + "author": "ForgeFlow, " "Odoo Community Association (OCA)", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "category": "After-Sales", + "website": "https://github.com/OCA/helpdesk", + "depends": ["helpdesk_mgmt", "sale_management"], + "data": ["views/helpdesk_ticket_view.xml"], + "development_status": "Beta", + "auto_install": True, +} diff --git a/helpdesk_product/models/__init__.py b/helpdesk_product/models/__init__.py new file mode 100644 index 0000000000..8e082e7c81 --- /dev/null +++ b/helpdesk_product/models/__init__.py @@ -0,0 +1 @@ +from . import helpdesk_ticket diff --git a/helpdesk_product/models/helpdesk_ticket.py b/helpdesk_product/models/helpdesk_ticket.py new file mode 100644 index 0000000000..bcb313f146 --- /dev/null +++ b/helpdesk_product/models/helpdesk_ticket.py @@ -0,0 +1,7 @@ +from odoo import fields, models + + +class HelpdeskTicket(models.Model): + + _inherit = "helpdesk.ticket" + product_id = fields.Many2one(string="Product", comodel_name="product.product") diff --git a/helpdesk_product/readme/CONTRIBUTORS.rst b/helpdesk_product/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..72db90fd84 --- /dev/null +++ b/helpdesk_product/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `ForgeFlow `_: + + * Maria Buscallà diff --git a/helpdesk_product/readme/DESCRIPTION.rst b/helpdesk_product/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..522e1c55dc --- /dev/null +++ b/helpdesk_product/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds the option to select product in the helpdesk tickets. diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml new file mode 100644 index 0000000000..3685ea741b --- /dev/null +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -0,0 +1,41 @@ + + + + + + helpdesk.ticket.form + helpdesk.ticket + + + + + + + + + + + helpdesk.ticket.tree + helpdesk.ticket + + + + + + + + + + + helpdesk.ticket.search + helpdesk.ticket + + + + + + + + + + From a0882bccfd0f5005f6932e5fc3feba3f8db66a66 Mon Sep 17 00:00:00 2001 From: MariaBForgeFlow Date: Tue, 7 Nov 2023 14:26:34 +0100 Subject: [PATCH 02/99] [ADD] helpdesk_product --- helpdesk_product/__manifest__.py | 4 ++-- helpdesk_product/models/__init__.py | 2 +- helpdesk_product/models/product.py | 7 +++++++ .../views/helpdesk_ticket_view.xml | 18 ++++++++++++++++-- helpdesk_product/views/product_view.xml | 16 ++++++++++++++++ 5 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 helpdesk_product/models/product.py create mode 100644 helpdesk_product/views/product_view.xml diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index bbcbaee97b..554de5f9f7 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -6,8 +6,8 @@ "license": "AGPL-3", "category": "After-Sales", "website": "https://github.com/OCA/helpdesk", - "depends": ["helpdesk_mgmt", "sale_management"], - "data": ["views/helpdesk_ticket_view.xml"], + "depends": ["helpdesk_mgmt", "product"], + "data": ["views/helpdesk_ticket_view.xml", "views/product_view.xml"], "development_status": "Beta", "auto_install": True, } diff --git a/helpdesk_product/models/__init__.py b/helpdesk_product/models/__init__.py index 8e082e7c81..210758986a 100644 --- a/helpdesk_product/models/__init__.py +++ b/helpdesk_product/models/__init__.py @@ -1 +1 @@ -from . import helpdesk_ticket +from . import helpdesk_ticket, product diff --git a/helpdesk_product/models/product.py b/helpdesk_product/models/product.py new file mode 100644 index 0000000000..238eb7fa8a --- /dev/null +++ b/helpdesk_product/models/product.py @@ -0,0 +1,7 @@ +from odoo import fields, models + + +class Product(models.Model): + _inherit = "product.template" + + ticket_active = fields.Boolean("Available for Helpdesk Tickets", default=True, required=True) diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml index 3685ea741b..3d8ca235c3 100644 --- a/helpdesk_product/views/helpdesk_ticket_view.xml +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -8,7 +8,7 @@ - + @@ -34,8 +34,22 @@ + + + + + + - diff --git a/helpdesk_product/views/product_view.xml b/helpdesk_product/views/product_view.xml new file mode 100644 index 0000000000..09c7dfbb57 --- /dev/null +++ b/helpdesk_product/views/product_view.xml @@ -0,0 +1,16 @@ + + + + + + product.template.common.form + product.template + + + + + + + + + From 9b349068ea8048563cb72eb42e3325c21bda7610 Mon Sep 17 00:00:00 2001 From: MariaBForgeFlow Date: Tue, 7 Nov 2023 14:26:34 +0100 Subject: [PATCH 03/99] [ADD] helpdesk_product --- helpdesk_product/models/product.py | 4 +++- helpdesk_product/views/helpdesk_ticket_view.xml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/helpdesk_product/models/product.py b/helpdesk_product/models/product.py index 238eb7fa8a..fa4ec4f15a 100644 --- a/helpdesk_product/models/product.py +++ b/helpdesk_product/models/product.py @@ -4,4 +4,6 @@ class Product(models.Model): _inherit = "product.template" - ticket_active = fields.Boolean("Available for Helpdesk Tickets", default=True, required=True) + ticket_active = fields.Boolean( + "Available for Helpdesk Tickets", default=True, required=True + ) diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml index 3d8ca235c3..403e7e010b 100644 --- a/helpdesk_product/views/helpdesk_ticket_view.xml +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -40,14 +40,14 @@ string="Product Related" name="product_filter" domain="['!', ('product_id', '!=', '' )]" - /> + /> + /> From a347e7cfba951df224095735ecf7bac86133a221 Mon Sep 17 00:00:00 2001 From: MariaBForgeFlow Date: Mon, 11 Mar 2024 08:01:23 +0100 Subject: [PATCH 04/99] [ADD] helpdesk_product: small fixes --- helpdesk_product/models/helpdesk_ticket.py | 2 +- helpdesk_product/views/helpdesk_ticket_view.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helpdesk_product/models/helpdesk_ticket.py b/helpdesk_product/models/helpdesk_ticket.py index bcb313f146..26c91e2dbc 100644 --- a/helpdesk_product/models/helpdesk_ticket.py +++ b/helpdesk_product/models/helpdesk_ticket.py @@ -2,6 +2,6 @@ class HelpdeskTicket(models.Model): - _inherit = "helpdesk.ticket" + product_id = fields.Many2one(string="Product", comodel_name="product.product") diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml index 403e7e010b..96c3b47db9 100644 --- a/helpdesk_product/views/helpdesk_ticket_view.xml +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -20,7 +20,7 @@ - + @@ -39,7 +39,7 @@ Date: Mon, 11 Mar 2024 08:03:47 +0100 Subject: [PATCH 05/99] [ADD] helpdesk_product: add demo data --- helpdesk_product/__manifest__.py | 1 + .../demo/helpdesk_product_demo.xml | 24 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 helpdesk_product/demo/helpdesk_product_demo.xml diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index 554de5f9f7..92a053655e 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -8,6 +8,7 @@ "website": "https://github.com/OCA/helpdesk", "depends": ["helpdesk_mgmt", "product"], "data": ["views/helpdesk_ticket_view.xml", "views/product_view.xml"], + "demo": ["demo/helpdesk_product_demo.xml"], "development_status": "Beta", "auto_install": True, } diff --git a/helpdesk_product/demo/helpdesk_product_demo.xml b/helpdesk_product/demo/helpdesk_product_demo.xml new file mode 100644 index 0000000000..508322b956 --- /dev/null +++ b/helpdesk_product/demo/helpdesk_product_demo.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + From 7df190dc3742893ff1d28941a88bf711a93974f0 Mon Sep 17 00:00:00 2001 From: MariaBForgeFlow Date: Wed, 13 Mar 2024 15:32:22 +0100 Subject: [PATCH 06/99] [ADD] helpdesk_product: add products menu to Helpdesk app --- helpdesk_product/__manifest__.py | 2 +- .../views/helpdesk_ticket_view.xml | 12 ++++++ helpdesk_product/views/product_view.xml | 41 +++++++++++++++++++ 3 files changed, 54 insertions(+), 1 deletion(-) diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index 92a053655e..566a555f59 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -7,7 +7,7 @@ "category": "After-Sales", "website": "https://github.com/OCA/helpdesk", "depends": ["helpdesk_mgmt", "product"], - "data": ["views/helpdesk_ticket_view.xml", "views/product_view.xml"], + "data": ["views/product_view.xml", "views/helpdesk_ticket_view.xml"], "demo": ["demo/helpdesk_product_demo.xml"], "development_status": "Beta", "auto_install": True, diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml index 96c3b47db9..b9c2e03de0 100644 --- a/helpdesk_product/views/helpdesk_ticket_view.xml +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -52,4 +52,16 @@ + + + + + + diff --git a/helpdesk_product/views/product_view.xml b/helpdesk_product/views/product_view.xml index 09c7dfbb57..0c8d271ae2 100644 --- a/helpdesk_product/views/product_view.xml +++ b/helpdesk_product/views/product_view.xml @@ -13,4 +13,45 @@ + + product.template.search + product.template + + + + + + + + + + + + + + + Products + product.template + ir.actions.act_window + kanban,tree,form,activity + + {'search_default_helpdesk_active': 1} + +

+ Create a new product +

+ You currently have no products available for Helpdesk Tickets. +
+ A product can be either a physical product or a service that you sell to your customers. +

+
+
+ + + + From d8cd135231ad7624ff5b7f2e6977da32c4c1402b Mon Sep 17 00:00:00 2001 From: oca-ci Date: Mon, 8 Apr 2024 16:34:20 +0000 Subject: [PATCH 07/99] [UPD] Update helpdesk_product.pot --- helpdesk_product/i18n/helpdesk_product.pot | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 helpdesk_product/i18n/helpdesk_product.pot diff --git a/helpdesk_product/i18n/helpdesk_product.pot b/helpdesk_product/i18n/helpdesk_product.pot new file mode 100644 index 0000000000..11d8eda7a7 --- /dev/null +++ b/helpdesk_product/i18n/helpdesk_product.pot @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_product +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.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: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk +msgid "Available for Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active +msgid "Available for Helpdesk Tickets" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "Create a new product" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_product_template +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product Related" +msgstr "" + +#. module: helpdesk_product +#: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk +#: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products +msgid "Products" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "" +"You currently have no products available for Helpdesk Tickets.\n" +"
\n" +" A product can be either a physical product or a service that you sell to your customers." +msgstr "" From 51291f2c44b156cfd5b7d8642a6d854145fc0d29 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 8 Apr 2024 16:37:39 +0000 Subject: [PATCH 08/99] [BOT] post-merge updates --- helpdesk_product/README.rst | 78 ++++ helpdesk_product/__manifest__.py | 2 +- helpdesk_product/static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 423 ++++++++++++++++++ 4 files changed, 502 insertions(+), 1 deletion(-) create mode 100644 helpdesk_product/static/description/icon.png create mode 100644 helpdesk_product/static/description/index.html diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst index e69de29bb2..56fa726471 100644 --- a/helpdesk_product/README.rst +++ b/helpdesk_product/README.rst @@ -0,0 +1,78 @@ +================ +Helpdesk Product +================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:983e2da3958dce9f93ff5f71722bd5ad3c6c26518120291e1f7973246d3d3e6e + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fhelpdesk-lightgray.png?logo=github + :target: https://github.com/OCA/helpdesk/tree/16.0/helpdesk_product + :alt: OCA/helpdesk +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/helpdesk-16-0/helpdesk-16-0-helpdesk_product + :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/helpdesk&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module adds the option to select product in the helpdesk tickets. + +**Table of contents** + +.. contents:: + :local: + +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 +~~~~~~~ + +* ForgeFlow + +Contributors +~~~~~~~~~~~~ + +* `ForgeFlow `_: + + * Maria Buscallà + +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/helpdesk `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index 566a555f59..b9fd8cd5bc 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -2,7 +2,7 @@ "name": "Helpdesk Product", "summary": "Add the option to select product in the tickets.", "author": "ForgeFlow, " "Odoo Community Association (OCA)", - "version": "16.0.1.0.0", + "version": "16.0.1.0.1", "license": "AGPL-3", "category": "After-Sales", "website": "https://github.com/OCA/helpdesk", diff --git a/helpdesk_product/static/description/icon.png b/helpdesk_product/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/helpdesk_product/static/description/index.html b/helpdesk_product/static/description/index.html new file mode 100644 index 0000000000..51df10c223 --- /dev/null +++ b/helpdesk_product/static/description/index.html @@ -0,0 +1,423 @@ + + + + + +Helpdesk Product + + + +
+

Helpdesk Product

+ + +

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

+

This module adds the option to select product in the helpdesk tickets.

+

Table of contents

+ +
+

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

+
    +
  • ForgeFlow
  • +
+
+
+

Contributors

+ +
+
+

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.

+

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

+

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

+
+
+
+ + From 335762af360bfd3acd525ff2f7372ca2d89a9ad8 Mon Sep 17 00:00:00 2001 From: mymage Date: Tue, 9 Apr 2024 14:19:56 +0000 Subject: [PATCH 09/99] Added translation using Weblate (Italian) --- helpdesk_product/i18n/it.po | 62 +++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 helpdesk_product/i18n/it.po diff --git a/helpdesk_product/i18n/it.po b/helpdesk_product/i18n/it.po new file mode 100644 index 0000000000..91cf842ddd --- /dev/null +++ b/helpdesk_product/i18n/it.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_product +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\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" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk +msgid "Available for Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active +msgid "Available for Helpdesk Tickets" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "Create a new product" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_product_template +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product Related" +msgstr "" + +#. module: helpdesk_product +#: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk +#: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products +msgid "Products" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "" +"You currently have no products available for Helpdesk Tickets.\n" +"
\n" +" A product can be either a physical product or a service that you sell to your customers." +msgstr "" From 3eb0e07a73ece58866014f2c0efe1cc3d3586b12 Mon Sep 17 00:00:00 2001 From: mymage Date: Wed, 10 Apr 2024 06:19:18 +0000 Subject: [PATCH 10/99] Translated using Weblate (Italian) Currently translated at 100.0% (8 of 8 strings) Translation: helpdesk-16.0/helpdesk-16.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-16-0/helpdesk-16-0-helpdesk_product/it/ --- helpdesk_product/i18n/it.po | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/helpdesk_product/i18n/it.po b/helpdesk_product/i18n/it.po index 91cf842ddd..82a7a70962 100644 --- a/helpdesk_product/i18n/it.po +++ b/helpdesk_product/i18n/it.po @@ -6,52 +6,54 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2024-04-10 08:35+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 4.17\n" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk msgid "Available for Helpdesk" -msgstr "" +msgstr "Disponibile per assistenza" #. module: helpdesk_product #: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active #: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active msgid "Available for Helpdesk Tickets" -msgstr "" +msgstr "Disponibile per ticket assistenza" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "Create a new product" -msgstr "" +msgstr "Crea un nuovo prodotto" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "" +msgstr "Richiesta assistenza" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template #: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product" -msgstr "" +msgstr "Prodotto" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product Related" -msgstr "" +msgstr "Prodotto relativo" #. module: helpdesk_product #: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk #: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products msgid "Products" -msgstr "" +msgstr "Prodotti" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk @@ -60,3 +62,8 @@ msgid "" "
\n" " A product can be either a physical product or a service that you sell to your customers." msgstr "" +"Attualmente non ci sono prodotti disponibili per le richieste di assistenza." +"\n" +"
\n" +" Un prodotto può essere sia un prodotto fisico sia un " +"servizio che si vende ai clienti." From 7e1a1bade3d81d11ee6100864e6dcac02b08f0b5 Mon Sep 17 00:00:00 2001 From: mymage Date: Mon, 29 Apr 2024 13:57:40 +0000 Subject: [PATCH 11/99] Translated using Weblate (Italian) Currently translated at 100.0% (8 of 8 strings) Translation: helpdesk-16.0/helpdesk-16.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-16-0/helpdesk-16-0-helpdesk_product/it/ --- helpdesk_product/i18n/it.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helpdesk_product/i18n/it.po b/helpdesk_product/i18n/it.po index 82a7a70962..5bf15fc801 100644 --- a/helpdesk_product/i18n/it.po +++ b/helpdesk_product/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-04-10 08:35+0000\n" +"PO-Revision-Date: 2024-04-29 16:34+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -25,7 +25,7 @@ msgstr "Disponibile per assistenza" #: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active #: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active msgid "Available for Helpdesk Tickets" -msgstr "Disponibile per ticket assistenza" +msgstr "Disponibile per ticket assistenza clienti" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk @@ -35,7 +35,7 @@ msgstr "Crea un nuovo prodotto" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "Richiesta assistenza" +msgstr "Ticket assistenza clienti" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template @@ -62,8 +62,8 @@ msgid "" "
\n" " A product can be either a physical product or a service that you sell to your customers." msgstr "" -"Attualmente non ci sono prodotti disponibili per le richieste di assistenza." -"\n" +"Attualmente non ci sono prodotti disponibili per i ticket di assistenza " +"clienti.\n" "
\n" " Un prodotto può essere sia un prodotto fisico sia un " "servizio che si vende ai clienti." From beaed850e6910182df39a8c3d45c9c43a063169f Mon Sep 17 00:00:00 2001 From: rodrigosottomaiormacedo Date: Fri, 5 Jul 2024 16:56:14 +0000 Subject: [PATCH 12/99] Added translation using Weblate (Portuguese (Brazil)) --- helpdesk_product/i18n/pt_BR.po | 62 ++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 helpdesk_product/i18n/pt_BR.po diff --git a/helpdesk_product/i18n/pt_BR.po b/helpdesk_product/i18n/pt_BR.po new file mode 100644 index 0000000000..784bf4a375 --- /dev/null +++ b/helpdesk_product/i18n/pt_BR.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_product +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.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: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk +msgid "Available for Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active +msgid "Available for Helpdesk Tickets" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "Create a new product" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_product_template +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product Related" +msgstr "" + +#. module: helpdesk_product +#: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk +#: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products +msgid "Products" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "" +"You currently have no products available for Helpdesk Tickets.\n" +"
\n" +" A product can be either a physical product or a service that you sell to your customers." +msgstr "" From ed35f6a855ea587c7103237c8a9da66d28e0a2b0 Mon Sep 17 00:00:00 2001 From: rodrigosottomaiormacedo Date: Fri, 5 Jul 2024 17:08:15 +0000 Subject: [PATCH 13/99] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (8 of 8 strings) Translation: helpdesk-16.0/helpdesk-16.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-16-0/helpdesk-16-0-helpdesk_product/pt_BR/ --- helpdesk_product/i18n/pt_BR.po | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/helpdesk_product/i18n/pt_BR.po b/helpdesk_product/i18n/pt_BR.po index 784bf4a375..50a655d955 100644 --- a/helpdesk_product/i18n/pt_BR.po +++ b/helpdesk_product/i18n/pt_BR.po @@ -6,52 +6,55 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2024-07-05 17:59+0000\n" +"Last-Translator: rodrigosottomaiormacedo " +"\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" +"X-Generator: Weblate 4.17\n" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk msgid "Available for Helpdesk" -msgstr "" +msgstr "Disponível para suporte técnico" #. module: helpdesk_product #: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active #: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active msgid "Available for Helpdesk Tickets" -msgstr "" +msgstr "Disponível para tickets de suporte técnico" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "Create a new product" -msgstr "" +msgstr "Crie um novo produto" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "" +msgstr "Tíquete de suporte técnico" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template #: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product" -msgstr "" +msgstr "Produto" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product Related" -msgstr "" +msgstr "Produto Relacionado" #. module: helpdesk_product #: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk #: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products msgid "Products" -msgstr "" +msgstr "Produtos" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk @@ -60,3 +63,8 @@ msgid "" "
\n" " A product can be either a physical product or a service that you sell to your customers." msgstr "" +"No momento você não tem produtos disponíveis para tickets de suporte técnico." +"\n" +"
\n" +" Um produto pode ser um produto físico " +"ou um serviço que você vende aos seus clientes." From d1d5111955bf86d47b972a53461886a76f96de6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Rom=C3=A3o?= Date: Sat, 27 Jul 2024 03:52:03 +0000 Subject: [PATCH 14/99] Added translation using Weblate (Portuguese) --- helpdesk_product/i18n/pt.po | 62 +++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 helpdesk_product/i18n/pt.po diff --git a/helpdesk_product/i18n/pt.po b/helpdesk_product/i18n/pt.po new file mode 100644 index 0000000000..e880566e5a --- /dev/null +++ b/helpdesk_product/i18n/pt.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_product +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt\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: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk +msgid "Available for Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active +msgid "Available for Helpdesk Tickets" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "Create a new product" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_product_template +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product Related" +msgstr "" + +#. module: helpdesk_product +#: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk +#: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products +msgid "Products" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "" +"You currently have no products available for Helpdesk Tickets.\n" +"
\n" +" A product can be either a physical product or a service that you sell to your customers." +msgstr "" From 6bd34b0e38d9fd70e44cf546e884fa8205723727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Rom=C3=A3o?= Date: Sat, 27 Jul 2024 03:52:19 +0000 Subject: [PATCH 15/99] Translated using Weblate (Portuguese) Currently translated at 100.0% (8 of 8 strings) Translation: helpdesk-16.0/helpdesk-16.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-16-0/helpdesk-16-0-helpdesk_product/pt/ --- helpdesk_product/i18n/pt.po | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/helpdesk_product/i18n/pt.po b/helpdesk_product/i18n/pt.po index e880566e5a..cb0682dca5 100644 --- a/helpdesk_product/i18n/pt.po +++ b/helpdesk_product/i18n/pt.po @@ -6,52 +6,54 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2024-07-27 05:58+0000\n" +"Last-Translator: Peter Romão \n" "Language-Team: none\n" "Language: pt\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.6.2\n" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk msgid "Available for Helpdesk" -msgstr "" +msgstr "Disponível para Helpdesk" #. module: helpdesk_product #: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active #: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active msgid "Available for Helpdesk Tickets" -msgstr "" +msgstr "Disponível para Tickets de Helpdesk" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "Create a new product" -msgstr "" +msgstr "Criar um novo artigo" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "" +msgstr "Ticket de Helpdesk" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template #: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product" -msgstr "" +msgstr "Artigo" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product Related" -msgstr "" +msgstr "Artigos Relacionados" #. module: helpdesk_product #: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk #: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products msgid "Products" -msgstr "" +msgstr "Artigos" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk @@ -60,3 +62,7 @@ msgid "" "
\n" " A product can be either a physical product or a service that you sell to your customers." msgstr "" +"De momento, não dispõe de artigos disponíveis para Tickets de Helpdesk.\n" +"
\n" +" Um artigo pode ser um artigo físico ou um serviço que vende " +"aos seus clientes." From c2f1e873c1050de8b714d4070f4d0082f9899079 Mon Sep 17 00:00:00 2001 From: JasminSForgeFlow Date: Fri, 13 Sep 2024 12:26:03 +0530 Subject: [PATCH 16/99] [IMP] helpdesk_product: black, isort, prettier --- helpdesk_product/README.rst | 20 +++++++++---------- helpdesk_product/pyproject.toml | 3 +++ helpdesk_product/readme/CONTRIBUTORS.md | 2 ++ helpdesk_product/readme/CONTRIBUTORS.rst | 3 --- .../{DESCRIPTION.rst => DESCRIPTION.md} | 0 .../static/description/index.html | 17 +++++++++------- 6 files changed, 25 insertions(+), 20 deletions(-) create mode 100644 helpdesk_product/pyproject.toml create mode 100644 helpdesk_product/readme/CONTRIBUTORS.md delete mode 100644 helpdesk_product/readme/CONTRIBUTORS.rst rename helpdesk_product/readme/{DESCRIPTION.rst => DESCRIPTION.md} (100%) diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst index 56fa726471..470a5cbeff 100644 --- a/helpdesk_product/README.rst +++ b/helpdesk_product/README.rst @@ -17,13 +17,13 @@ Helpdesk Product :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/16.0/helpdesk_product + :target: https://github.com/OCA/helpdesk/tree/17.0/helpdesk_product :alt: OCA/helpdesk .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-16-0/helpdesk-16-0-helpdesk_product + :target: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_product :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/helpdesk&target_branch=16.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/helpdesk&target_branch=17.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -41,7 +41,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. @@ -49,19 +49,19 @@ Credits ======= Authors -~~~~~~~ +------- * ForgeFlow Contributors -~~~~~~~~~~~~ +------------ -* `ForgeFlow `_: +- `ForgeFlow `__: - * Maria Buscallà + - Maria Buscallà Maintainers -~~~~~~~~~~~ +----------- This module is maintained by the OCA. @@ -73,6 +73,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/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_product/pyproject.toml b/helpdesk_product/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/helpdesk_product/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/helpdesk_product/readme/CONTRIBUTORS.md b/helpdesk_product/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..109df4a27e --- /dev/null +++ b/helpdesk_product/readme/CONTRIBUTORS.md @@ -0,0 +1,2 @@ +- [ForgeFlow](https://www.forgeflow.com): + - Maria Buscallà \<\> diff --git a/helpdesk_product/readme/CONTRIBUTORS.rst b/helpdesk_product/readme/CONTRIBUTORS.rst deleted file mode 100644 index 72db90fd84..0000000000 --- a/helpdesk_product/readme/CONTRIBUTORS.rst +++ /dev/null @@ -1,3 +0,0 @@ -* `ForgeFlow `_: - - * Maria Buscallà diff --git a/helpdesk_product/readme/DESCRIPTION.rst b/helpdesk_product/readme/DESCRIPTION.md similarity index 100% rename from helpdesk_product/readme/DESCRIPTION.rst rename to helpdesk_product/readme/DESCRIPTION.md diff --git a/helpdesk_product/static/description/index.html b/helpdesk_product/static/description/index.html index 51df10c223..a759580bd2 100644 --- a/helpdesk_product/static/description/index.html +++ b/helpdesk_product/static/description/index.html @@ -8,10 +8,11 @@ /* :Author: David Goodger (goodger@python.org) -:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ +:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ :Copyright: This stylesheet has been placed in the public domain. Default cascading style sheet for the HTML output of Docutils. +Despite the name, some widely supported CSS2 features are used. See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to customize this style sheet. @@ -274,7 +275,7 @@ margin-left: 2em ; margin-right: 2em } -pre.code .ln { color: grey; } /* line numbers */ +pre.code .ln { color: gray; } /* line numbers */ pre.code, code { background-color: #eeeeee } pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } @@ -300,7 +301,7 @@ span.pre { white-space: pre } -span.problematic { +span.problematic, pre.problematic { color: red } span.section-subtitle { @@ -368,7 +369,7 @@

Helpdesk Product

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:983e2da3958dce9f93ff5f71722bd5ad3c6c26518120291e1f7973246d3d3e6e !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

+

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

This module adds the option to select product in the helpdesk tickets.

Table of contents

@@ -387,7 +388,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.

@@ -410,11 +411,13 @@

Contributors

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +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.

-

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

+

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

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

From 7415cc37edab94c001e92ac1173a85192a8f80cf Mon Sep 17 00:00:00 2001 From: JasminSForgeFlow Date: Fri, 13 Sep 2024 14:31:03 +0530 Subject: [PATCH 17/99] [MIG] helpdesk_product: Migration to 17.0 --- helpdesk_product/__manifest__.py | 2 +- .../demo/helpdesk_product_demo.xml | 4 +- .../views/helpdesk_ticket_view.xml | 83 +++++++++---------- helpdesk_product/views/product_view.xml | 78 ++++++++--------- 4 files changed, 77 insertions(+), 90 deletions(-) diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index b9fd8cd5bc..ec46a7cd4a 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -2,7 +2,7 @@ "name": "Helpdesk Product", "summary": "Add the option to select product in the tickets.", "author": "ForgeFlow, " "Odoo Community Association (OCA)", - "version": "16.0.1.0.1", + "version": "17.0.1.0.0", "license": "AGPL-3", "category": "After-Sales", "website": "https://github.com/OCA/helpdesk", diff --git a/helpdesk_product/demo/helpdesk_product_demo.xml b/helpdesk_product/demo/helpdesk_product_demo.xml index 508322b956..92094d8f15 100644 --- a/helpdesk_product/demo/helpdesk_product_demo.xml +++ b/helpdesk_product/demo/helpdesk_product_demo.xml @@ -7,7 +7,7 @@ - + @@ -17,7 +17,7 @@ - + diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml index b9c2e03de0..867bf557be 100644 --- a/helpdesk_product/views/helpdesk_ticket_view.xml +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -1,59 +1,57 @@ - - - helpdesk.ticket.form - helpdesk.ticket - - - - - + + + helpdesk.ticket.form + helpdesk.ticket + + + + + + + + + + + helpdesk.ticket.tree + helpdesk.ticket + + + + - - - - - helpdesk.ticket.tree - helpdesk.ticket - - - - - + + + + + + helpdesk.ticket.search + helpdesk.ticket + + + + - - - - - helpdesk.ticket.search - helpdesk.ticket - - - - - - - - + - - - - - + + + - - + - - - diff --git a/helpdesk_product/views/product_view.xml b/helpdesk_product/views/product_view.xml index 0c8d271ae2..b34ae24468 100644 --- a/helpdesk_product/views/product_view.xml +++ b/helpdesk_product/views/product_view.xml @@ -1,57 +1,49 @@ - - - product.template.common.form - product.template - - - - - + + + product.template.common.form + product.template + + + + - - - - product.template.search - product.template - - - - + + + + product.template.search + product.template + + + + - - - - - - - - - - - Products - product.template - ir.actions.act_window - kanban,tree,form,activity - - {'search_default_helpdesk_active': 1} - + + + + + + + Products + product.template + ir.actions.act_window + kanban,tree,form,activity + + {'search_default_helpdesk_active': 1} +

Create a new product -

- You currently have no products available for Helpdesk Tickets. -
- A product can be either a physical product or a service that you sell to your customers.

+

You currently have no products available for Helpdesk Tickets.
A product can + be either a physical product or a service that you sell to your customers.

-
- - - +
From 6470ead575fb2962e91714b4060fe77432450ae3 Mon Sep 17 00:00:00 2001 From: JasminSForgeFlow Date: Mon, 2 Dec 2024 12:16:08 +0530 Subject: [PATCH 18/99] [IMP] helpdesk_product: black, isort, prettier --- helpdesk_product/README.rst | 10 +++++----- helpdesk_product/static/description/index.html | 6 +++--- helpdesk_product/views/helpdesk_ticket_view.xml | 2 -- helpdesk_product/views/product_view.xml | 4 +--- 4 files changed, 9 insertions(+), 13 deletions(-) diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst index 470a5cbeff..c03d123f03 100644 --- a/helpdesk_product/README.rst +++ b/helpdesk_product/README.rst @@ -17,13 +17,13 @@ Helpdesk Product :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/17.0/helpdesk_product + :target: https://github.com/OCA/helpdesk/tree/18.0/helpdesk_product :alt: OCA/helpdesk .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_product + :target: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product :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/helpdesk&target_branch=17.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/helpdesk&target_branch=18.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -41,7 +41,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. @@ -73,6 +73,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/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_product/static/description/index.html b/helpdesk_product/static/description/index.html index a759580bd2..79785a42be 100644 --- a/helpdesk_product/static/description/index.html +++ b/helpdesk_product/static/description/index.html @@ -369,7 +369,7 @@

Helpdesk Product

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:983e2da3958dce9f93ff5f71722bd5ad3c6c26518120291e1f7973246d3d3e6e !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

+

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

This module adds the option to select product in the helpdesk tickets.

Table of contents

@@ -388,7 +388,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.

@@ -417,7 +417,7 @@

Maintainers

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

+

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

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

diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml index 867bf557be..efc517a0c7 100644 --- a/helpdesk_product/views/helpdesk_ticket_view.xml +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -1,6 +1,5 @@ - helpdesk.ticket.form @@ -58,5 +57,4 @@ name="Products" sequence="12" /> - diff --git a/helpdesk_product/views/product_view.xml b/helpdesk_product/views/product_view.xml index b34ae24468..9b2a8409f6 100644 --- a/helpdesk_product/views/product_view.xml +++ b/helpdesk_product/views/product_view.xml @@ -1,6 +1,5 @@ - product.template.common.form @@ -41,9 +40,8 @@ Create a new product

You currently have no products available for Helpdesk Tickets.
A product can + /> A product can be either a physical product or a service that you sell to your customers.

- From 6206c6d695e3237eb8efdec74ed4f1386a4fab5a Mon Sep 17 00:00:00 2001 From: JasminSForgeFlow Date: Mon, 2 Dec 2024 13:41:52 +0530 Subject: [PATCH 19/99] [MIG] helpdesk_product: Migration to 18.0 --- helpdesk_product/__manifest__.py | 2 +- helpdesk_product/demo/helpdesk_product_demo.xml | 4 ++-- helpdesk_product/views/helpdesk_ticket_view.xml | 10 +++++----- helpdesk_product/views/product_view.xml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index ec46a7cd4a..34081d9d9d 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -2,7 +2,7 @@ "name": "Helpdesk Product", "summary": "Add the option to select product in the tickets.", "author": "ForgeFlow, " "Odoo Community Association (OCA)", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "license": "AGPL-3", "category": "After-Sales", "website": "https://github.com/OCA/helpdesk", diff --git a/helpdesk_product/demo/helpdesk_product_demo.xml b/helpdesk_product/demo/helpdesk_product_demo.xml index 92094d8f15..508322b956 100644 --- a/helpdesk_product/demo/helpdesk_product_demo.xml +++ b/helpdesk_product/demo/helpdesk_product_demo.xml @@ -7,7 +7,7 @@ - + @@ -17,7 +17,7 @@ - + diff --git a/helpdesk_product/views/helpdesk_ticket_view.xml b/helpdesk_product/views/helpdesk_ticket_view.xml index efc517a0c7..c200e63199 100644 --- a/helpdesk_product/views/helpdesk_ticket_view.xml +++ b/helpdesk_product/views/helpdesk_ticket_view.xml @@ -1,10 +1,10 @@ - + helpdesk.ticket.form helpdesk.ticket - + @@ -13,10 +13,10 @@ - - helpdesk.ticket.tree + + helpdesk.ticket.list helpdesk.ticket - + diff --git a/helpdesk_product/views/product_view.xml b/helpdesk_product/views/product_view.xml index 9b2a8409f6..dea8a480f0 100644 --- a/helpdesk_product/views/product_view.xml +++ b/helpdesk_product/views/product_view.xml @@ -32,7 +32,7 @@ Products product.template ir.actions.act_window - kanban,tree,form,activity + kanban,list,form,activity {'search_default_helpdesk_active': 1} From 28f2a293b680cdf3c749832a4bf2e7c686cb457e Mon Sep 17 00:00:00 2001 From: oca-ci Date: Thu, 24 Apr 2025 13:16:00 +0000 Subject: [PATCH 20/99] [UPD] Update helpdesk_product.pot --- helpdesk_product/i18n/helpdesk_product.pot | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/helpdesk_product/i18n/helpdesk_product.pot b/helpdesk_product/i18n/helpdesk_product.pot index 11d8eda7a7..9575c93845 100644 --- a/helpdesk_product/i18n/helpdesk_product.pot +++ b/helpdesk_product/i18n/helpdesk_product.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 16.0\n" +"Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" @@ -55,7 +55,6 @@ msgstr "" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "" -"You currently have no products available for Helpdesk Tickets.\n" -"
\n" -" A product can be either a physical product or a service that you sell to your customers." +"You currently have no products available for Helpdesk Tickets.
A product can\n" +" be either a physical product or a service that you sell to your customers." msgstr "" From a5ca148b9a3b37227f4dae40a242e4d8a2461c17 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 24 Apr 2025 13:19:11 +0000 Subject: [PATCH 21/99] [BOT] post-merge updates --- helpdesk_product/README.rst | 6 +++--- helpdesk_product/static/description/index.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst index c03d123f03..a1e549d735 100644 --- a/helpdesk_product/README.rst +++ b/helpdesk_product/README.rst @@ -7,7 +7,7 @@ Helpdesk Product !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:983e2da3958dce9f93ff5f71722bd5ad3c6c26518120291e1f7973246d3d3e6e + !! source digest: sha256:0d4da1e8449dff6a639bf843200e1c9f22a998cc8e5da55b61c2b8f1f8d356d9 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png @@ -56,9 +56,9 @@ Authors Contributors ------------ -- `ForgeFlow `__: +- `ForgeFlow `__: - - Maria Buscallà + - Maria Buscallà Maintainers ----------- diff --git a/helpdesk_product/static/description/index.html b/helpdesk_product/static/description/index.html index 79785a42be..10ee33c105 100644 --- a/helpdesk_product/static/description/index.html +++ b/helpdesk_product/static/description/index.html @@ -367,7 +367,7 @@

Helpdesk Product

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:983e2da3958dce9f93ff5f71722bd5ad3c6c26518120291e1f7973246d3d3e6e +!! source digest: sha256:0d4da1e8449dff6a639bf843200e1c9f22a998cc8e5da55b61c2b8f1f8d356d9 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

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

This module adds the option to select product in the helpdesk tickets.

From 1f84b99922e62a7e6f3bc36f9d57c20510910782 Mon Sep 17 00:00:00 2001 From: Marcel Savegnago Date: Tue, 13 May 2025 14:26:54 +0000 Subject: [PATCH 22/99] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (8 of 8 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product/pt_BR/ --- helpdesk_product/i18n/pt_BR.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/helpdesk_product/i18n/pt_BR.po b/helpdesk_product/i18n/pt_BR.po index 50a655d955..236c81a99d 100644 --- a/helpdesk_product/i18n/pt_BR.po +++ b/helpdesk_product/i18n/pt_BR.po @@ -6,16 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-07-05 17:59+0000\n" -"Last-Translator: rodrigosottomaiormacedo " -"\n" +"PO-Revision-Date: 2025-05-13 14:32+0000\n" +"Last-Translator: Marcel Savegnago \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" -"X-Generator: Weblate 4.17\n" +"X-Generator: Weblate 5.10.4\n" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk @@ -36,7 +35,7 @@ msgstr "Crie um novo produto" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "Tíquete de suporte técnico" +msgstr "Chamado do Helpdesk" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template From 64e4ff51dd7ff1821b40d9ff0dd4591a2309f84f Mon Sep 17 00:00:00 2001 From: Marcel Savegnago Date: Tue, 13 May 2025 14:42:44 +0000 Subject: [PATCH 23/99] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (8 of 8 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product/pt_BR/ --- helpdesk_product/i18n/pt_BR.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/helpdesk_product/i18n/pt_BR.po b/helpdesk_product/i18n/pt_BR.po index 236c81a99d..ddb69743dc 100644 --- a/helpdesk_product/i18n/pt_BR.po +++ b/helpdesk_product/i18n/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-13 14:32+0000\n" +"PO-Revision-Date: 2025-05-13 14:55+0000\n" "Last-Translator: Marcel Savegnago \n" "Language-Team: none\n" "Language: pt_BR\n" @@ -19,13 +19,13 @@ msgstr "" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk msgid "Available for Helpdesk" -msgstr "Disponível para suporte técnico" +msgstr "Disponível para Central de Ajuda" #. module: helpdesk_product #: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active #: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active msgid "Available for Helpdesk Tickets" -msgstr "Disponível para tickets de suporte técnico" +msgstr "Disponível para Chamados" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk @@ -35,7 +35,7 @@ msgstr "Crie um novo produto" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "Chamado do Helpdesk" +msgstr "Chamado" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template @@ -62,8 +62,8 @@ msgid "" "
\n" " A product can be either a physical product or a service that you sell to your customers." msgstr "" -"No momento você não tem produtos disponíveis para tickets de suporte técnico." -"\n" +"No momento você não tem produtos disponíveis para Chamados de Central de " +"Ajuda.\n" "
\n" " Um produto pode ser um produto físico " "ou um serviço que você vende aos seus clientes." From 11989f93b38fe4812a2e27a29004f75b58c17ad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Wed, 10 Sep 2025 16:27:05 -0300 Subject: [PATCH 24/99] [IMP] helpdesk_product: ticket_active field location --- helpdesk_product/views/product_view.xml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/helpdesk_product/views/product_view.xml b/helpdesk_product/views/product_view.xml index dea8a480f0..2aa785269e 100644 --- a/helpdesk_product/views/product_view.xml +++ b/helpdesk_product/views/product_view.xml @@ -6,9 +6,12 @@ product.template - - - +
+ + + +
From 34513f21f85361770ca7fddabbdf90dbc352818f Mon Sep 17 00:00:00 2001 From: oca-ci Date: Fri, 19 Sep 2025 06:32:28 +0000 Subject: [PATCH 25/99] [UPD] Update helpdesk_product.pot --- helpdesk_product/i18n/helpdesk_product.pot | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helpdesk_product/i18n/helpdesk_product.pot b/helpdesk_product/i18n/helpdesk_product.pot index 9575c93845..d0a7f834bd 100644 --- a/helpdesk_product/i18n/helpdesk_product.pot +++ b/helpdesk_product/i18n/helpdesk_product.pot @@ -29,6 +29,11 @@ msgstr "" msgid "Create a new product" msgstr "" +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template +msgid "Helpdesk" +msgstr "" + #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" From 35d468aa443332fa3768b99f69fedecfbd96a55f Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 19 Sep 2025 06:36:33 +0000 Subject: [PATCH 26/99] [BOT] post-merge updates --- helpdesk_product/README.rst | 8 ++++-- helpdesk_product/__manifest__.py | 2 +- .../static/description/index.html | 26 ++++++++++++------- 3 files changed, 23 insertions(+), 13 deletions(-) diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst index a1e549d735..c9f50c3ade 100644 --- a/helpdesk_product/README.rst +++ b/helpdesk_product/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================ Helpdesk Product ================ @@ -7,13 +11,13 @@ Helpdesk Product !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:0d4da1e8449dff6a639bf843200e1c9f22a998cc8e5da55b61c2b8f1f8d356d9 + !! source digest: sha256:5d86e3fcf27e3e6839cbe246221ad91b272cda33f91e6ba1e32c99c04a2486c1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |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 +.. |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%2Fhelpdesk-lightgray.png?logo=github diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index 34081d9d9d..639a1291a7 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -2,7 +2,7 @@ "name": "Helpdesk Product", "summary": "Add the option to select product in the tickets.", "author": "ForgeFlow, " "Odoo Community Association (OCA)", - "version": "18.0.1.0.0", + "version": "18.0.1.0.1", "license": "AGPL-3", "category": "After-Sales", "website": "https://github.com/OCA/helpdesk", diff --git a/helpdesk_product/static/description/index.html b/helpdesk_product/static/description/index.html index 10ee33c105..3ecc1abfba 100644 --- a/helpdesk_product/static/description/index.html +++ b/helpdesk_product/static/description/index.html @@ -3,7 +3,7 @@ -Helpdesk Product +README.rst -
-

Helpdesk Product

+
+ + +Odoo Community Association + +
+

Helpdesk Product

-

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

+

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

This module adds the option to select product in the helpdesk tickets.

Table of contents

@@ -384,7 +389,7 @@

Helpdesk Product

-

Bug Tracker

+

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 @@ -392,15 +397,15 @@

Bug Tracker

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

-

Credits

+

Credits

-

Authors

+

Authors

  • ForgeFlow
-

Maintainers

+

Maintainers

This module is maintained by the OCA.

Odoo Community Association @@ -422,5 +427,6 @@

Maintainers

+
From cf417b0c4b0e756e36278ed6b1b0b93f3c783883 Mon Sep 17 00:00:00 2001 From: Weblate Date: Fri, 19 Sep 2025 06:36:41 +0000 Subject: [PATCH 27/99] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product/ --- helpdesk_product/i18n/it.po | 29 +++++++++++++++++++++-------- helpdesk_product/i18n/pt.po | 27 ++++++++++++++++++++------- helpdesk_product/i18n/pt_BR.po | 29 +++++++++++++++++++++-------- 3 files changed, 62 insertions(+), 23 deletions(-) diff --git a/helpdesk_product/i18n/it.po b/helpdesk_product/i18n/it.po index 5bf15fc801..99f4ce67d1 100644 --- a/helpdesk_product/i18n/it.po +++ b/helpdesk_product/i18n/it.po @@ -32,6 +32,11 @@ msgstr "Disponibile per ticket assistenza clienti" msgid "Create a new product" msgstr "Crea un nuovo prodotto" +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template +msgid "Helpdesk" +msgstr "" + #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -58,12 +63,20 @@ msgstr "Prodotti" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "" -"You currently have no products available for Helpdesk Tickets.\n" -"
\n" -" A product can be either a physical product or a service that you sell to your customers." +"You currently have no products available for Helpdesk Tickets.
A " +"product can\n" +" be either a physical product or a service that you sell to " +"your customers." msgstr "" -"Attualmente non ci sono prodotti disponibili per i ticket di assistenza " -"clienti.\n" -"
\n" -" Un prodotto può essere sia un prodotto fisico sia un " -"servizio che si vende ai clienti." + +#~ msgid "" +#~ "You currently have no products available for Helpdesk Tickets.\n" +#~ "
\n" +#~ " A product can be either a physical product or a service " +#~ "that you sell to your customers." +#~ msgstr "" +#~ "Attualmente non ci sono prodotti disponibili per i ticket di assistenza " +#~ "clienti.\n" +#~ "
\n" +#~ " Un prodotto può essere sia un prodotto fisico sia un " +#~ "servizio che si vende ai clienti." diff --git a/helpdesk_product/i18n/pt.po b/helpdesk_product/i18n/pt.po index cb0682dca5..fb1baa988d 100644 --- a/helpdesk_product/i18n/pt.po +++ b/helpdesk_product/i18n/pt.po @@ -32,6 +32,11 @@ msgstr "Disponível para Tickets de Helpdesk" msgid "Create a new product" msgstr "Criar um novo artigo" +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template +msgid "Helpdesk" +msgstr "" + #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -58,11 +63,19 @@ msgstr "Artigos" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "" -"You currently have no products available for Helpdesk Tickets.\n" -"
\n" -" A product can be either a physical product or a service that you sell to your customers." +"You currently have no products available for Helpdesk Tickets.
A " +"product can\n" +" be either a physical product or a service that you sell to " +"your customers." msgstr "" -"De momento, não dispõe de artigos disponíveis para Tickets de Helpdesk.\n" -"
\n" -" Um artigo pode ser um artigo físico ou um serviço que vende " -"aos seus clientes." + +#~ msgid "" +#~ "You currently have no products available for Helpdesk Tickets.\n" +#~ "
\n" +#~ " A product can be either a physical product or a service " +#~ "that you sell to your customers." +#~ msgstr "" +#~ "De momento, não dispõe de artigos disponíveis para Tickets de Helpdesk.\n" +#~ "
\n" +#~ " Um artigo pode ser um artigo físico ou um serviço que " +#~ "vende aos seus clientes." diff --git a/helpdesk_product/i18n/pt_BR.po b/helpdesk_product/i18n/pt_BR.po index ddb69743dc..28f6f7e840 100644 --- a/helpdesk_product/i18n/pt_BR.po +++ b/helpdesk_product/i18n/pt_BR.po @@ -32,6 +32,11 @@ msgstr "Disponível para Chamados" msgid "Create a new product" msgstr "Crie um novo produto" +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template +msgid "Helpdesk" +msgstr "" + #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -58,12 +63,20 @@ msgstr "Produtos" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "" -"You currently have no products available for Helpdesk Tickets.\n" -"
\n" -" A product can be either a physical product or a service that you sell to your customers." +"You currently have no products available for Helpdesk Tickets.
A " +"product can\n" +" be either a physical product or a service that you sell to " +"your customers." msgstr "" -"No momento você não tem produtos disponíveis para Chamados de Central de " -"Ajuda.\n" -"
\n" -" Um produto pode ser um produto físico " -"ou um serviço que você vende aos seus clientes." + +#~ msgid "" +#~ "You currently have no products available for Helpdesk Tickets.\n" +#~ "
\n" +#~ " A product can be either a physical product or a service " +#~ "that you sell to your customers." +#~ msgstr "" +#~ "No momento você não tem produtos disponíveis para Chamados de Central de " +#~ "Ajuda.\n" +#~ "
\n" +#~ " Um produto pode ser um produto " +#~ "físico ou um serviço que você vende aos seus clientes." From 98a1429e0a4f05e5c3813c66f7f9c44ad218f81c Mon Sep 17 00:00:00 2001 From: jakobkrabbe Date: Fri, 19 Sep 2025 09:17:26 +0000 Subject: [PATCH 28/99] Added translation using Weblate (Swedish) --- helpdesk_product/i18n/sv.po | 66 +++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 helpdesk_product/i18n/sv.po diff --git a/helpdesk_product/i18n/sv.po b/helpdesk_product/i18n/sv.po new file mode 100644 index 0000000000..7971e3d14a --- /dev/null +++ b/helpdesk_product/i18n/sv.po @@ -0,0 +1,66 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_product +# +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: sv\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: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk +msgid "Available for Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active +msgid "Available for Helpdesk Tickets" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "Create a new product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template +msgid "Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_product_template +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product Related" +msgstr "" + +#. module: helpdesk_product +#: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk +#: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products +msgid "Products" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "" +"You currently have no products available for Helpdesk Tickets.
A product can\n" +" be either a physical product or a service that you sell to your customers." +msgstr "" From a231b0bcfa0fd375d7c056662492004087b1475f Mon Sep 17 00:00:00 2001 From: jakobkrabbe Date: Fri, 19 Sep 2025 09:17:56 +0000 Subject: [PATCH 29/99] Translated using Weblate (Swedish) Currently translated at 100.0% (9 of 9 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product/sv/ --- helpdesk_product/i18n/sv.po | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/helpdesk_product/i18n/sv.po b/helpdesk_product/i18n/sv.po index 7971e3d14a..86f64659fb 100644 --- a/helpdesk_product/i18n/sv.po +++ b/helpdesk_product/i18n/sv.po @@ -6,57 +6,59 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2025-09-19 09:21+0000\n" +"Last-Translator: jakobkrabbe \n" "Language-Team: none\n" "Language: sv\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: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk msgid "Available for Helpdesk" -msgstr "" +msgstr "Tillgänglig för Helpdesk" #. module: helpdesk_product #: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active #: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active msgid "Available for Helpdesk Tickets" -msgstr "" +msgstr "Tillgänglig för helpdeskärende" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "Create a new product" -msgstr "" +msgstr "Skapa en ny produkt" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template msgid "Helpdesk" -msgstr "" +msgstr "Helpdesk" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "" +msgstr "Helpdeskärende" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template #: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product" -msgstr "" +msgstr "Produkt" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product Related" -msgstr "" +msgstr "Relaterad produkt" #. module: helpdesk_product #: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk #: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products msgid "Products" -msgstr "" +msgstr "Produkter" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk @@ -64,3 +66,7 @@ msgid "" "You currently have no products available for Helpdesk Tickets.
A product can\n" " be either a physical product or a service that you sell to your customers." msgstr "" +"Du har för närvarande inga produkter tillgängliga för Helpdesk-ärenden.
" +"En produkt kan\n" +" vara antingen en fysisk produkt eller en tjänst som du " +"säljer till dina kunder." From 2f63698a7c399492ad2c12f2ba731bd8c68179b1 Mon Sep 17 00:00:00 2001 From: mymage Date: Fri, 26 Sep 2025 16:10:03 +0000 Subject: [PATCH 30/99] Translated using Weblate (Italian) Currently translated at 100.0% (9 of 9 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product/it/ --- helpdesk_product/i18n/it.po | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/helpdesk_product/i18n/it.po b/helpdesk_product/i18n/it.po index 99f4ce67d1..47f08c9055 100644 --- a/helpdesk_product/i18n/it.po +++ b/helpdesk_product/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-04-29 16:34+0000\n" +"PO-Revision-Date: 2025-09-26 18:43+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17\n" +"X-Generator: Weblate 5.10.4\n" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk @@ -35,7 +35,7 @@ msgstr "Crea un nuovo prodotto" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template msgid "Helpdesk" -msgstr "" +msgstr "Assistenza clienti" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket @@ -68,6 +68,10 @@ msgid "" " be either a physical product or a service that you sell to " "your customers." msgstr "" +"Attualmente non ci sono prodotti disponibili per i ticket di assistenza " +"clienti.
Un prodotto può \n" +" essere sia un prodotto fisico sia un servizio che si vende " +"ai clienti." #~ msgid "" #~ "You currently have no products available for Helpdesk Tickets.\n" From 2b875072a153b31455693b86f1192268e0712f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Mon, 16 Mar 2026 15:04:02 +0000 Subject: [PATCH 31/99] Added translation using Weblate (French) --- helpdesk_product/i18n/fr.po | 66 +++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 helpdesk_product/i18n/fr.po diff --git a/helpdesk_product/i18n/fr.po b/helpdesk_product/i18n/fr.po new file mode 100644 index 0000000000..fad487a087 --- /dev/null +++ b/helpdesk_product/i18n/fr.po @@ -0,0 +1,66 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_product +# +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: fr\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: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk +msgid "Available for Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active +msgid "Available for Helpdesk Tickets" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "Create a new product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template +msgid "Helpdesk" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_product +#: model:ir.model,name:helpdesk_product.model_product_template +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search +msgid "Product Related" +msgstr "" + +#. module: helpdesk_product +#: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk +#: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products +msgid "Products" +msgstr "" + +#. module: helpdesk_product +#: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk +msgid "" +"You currently have no products available for Helpdesk Tickets.
A product can\n" +" be either a physical product or a service that you sell to your customers." +msgstr "" From 8cc765c6d04b0ce3d2104c04451bd668028a8c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Mon, 16 Mar 2026 15:06:41 +0000 Subject: [PATCH 32/99] Translated using Weblate (French) Currently translated at 100.0% (9 of 9 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_product Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product/fr/ --- helpdesk_product/i18n/fr.po | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/helpdesk_product/i18n/fr.po b/helpdesk_product/i18n/fr.po index fad487a087..1f72cd422c 100644 --- a/helpdesk_product/i18n/fr.po +++ b/helpdesk_product/i18n/fr.po @@ -6,57 +6,59 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-03-16 17:45+0000\n" +"Last-Translator: Rémi \n" "Language-Team: none\n" "Language: fr\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.15.2\n" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_template_search_view_helpdesk msgid "Available for Helpdesk" -msgstr "" +msgstr "Utilisable pour l'assistance" #. module: helpdesk_product #: model:ir.model.fields,field_description:helpdesk_product.field_product_product__ticket_active #: model:ir.model.fields,field_description:helpdesk_product.field_product_template__ticket_active msgid "Available for Helpdesk Tickets" -msgstr "" +msgstr "Utilisable pour les tickets d'assistance" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk msgid "Create a new product" -msgstr "" +msgstr "Créer un nouveau produit" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template msgid "Helpdesk" -msgstr "" +msgstr "Assistance" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "" +msgstr "Ticket d'assistance" #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template #: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product" -msgstr "" +msgstr "Produit" #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.helpdesk_ticket_view_search msgid "Product Related" -msgstr "" +msgstr "Produit lié" #. module: helpdesk_product #: model:ir.actions.act_window,name:helpdesk_product.product_template_action_helpdesk #: model:ir.ui.menu,name:helpdesk_product.action_menu_view_products msgid "Products" -msgstr "" +msgstr "Produits" #. module: helpdesk_product #: model_terms:ir.actions.act_window,help:helpdesk_product.product_template_action_helpdesk @@ -64,3 +66,6 @@ msgid "" "You currently have no products available for Helpdesk Tickets.
A product can\n" " be either a physical product or a service that you sell to your customers." msgstr "" +"Vous n'avez actuellement aucun produit configuré pour les tickets " +"d'assistance.
Un produit peut\n" +" être un bien ou un service que vous vendez à vos clients." From e41a1ed773b692af305fa264e13f2de66e7dfefb Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Wed, 18 Dec 2019 14:11:58 -0600 Subject: [PATCH 33/99] [ADD] helpdesk_type --- helpdesk_type/README.rst | 21 ++++++++++ helpdesk_type/__init__.py | 4 ++ helpdesk_type/__manifest__.py | 29 +++++++++++++ helpdesk_type/models/__init__.py | 6 +++ helpdesk_type/models/helpdesk_ticket.py | 10 +++++ helpdesk_type/models/helpdesk_ticket_team.py | 14 +++++++ helpdesk_type/models/helpdesk_ticket_type.py | 16 +++++++ helpdesk_type/readme/CONFIGURE.rst | 2 + helpdesk_type/readme/CONTRIBUTORS.rst | 7 ++++ helpdesk_type/readme/DESCRIPTION.rst | 1 + helpdesk_type/readme/USAGE.rst | 2 + helpdesk_type/security/ir.model.access.csv | 3 ++ helpdesk_type/static/description/icon.png | Bin 0 -> 6995 bytes helpdesk_type/views/helpdesk_ticket.xml | 21 ++++++++++ helpdesk_type/views/helpdesk_ticket_team.xml | 16 +++++++ helpdesk_type/views/helpdesk_ticket_type.xml | 42 +++++++++++++++++++ 16 files changed, 194 insertions(+) create mode 100644 helpdesk_type/README.rst create mode 100644 helpdesk_type/__init__.py create mode 100644 helpdesk_type/__manifest__.py create mode 100644 helpdesk_type/models/__init__.py create mode 100644 helpdesk_type/models/helpdesk_ticket.py create mode 100644 helpdesk_type/models/helpdesk_ticket_team.py create mode 100644 helpdesk_type/models/helpdesk_ticket_type.py create mode 100644 helpdesk_type/readme/CONFIGURE.rst create mode 100644 helpdesk_type/readme/CONTRIBUTORS.rst create mode 100644 helpdesk_type/readme/DESCRIPTION.rst create mode 100644 helpdesk_type/readme/USAGE.rst create mode 100644 helpdesk_type/security/ir.model.access.csv create mode 100644 helpdesk_type/static/description/icon.png create mode 100644 helpdesk_type/views/helpdesk_ticket.xml create mode 100644 helpdesk_type/views/helpdesk_ticket_team.xml create mode 100644 helpdesk_type/views/helpdesk_ticket_type.xml diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst new file mode 100644 index 0000000000..21cd7854d5 --- /dev/null +++ b/helpdesk_type/README.rst @@ -0,0 +1,21 @@ +**This file is going to be generated by oca-gen-addon-readme.** + +*Manual changes will be overwritten.* + +Please provide content in the ``readme`` directory: + +* **DESCRIPTION.rst** (required) +* INSTALL.rst (optional) +* CONFIGURE.rst (optional) +* **USAGE.rst** (optional, highly recommended) +* DEVELOP.rst (optional) +* ROADMAP.rst (optional) +* HISTORY.rst (optional, recommended) +* **CONTRIBUTORS.rst** (optional, highly recommended) +* CREDITS.rst (optional) + +Content of this README will also be drawn from the addon manifest, +from keys such as name, authors, maintainers, development_status, +and license. + +A good, one sentence summary in the manifest is also highly recommended. diff --git a/helpdesk_type/__init__.py b/helpdesk_type/__init__.py new file mode 100644 index 0000000000..28d65ea3c5 --- /dev/null +++ b/helpdesk_type/__init__.py @@ -0,0 +1,4 @@ +# Copyright (C) 2019 Open Source Integrators +# Copyright (C) 2019 Konos +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from . import models diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py new file mode 100644 index 0000000000..c4de89b92c --- /dev/null +++ b/helpdesk_type/__manifest__.py @@ -0,0 +1,29 @@ +# Copyright (C) 2019 Open Source Integrators +# Copyright (C) 2019 Konos +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Helpdesk Motive", + "version": "12.0.1.0.0", + "license": "AGPL-3", + "summary": "Keep the motive ", + "author": "Konos, " + "Open Source Integrators, " + "Odoo Community Association (OCA)", + "website": "https://githut.com/OCA/helpdesk", + "depends": [ + "helpdesk_mgmt", + ], + "data": [ + "security/ir.model.access.csv", + "views/helpdesk_ticket_type.xml", + "views/helpdesk_ticket_team.xml", + "views/helpdesk_ticket.xml", + ], + "application": False, + "development_status": "Stable", + "maintainers": [ + "nelsonramirezs", + "max3903", + ], +} diff --git a/helpdesk_type/models/__init__.py b/helpdesk_type/models/__init__.py new file mode 100644 index 0000000000..bb8f5c0f80 --- /dev/null +++ b/helpdesk_type/models/__init__.py @@ -0,0 +1,6 @@ +# Copyright (C) 2019 Open Source Integrators +# Copyright (C) 2019 Konos +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from . import helpdesk_ticket +from . import helpdesk_ticket_type +from . import helpdesk_ticket_team diff --git a/helpdesk_type/models/helpdesk_ticket.py b/helpdesk_type/models/helpdesk_ticket.py new file mode 100644 index 0000000000..930ce9acb2 --- /dev/null +++ b/helpdesk_type/models/helpdesk_ticket.py @@ -0,0 +1,10 @@ +# Copyright (c) 2019 Open Source Integrators +# Copyright (C) 2019 Konos +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import fields, models + + +class HelpdeskTicket(models.Model): + _inherit = 'helpdesk.ticket' + + type_id = fields.Many2one("helpdesk.type", string="Type") diff --git a/helpdesk_type/models/helpdesk_ticket_team.py b/helpdesk_type/models/helpdesk_ticket_team.py new file mode 100644 index 0000000000..0e97e877cc --- /dev/null +++ b/helpdesk_type/models/helpdesk_ticket_team.py @@ -0,0 +1,14 @@ +# Copyright (c) 2019 Open Source Integrators +# Copyright (C) 2019 Konos +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). +from odoo import fields, models + + +class HelpdeskTeam(models.Model): + _inherit = 'helpdesk.ticket.team' + + type_ids = fields.Many2many( + 'helpdesk.ticket.type', + string='Ticket Type', + help="Ticket Types the team will use. This team's tickets will only " + "be able to use those types.") diff --git a/helpdesk_type/models/helpdesk_ticket_type.py b/helpdesk_type/models/helpdesk_ticket_type.py new file mode 100644 index 0000000000..b7ba88a1b8 --- /dev/null +++ b/helpdesk_type/models/helpdesk_ticket_type.py @@ -0,0 +1,16 @@ +# Copyright (C) 2019 Konos +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). +from odoo import fields, models + + +class HelpdeskType(models.Model): + """Helpdesk Type""" + _name = "helpdesk.ticket.type" + _description = 'Helpdesk Ticket Type' + _order = "name asc" + + name = fields.Char('Name', required=True) + team_ids = fields.Many2many( + 'helpdesk.ticket.team', + string='Teams', + help="Helpdesk teams allowed to use this type.") diff --git a/helpdesk_type/readme/CONFIGURE.rst b/helpdesk_type/readme/CONFIGURE.rst new file mode 100644 index 0000000000..910e8f9d78 --- /dev/null +++ b/helpdesk_type/readme/CONFIGURE.rst @@ -0,0 +1,2 @@ +* Go to Helpdesk > Configuration > Types +* Create your list of types diff --git a/helpdesk_type/readme/CONTRIBUTORS.rst b/helpdesk_type/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..a6f2b28949 --- /dev/null +++ b/helpdesk_type/readme/CONTRIBUTORS.rst @@ -0,0 +1,7 @@ +* `Open Source Integrators `_: + + * Maxime Chambreuil + +* `Konos `_: + + * Nelson Sanchez diff --git a/helpdesk_type/readme/DESCRIPTION.rst b/helpdesk_type/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..15f6855450 --- /dev/null +++ b/helpdesk_type/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds a type field on the helpdesk ticket. diff --git a/helpdesk_type/readme/USAGE.rst b/helpdesk_type/readme/USAGE.rst new file mode 100644 index 0000000000..3c8a35d967 --- /dev/null +++ b/helpdesk_type/readme/USAGE.rst @@ -0,0 +1,2 @@ +* Go to Helpdesk +* Create a ticket and set its type. diff --git a/helpdesk_type/security/ir.model.access.csv b/helpdesk_type/security/ir.model.access.csv new file mode 100644 index 0000000000..c4057f7e2d --- /dev/null +++ b/helpdesk_type/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +ir_model_access_helpdesk_ticket_type_user,helpdesk_ticket_type_group_user,model_helpdesk_ticket_type,helpdesk_mgmt.group_helpdesk_user,1,0,0,0 +ir_model_access_helpdesk_ticket_type_manager,helpdesk_ticket_type_group_manager,model_helpdesk_ticket_type,helpdesk_mgmt.group_helpdesk_manager,1,1,1,1 diff --git a/helpdesk_type/static/description/icon.png b/helpdesk_type/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b67e6fefd7f617d167604644fab36d65cad64756 GIT binary patch literal 6995 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 + + + + Add Type on Helpdesk + helpdesk.ticket + + + + + + + + [('type_ids', 'in', type_id)] + + + + + + diff --git a/helpdesk_type/views/helpdesk_ticket_team.xml b/helpdesk_type/views/helpdesk_ticket_team.xml new file mode 100644 index 0000000000..73630ad874 --- /dev/null +++ b/helpdesk_type/views/helpdesk_ticket_team.xml @@ -0,0 +1,16 @@ + + + + + helpdesk.ticket.team.inherit.form + helpdesk.ticket.team + + + + + + + + + diff --git a/helpdesk_type/views/helpdesk_ticket_type.xml b/helpdesk_type/views/helpdesk_ticket_type.xml new file mode 100644 index 0000000000..cc85cdf2e2 --- /dev/null +++ b/helpdesk_type/views/helpdesk_ticket_type.xml @@ -0,0 +1,42 @@ + + + + + helpdesk.ticket.type.form + helpdesk.ticket.type + +
+ + + + +
+
+
+ + + helpdesk.ticket.type.tree + helpdesk.ticket.type + + + + + + + + + Helpdesk Ticket Type + helpdesk.ticket.type + form + tree,form + + + + +
From 0c079f22c26348cd10223a2a425c91094521b50d Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Wed, 18 Dec 2019 17:35:07 -0600 Subject: [PATCH 34/99] [FIX] helpdesk_type --- helpdesk_type/models/helpdesk_ticket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk_type/models/helpdesk_ticket.py b/helpdesk_type/models/helpdesk_ticket.py index 930ce9acb2..a56b383fda 100644 --- a/helpdesk_type/models/helpdesk_ticket.py +++ b/helpdesk_type/models/helpdesk_ticket.py @@ -7,4 +7,4 @@ class HelpdeskTicket(models.Model): _inherit = 'helpdesk.ticket' - type_id = fields.Many2one("helpdesk.type", string="Type") + type_id = fields.Many2one("helpdesk.ticket.type", string="Type") From fc0aafc79c446c1e6a7537aebad33d33c3c16814 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Wed, 18 Dec 2019 17:55:51 -0600 Subject: [PATCH 35/99] [IMP] helpdesk_type --- helpdesk_type/models/helpdesk_ticket.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/helpdesk_type/models/helpdesk_ticket.py b/helpdesk_type/models/helpdesk_ticket.py index a56b383fda..daba952ad2 100644 --- a/helpdesk_type/models/helpdesk_ticket.py +++ b/helpdesk_type/models/helpdesk_ticket.py @@ -1,10 +1,15 @@ # Copyright (c) 2019 Open Source Integrators # Copyright (C) 2019 Konos # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import fields, models +from odoo import api, fields, models class HelpdeskTicket(models.Model): _inherit = 'helpdesk.ticket' type_id = fields.Many2one("helpdesk.ticket.type", string="Type") + + @api.onchange('type_id') + def _onchange_type_id(self): + self.team_id = False + self.user_id = False From c6c439765431db89d7b7a88a238082e37655cb19 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Thu, 19 Dec 2019 08:42:10 -0600 Subject: [PATCH 36/99] [FIX] helpdesk_type --- helpdesk_type/__manifest__.py | 4 ++-- helpdesk_type/views/helpdesk_ticket_team.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index c4de89b92c..5df6d0c5bd 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -3,10 +3,10 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { - "name": "Helpdesk Motive", + "name": "Helpdesk Ticket Type", "version": "12.0.1.0.0", "license": "AGPL-3", - "summary": "Keep the motive ", + "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", diff --git a/helpdesk_type/views/helpdesk_ticket_team.xml b/helpdesk_type/views/helpdesk_ticket_team.xml index 73630ad874..095e12d2e6 100644 --- a/helpdesk_type/views/helpdesk_ticket_team.xml +++ b/helpdesk_type/views/helpdesk_ticket_team.xml @@ -2,8 +2,8 @@ License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). --> - - helpdesk.ticket.team.inherit.form + + helpdesk.ticket.team.type.form helpdesk.ticket.team From 2320b7a3d4bf3e4b593b93ecbcf80b1f84c64d7d Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Thu, 19 Dec 2019 17:14:37 -0600 Subject: [PATCH 37/99] [IMP] helpdesk_type --- helpdesk_type/views/helpdesk_ticket_team.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk_type/views/helpdesk_ticket_team.xml b/helpdesk_type/views/helpdesk_ticket_team.xml index 095e12d2e6..c1d111487f 100644 --- a/helpdesk_type/views/helpdesk_ticket_team.xml +++ b/helpdesk_type/views/helpdesk_ticket_team.xml @@ -8,7 +8,7 @@ - + From 874985dda8fc76222ea6fd0bf8027452a5243b8f Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Mon, 23 Dec 2019 10:15:40 -0600 Subject: [PATCH 38/99] Update helpdesk_type/views/helpdesk_ticket_type.xml Co-Authored-By: Bhavesh Odedra --- helpdesk_type/README.rst | 111 ++++- helpdesk_type/i18n/helpdesk_type.pot | 107 +++++ helpdesk_type/static/description/index.html | 445 +++++++++++++++++++ helpdesk_type/views/helpdesk_ticket_type.xml | 2 +- 4 files changed, 648 insertions(+), 17 deletions(-) create mode 100644 helpdesk_type/i18n/helpdesk_type.pot create mode 100644 helpdesk_type/static/description/index.html diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 21cd7854d5..7c9349df91 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -1,21 +1,100 @@ -**This file is going to be generated by oca-gen-addon-readme.** +==================== +Helpdesk Ticket Type +==================== -*Manual changes will be overwritten.* +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -Please provide content in the ``readme`` directory: +.. |badge1| 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 +.. |badge2| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github + :target: https://github.com/OCA/helpdesk/tree/12.0/helpdesk_type + :alt: OCA/helpdesk +.. |badge3| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/helpdesk-12-0/helpdesk-12-0-helpdesk_type + :alt: Translate me on Weblate +.. |badge4| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/282/12.0 + :alt: Try me on Runbot -* **DESCRIPTION.rst** (required) -* INSTALL.rst (optional) -* CONFIGURE.rst (optional) -* **USAGE.rst** (optional, highly recommended) -* DEVELOP.rst (optional) -* ROADMAP.rst (optional) -* HISTORY.rst (optional, recommended) -* **CONTRIBUTORS.rst** (optional, highly recommended) -* CREDITS.rst (optional) +|badge1| |badge2| |badge3| |badge4| -Content of this README will also be drawn from the addon manifest, -from keys such as name, authors, maintainers, development_status, -and license. +This module adds a type field on the helpdesk ticket. -A good, one sentence summary in the manifest is also highly recommended. +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +* Go to Helpdesk > Configuration > Types +* Create your list of types + +Usage +===== + +* Go to Helpdesk +* Create a ticket and set its type. + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Konos +* Open Source Integrators + +Contributors +~~~~~~~~~~~~ + +* `Open Source Integrators `_: + + * Maxime Chambreuil + +* `Konos `_: + + * Nelson Sanchez + +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-nelsonramirezs| image:: https://github.com/nelsonramirezs.png?size=40px + :target: https://github.com/nelsonramirezs + :alt: nelsonramirezs +.. |maintainer-max3903| image:: https://github.com/max3903.png?size=40px + :target: https://github.com/max3903 + :alt: max3903 + +Current `maintainers `__: + +|maintainer-nelsonramirezs| |maintainer-max3903| + +This module is part of the `OCA/helpdesk `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_type/i18n/helpdesk_type.pot b/helpdesk_type/i18n/helpdesk_type.pot new file mode 100644 index 0000000000..dc6f33130c --- /dev/null +++ b/helpdesk_type/i18n/helpdesk_type.pot @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.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: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update +msgid "Last Modified on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Types the team will use. This team's tickets will only be able to use those types." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +msgid "Type" +msgstr "" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree +msgid "Types" +msgstr "" + diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html new file mode 100644 index 0000000000..00edae23e5 --- /dev/null +++ b/helpdesk_type/static/description/index.html @@ -0,0 +1,445 @@ + + + + + + +Helpdesk Ticket Type + + + +
+

Helpdesk Ticket Type

+ + +

License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

+

This module adds a type field on the helpdesk ticket.

+

Table of contents

+ +
+

Configuration

+
    +
  • Go to Helpdesk > Configuration > Types
  • +
  • Create your list of types
  • +
+
+
+

Usage

+
    +
  • Go to Helpdesk
  • +
  • Create a ticket and set its type.
  • +
+
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Konos
  • +
  • Open Source Integrators
  • +
+
+
+

Contributors

+ +
+
+

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 maintainers:

+

nelsonramirezs max3903

+

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

+

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

+
+
+
+ + diff --git a/helpdesk_type/views/helpdesk_ticket_type.xml b/helpdesk_type/views/helpdesk_ticket_type.xml index cc85cdf2e2..a0f352d4c6 100644 --- a/helpdesk_type/views/helpdesk_ticket_type.xml +++ b/helpdesk_type/views/helpdesk_ticket_type.xml @@ -33,7 +33,7 @@
Date: Thu, 16 Jan 2020 06:34:59 +0000 Subject: [PATCH 39/99] Added translation using Weblate (Portuguese (Brazil)) --- helpdesk_type/i18n/pt_BR.po | 111 ++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 helpdesk_type/i18n/pt_BR.po diff --git a/helpdesk_type/i18n/pt_BR.po b/helpdesk_type/i18n/pt_BR.po new file mode 100644 index 0000000000..94f53e7a0b --- /dev/null +++ b/helpdesk_type/i18n/pt_BR.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-01-16 09:13+0000\n" +"Last-Translator: Marcel Savegnago \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" +"X-Generator: Weblate 3.10\n" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "Nome Exibido" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "Chamado" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "Time do Chamado" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "Tipo do Chamado" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "As equipes da central de ajuda podem usar esse tipo." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "ID" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update +msgid "Last Modified on" +msgstr "??ltima Modifica????o em" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "??ltima Atualiza????o por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "??ltima Atualiza????o em" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "Nome" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "Times" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "Tipo de Chamado" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "Tipos de Chamado" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Types the team will use. This team's tickets will only be able to use those types." +msgstr "" +"Tipos de chamado que a equipe usar??. Os chamados dessa equipe s?? poder??o " +"usar esses tipos." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +msgid "Type" +msgstr "Tipo" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree +msgid "Types" +msgstr "Tipos" From 61e725a53edcc512f78c131c98160226820c6b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Ram=C3=ADrez=20S=C3=A1nchez?= Date: Wed, 25 Mar 2020 16:24:53 +0000 Subject: [PATCH 40/99] Added translation using Weblate (Spanish) --- helpdesk_type/i18n/es.po | 111 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 helpdesk_type/i18n/es.po diff --git a/helpdesk_type/i18n/es.po b/helpdesk_type/i18n/es.po new file mode 100644 index 0000000000..1325c0f9fb --- /dev/null +++ b/helpdesk_type/i18n/es.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-03-25 19:13+0000\n" +"Last-Translator: Nelson Ram??rez S??nchez \n" +"Language-Team: none\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 3.10\n" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "Ticket de Helpdesk" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "Equipo de tickets del Helpdesk" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "Tipo de tickets del Helpdesk" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "Los equipos de soporte t??cnico pueden usar este tipo." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update +msgid "Last Modified on" +msgstr "??ltima modificaci??n el" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "??ltima actualizaci??n por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "Last Updated el" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "Nombre" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "Equipos" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "Tipo de Ticket" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "Tipos de Ticket" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Types the team will use. This team's tickets will only be able to use those types." +msgstr "" +"Tipos de Tickets que usar?? el equipo. Los tickets de este equipo solo podr??n " +"usar esos tipos." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +msgid "Type" +msgstr "Tipo" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree +msgid "Types" +msgstr "Tipos" From 76fca3e2ca396203381a682d7afafc15511e042e Mon Sep 17 00:00:00 2001 From: Josep M Date: Mon, 18 May 2020 10:04:06 +0000 Subject: [PATCH 41/99] Translated using Weblate (Spanish) Currently translated at 100.0% (18 of 18 strings) Translation: helpdesk-12.0/helpdesk-12.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-12-0/helpdesk-12-0-helpdesk_type/es/ --- helpdesk_type/i18n/es.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helpdesk_type/i18n/es.po b/helpdesk_type/i18n/es.po index 1325c0f9fb..6761356ef5 100644 --- a/helpdesk_type/i18n/es.po +++ b/helpdesk_type/i18n/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2020-03-25 19:13+0000\n" -"Last-Translator: Nelson Ram??rez S??nchez \n" +"PO-Revision-Date: 2020-05-18 12:19+0000\n" +"Last-Translator: Josep M \n" "Language-Team: none\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -29,12 +29,12 @@ msgstr "Creado en" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" -msgstr "Nombre para mostrar" +msgstr "Nombre mostrado" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "Ticket de Helpdesk" +msgstr "Ticket Helpdesk" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team @@ -55,7 +55,7 @@ msgstr "Los equipos de soporte t??cnico pueden usar este tipo." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id msgid "ID" -msgstr "" +msgstr "ID" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update From f625c45f222c5bc132bbb54b4b478b25c6f11c57 Mon Sep 17 00:00:00 2001 From: AntoniRomera Date: Fri, 5 Jun 2020 11:02:24 +0200 Subject: [PATCH 42/99] [IMP] : black, isort, prettier --- helpdesk_type/__manifest__.py | 13 +++---------- helpdesk_type/models/helpdesk_ticket.py | 4 ++-- helpdesk_type/models/helpdesk_ticket_team.py | 9 +++++---- helpdesk_type/models/helpdesk_ticket_type.py | 12 +++++++----- helpdesk_type/views/helpdesk_ticket.xml | 6 ++---- helpdesk_type/views/helpdesk_ticket_team.xml | 6 ++---- helpdesk_type/views/helpdesk_ticket_type.xml | 14 +++++--------- 7 files changed, 26 insertions(+), 38 deletions(-) diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 5df6d0c5bd..8833d28b5a 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -7,13 +7,9 @@ "version": "12.0.1.0.0", "license": "AGPL-3", "summary": "Add a type to your tickets", - "author": "Konos, " - "Open Source Integrators, " - "Odoo Community Association (OCA)", + "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", "website": "https://githut.com/OCA/helpdesk", - "depends": [ - "helpdesk_mgmt", - ], + "depends": ["helpdesk_mgmt"], "data": [ "security/ir.model.access.csv", "views/helpdesk_ticket_type.xml", @@ -22,8 +18,5 @@ ], "application": False, "development_status": "Stable", - "maintainers": [ - "nelsonramirezs", - "max3903", - ], + "maintainers": ["nelsonramirezs", "max3903"], } diff --git a/helpdesk_type/models/helpdesk_ticket.py b/helpdesk_type/models/helpdesk_ticket.py index daba952ad2..08ccdf467c 100644 --- a/helpdesk_type/models/helpdesk_ticket.py +++ b/helpdesk_type/models/helpdesk_ticket.py @@ -5,11 +5,11 @@ class HelpdeskTicket(models.Model): - _inherit = 'helpdesk.ticket' + _inherit = "helpdesk.ticket" type_id = fields.Many2one("helpdesk.ticket.type", string="Type") - @api.onchange('type_id') + @api.onchange("type_id") def _onchange_type_id(self): self.team_id = False self.user_id = False diff --git a/helpdesk_type/models/helpdesk_ticket_team.py b/helpdesk_type/models/helpdesk_ticket_team.py index 0e97e877cc..778b2d7eb4 100644 --- a/helpdesk_type/models/helpdesk_ticket_team.py +++ b/helpdesk_type/models/helpdesk_ticket_team.py @@ -5,10 +5,11 @@ class HelpdeskTeam(models.Model): - _inherit = 'helpdesk.ticket.team' + _inherit = "helpdesk.ticket.team" type_ids = fields.Many2many( - 'helpdesk.ticket.type', - string='Ticket Type', + "helpdesk.ticket.type", + string="Ticket Type", help="Ticket Types the team will use. This team's tickets will only " - "be able to use those types.") + "be able to use those types.", + ) diff --git a/helpdesk_type/models/helpdesk_ticket_type.py b/helpdesk_type/models/helpdesk_ticket_type.py index b7ba88a1b8..2c24a35e6f 100644 --- a/helpdesk_type/models/helpdesk_ticket_type.py +++ b/helpdesk_type/models/helpdesk_ticket_type.py @@ -5,12 +5,14 @@ class HelpdeskType(models.Model): """Helpdesk Type""" + _name = "helpdesk.ticket.type" - _description = 'Helpdesk Ticket Type' + _description = "Helpdesk Ticket Type" _order = "name asc" - name = fields.Char('Name', required=True) + name = fields.Char("Name", required=True) team_ids = fields.Many2many( - 'helpdesk.ticket.team', - string='Teams', - help="Helpdesk teams allowed to use this type.") + "helpdesk.ticket.team", + string="Teams", + help="Helpdesk teams allowed to use this type.", + ) diff --git a/helpdesk_type/views/helpdesk_ticket.xml b/helpdesk_type/views/helpdesk_ticket.xml index 289277710d..0f1913f393 100644 --- a/helpdesk_type/views/helpdesk_ticket.xml +++ b/helpdesk_type/views/helpdesk_ticket.xml @@ -1,14 +1,13 @@ - Add Type on Helpdesk helpdesk.ticket - + - + @@ -17,5 +16,4 @@ - diff --git a/helpdesk_type/views/helpdesk_ticket_team.xml b/helpdesk_type/views/helpdesk_ticket_team.xml index c1d111487f..b3fe9cd698 100644 --- a/helpdesk_type/views/helpdesk_ticket_team.xml +++ b/helpdesk_type/views/helpdesk_ticket_team.xml @@ -1,16 +1,14 @@ - helpdesk.ticket.team.type.form helpdesk.ticket.team - + - + - diff --git a/helpdesk_type/views/helpdesk_ticket_type.xml b/helpdesk_type/views/helpdesk_ticket_type.xml index a0f352d4c6..5201a0ee56 100644 --- a/helpdesk_type/views/helpdesk_ticket_type.xml +++ b/helpdesk_type/views/helpdesk_ticket_type.xml @@ -1,42 +1,38 @@ - helpdesk.ticket.type.form helpdesk.ticket.type
- - + +
- helpdesk.ticket.type.tree helpdesk.ticket.type - + - Helpdesk Ticket Type helpdesk.ticket.type form tree,form - - + sequence="5" + />
From ae1db99a7579ca5607ebb426657ce36542bd79af Mon Sep 17 00:00:00 2001 From: AntoniRomera Date: Fri, 5 Jun 2020 11:03:55 +0200 Subject: [PATCH 43/99] [MIG] : Migration to 13.0 [FIX] helpdesk_type: Unnecessary change on on_change definition --- helpdesk_type/README.rst | 10 +++++----- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/i18n/helpdesk_type.pot | 11 ++++++----- helpdesk_type/static/description/index.html | 6 +++--- helpdesk_type/views/helpdesk_ticket_type.xml | 1 - 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 7c9349df91..7381326726 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -11,13 +11,13 @@ Helpdesk Ticket Type :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge2| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/12.0/helpdesk_type + :target: https://github.com/OCA/helpdesk/tree/13.0/helpdesk_type :alt: OCA/helpdesk .. |badge3| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-12-0/helpdesk-12-0-helpdesk_type + :target: https://translation.odoo-community.org/projects/helpdesk-13-0/helpdesk-13-0-helpdesk_type :alt: Translate me on Weblate .. |badge4| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/282/12.0 + :target: https://runbot.odoo-community.org/runbot/282/13.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| @@ -47,7 +47,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 smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -95,6 +95,6 @@ Current `maintainers `__: |maintainer-nelsonramirezs| |maintainer-max3903| -This module is part of the `OCA/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 8833d28b5a..95fe7a4454 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "12.0.1.0.0", + "version": "13.0.1.0.0", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", diff --git a/helpdesk_type/i18n/helpdesk_type.pot b/helpdesk_type/i18n/helpdesk_type.pot index dc6f33130c..49d79e455c 100644 --- a/helpdesk_type/i18n/helpdesk_type.pot +++ b/helpdesk_type/i18n/helpdesk_type.pot @@ -1,12 +1,12 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * helpdesk_type +# * helpdesk_type # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" +"Project-Id-Version: Odoo Server 13.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: <>\n" +"Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +91,9 @@ msgstr "" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids -msgid "Ticket Types the team will use. This team's tickets will only be able to use those types." +msgid "" +"Ticket Types the team will use. This team's tickets will only be able to use" +" those types." msgstr "" #. module: helpdesk_type @@ -104,4 +106,3 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree msgid "Types" msgstr "" - diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index 00edae23e5..d064f7767e 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -367,7 +367,7 @@

Helpdesk Ticket Type

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

+

License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

This module adds a type field on the helpdesk ticket.

Table of contents

@@ -402,7 +402,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 smashing it by providing a detailed and welcomed -feedback.

+feedback.

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

@@ -436,7 +436,7 @@

Maintainers

promote its widespread use.

Current maintainers:

nelsonramirezs max3903

-

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

+

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

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

diff --git a/helpdesk_type/views/helpdesk_ticket_type.xml b/helpdesk_type/views/helpdesk_ticket_type.xml index 5201a0ee56..4cb57f70d9 100644 --- a/helpdesk_type/views/helpdesk_ticket_type.xml +++ b/helpdesk_type/views/helpdesk_ticket_type.xml @@ -25,7 +25,6 @@ Helpdesk Ticket Type helpdesk.ticket.type - form tree,form Date: Tue, 21 Jul 2020 14:58:32 +0300 Subject: [PATCH 44/99] Update __manifest__.py fix typo --- helpdesk_type/__manifest__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 95fe7a4454..10859becf5 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,11 +4,11 @@ { "name": "Helpdesk Ticket Type", - "version": "13.0.1.0.0", + "version": "13.0.1.0.1", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", - "website": "https://githut.com/OCA/helpdesk", + "website": "https://github.com/OCA/helpdesk", "depends": ["helpdesk_mgmt"], "data": [ "security/ir.model.access.csv", From cad780172124d08a12eacddb19ae2f690c0570d8 Mon Sep 17 00:00:00 2001 From: Ignacio Buioli Date: Mon, 10 Aug 2020 14:59:01 +0000 Subject: [PATCH 45/99] Added translation using Weblate (Spanish (Argentina)) --- helpdesk_type/i18n/es_AR.po | 113 ++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 helpdesk_type/i18n/es_AR.po diff --git a/helpdesk_type/i18n/es_AR.po b/helpdesk_type/i18n/es_AR.po new file mode 100644 index 0000000000..7c4898a729 --- /dev/null +++ b/helpdesk_type/i18n/es_AR.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-08-10 17:59+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: none\n" +"Language: es_AR\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 3.10\n" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "Ticket de la Mesa de Ayuda" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "Equipo del Ticket de la Mesa de Ayuda" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "Tipo de Ticket de la Mesa de Ayuda" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "Los equipos de la mesa de ayuda pueden utilizar este tipo." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "ID" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update +msgid "Last Modified on" +msgstr "??ltima Modificaci??n el" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "??ltima Actualizaci??n por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "??ltima Actualizaci??n el" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "Nombre" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "Equipos" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "Tipo de Ticket" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "Tipos de Ticket" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "" +"Ticket Types the team will use. This team's tickets will only be able to use" +" those types." +msgstr "" +"Tipos de Tickets que utilizar?? el equipo. Los tickets de este equipo solo " +"podr??n usar esos tipos." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +msgid "Type" +msgstr "Tipo" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree +msgid "Types" +msgstr "Tipos" From afcb306e521f5d53f829fef02ce877c57558914b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Lodeiros?= Date: Tue, 17 Nov 2020 09:41:38 +0100 Subject: [PATCH 46/99] [FIX] Development Status Maintainer Task --- helpdesk_type/README.rst | 13 ++++++++----- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/static/description/index.html | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 7381326726..7a877f0c68 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -7,20 +7,23 @@ Helpdesk Ticket Type !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -.. |badge1| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |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 -.. |badge2| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github :target: https://github.com/OCA/helpdesk/tree/13.0/helpdesk_type :alt: OCA/helpdesk -.. |badge3| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/helpdesk-13-0/helpdesk-13-0-helpdesk_type :alt: Translate me on Weblate -.. |badge4| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png :target: https://runbot.odoo-community.org/runbot/282/13.0 :alt: Try me on Runbot -|badge1| |badge2| |badge3| |badge4| +|badge1| |badge2| |badge3| |badge4| |badge5| This module adds a type field on the helpdesk ticket. diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 10859becf5..3e6486eaf4 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -17,6 +17,6 @@ "views/helpdesk_ticket.xml", ], "application": False, - "development_status": "Stable", + "development_status": "Beta", "maintainers": ["nelsonramirezs", "max3903"], } diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index d064f7767e..bd5b4edea1 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -367,7 +367,7 @@

Helpdesk Ticket Type

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

This module adds a type field on the helpdesk ticket.

Table of contents

From c0ce5995c9f422dca52a99b81f6d3428c66e1945 Mon Sep 17 00:00:00 2001 From: Fernando Date: Sat, 12 Dec 2020 13:27:01 +0000 Subject: [PATCH 47/99] Translated using Weblate (Spanish) Currently translated at 100.0% (18 of 18 strings) Translation: helpdesk-13.0/helpdesk-13.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-13-0/helpdesk-13-0-helpdesk_type/es/ --- helpdesk_type/i18n/es.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helpdesk_type/i18n/es.po b/helpdesk_type/i18n/es.po index 6761356ef5..b795daa209 100644 --- a/helpdesk_type/i18n/es.po +++ b/helpdesk_type/i18n/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2020-05-18 12:19+0000\n" -"Last-Translator: Josep M \n" +"PO-Revision-Date: 2020-12-12 15:36+0000\n" +"Last-Translator: Fernando \n" "Language-Team: none\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "Creado por" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date msgid "Created on" -msgstr "Creado en" +msgstr "Creado el" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name @@ -39,7 +39,7 @@ msgstr "Ticket Helpdesk" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team msgid "Helpdesk Ticket Team" -msgstr "Equipo de tickets del Helpdesk" +msgstr "Equipo de ticket Helpdesk" #. module: helpdesk_type #: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type @@ -70,7 +70,7 @@ msgstr "??ltima actualizaci??n por" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date msgid "Last Updated on" -msgstr "Last Updated el" +msgstr "??ltima actualizaci??n el" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name From 7d41168f199dee9d55ad64e2ecb5ab36e382a72d Mon Sep 17 00:00:00 2001 From: Jordi Ballester Date: Wed, 21 Apr 2021 08:55:35 +0200 Subject: [PATCH 48/99] [helpdesk_type][fix] only reset team and user when the new type does not match --- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/models/helpdesk_ticket.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 3e6486eaf4..5575a8094d 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "13.0.1.0.1", + "version": "13.0.1.0.2", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", diff --git a/helpdesk_type/models/helpdesk_ticket.py b/helpdesk_type/models/helpdesk_ticket.py index 08ccdf467c..93fa122ba2 100644 --- a/helpdesk_type/models/helpdesk_ticket.py +++ b/helpdesk_type/models/helpdesk_ticket.py @@ -11,5 +11,6 @@ class HelpdeskTicket(models.Model): @api.onchange("type_id") def _onchange_type_id(self): - self.team_id = False - self.user_id = False + if self.type_id and self.team_id and self.type_id not in self.team_id.type_ids: + self.team_id = False + self.user_id = False From 2c086e29e9ac062c989ff0cbc4442d184fcea9a3 Mon Sep 17 00:00:00 2001 From: David Alonso // Solvos Date: Tue, 25 May 2021 11:16:02 +0200 Subject: [PATCH 49/99] [MIG] helpdesk_type: Migration to 14.0 --- helpdesk_type/README.rst | 14 +++++++++----- helpdesk_type/__manifest__.py | 3 ++- helpdesk_type/demo/helpdesk_type_demo.xml | 15 +++++++++++++++ helpdesk_type/i18n/helpdesk_type.pot | 9 ++++++++- helpdesk_type/readme/CONTRIBUTORS.rst | 4 ++++ helpdesk_type/static/description/icon.png | Bin 6995 -> 9455 bytes helpdesk_type/static/description/index.html | 10 +++++++--- helpdesk_type/views/helpdesk_ticket.xml | 18 ++++++++++++++++++ 8 files changed, 63 insertions(+), 10 deletions(-) create mode 100644 helpdesk_type/demo/helpdesk_type_demo.xml diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 7a877f0c68..8c950fadde 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -14,13 +14,13 @@ Helpdesk Ticket Type :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/13.0/helpdesk_type + :target: https://github.com/OCA/helpdesk/tree/14.0/helpdesk_type :alt: OCA/helpdesk .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-13-0/helpdesk-13-0-helpdesk_type + :target: https://translation.odoo-community.org/projects/helpdesk-14-0/helpdesk-14-0-helpdesk_type :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/282/13.0 + :target: https://runbot.odoo-community.org/runbot/282/14.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -50,7 +50,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 smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -74,6 +74,10 @@ Contributors * Nelson Sanchez +* `Solvos `_: + + * David Alonso + Maintainers ~~~~~~~~~~~ @@ -98,6 +102,6 @@ Current `maintainers `__: |maintainer-nelsonramirezs| |maintainer-max3903| -This module is part of the `OCA/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 5575a8094d..84ae0f5e38 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "13.0.1.0.2", + "version": "14.0.1.0.1", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", @@ -16,6 +16,7 @@ "views/helpdesk_ticket_team.xml", "views/helpdesk_ticket.xml", ], + "demo": ["demo/helpdesk_type_demo.xml"], "application": False, "development_status": "Beta", "maintainers": ["nelsonramirezs", "max3903"], diff --git a/helpdesk_type/demo/helpdesk_type_demo.xml b/helpdesk_type/demo/helpdesk_type_demo.xml new file mode 100644 index 0000000000..e969434b88 --- /dev/null +++ b/helpdesk_type/demo/helpdesk_type_demo.xml @@ -0,0 +1,15 @@ + + + + + Document issue + + + + + + + + + + diff --git a/helpdesk_type/i18n/helpdesk_type.pot b/helpdesk_type/i18n/helpdesk_type.pot index 49d79e455c..0bf8a7970a 100644 --- a/helpdesk_type/i18n/helpdesk_type.pot +++ b/helpdesk_type/i18n/helpdesk_type.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 13.0\n" +"Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" @@ -24,6 +24,8 @@ msgid "Created on" msgstr "" #. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__display_name #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "" @@ -50,11 +52,15 @@ msgid "Helpdesk teams allowed to use this type." msgstr "" #. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__id +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__id #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id msgid "ID" msgstr "" #. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket____last_update +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team____last_update #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update msgid "Last Modified on" msgstr "" @@ -99,6 +105,7 @@ msgstr "" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search msgid "Type" msgstr "" diff --git a/helpdesk_type/readme/CONTRIBUTORS.rst b/helpdesk_type/readme/CONTRIBUTORS.rst index a6f2b28949..6db5c31e33 100644 --- a/helpdesk_type/readme/CONTRIBUTORS.rst +++ b/helpdesk_type/readme/CONTRIBUTORS.rst @@ -5,3 +5,7 @@ * `Konos `_: * Nelson Sanchez + +* `Solvos `_: + + * David Alonso diff --git a/helpdesk_type/static/description/icon.png b/helpdesk_type/static/description/icon.png index b67e6fefd7f617d167604644fab36d65cad64756..3a0328b516c4980e8e44cdb63fd945757ddd132d 100644 GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 6995 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 Ticket Type !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

This module adds a type field on the helpdesk ticket.

Table of contents

@@ -402,7 +402,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 smashing it by providing a detailed and welcomed -feedback.

+feedback.

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

@@ -425,6 +425,10 @@

Contributors

  • Nelson Sanchez <nramirez@konos.cl>
  • +
  • Solvos: +
  • @@ -436,7 +440,7 @@

    Maintainers

    promote its widespread use.

    Current maintainers:

    nelsonramirezs max3903

    -

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

    +

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

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

    diff --git a/helpdesk_type/views/helpdesk_ticket.xml b/helpdesk_type/views/helpdesk_ticket.xml index 0f1913f393..dba357f36d 100644 --- a/helpdesk_type/views/helpdesk_ticket.xml +++ b/helpdesk_type/views/helpdesk_ticket.xml @@ -16,4 +16,22 @@
    + + helpdesk.ticket.view.search + helpdesk.ticket + + + + + + + + + + From ce6dfc596d0cf5a5c0bd227431a0706c2bdb735b Mon Sep 17 00:00:00 2001 From: Pedro Castro Silva Date: Mon, 20 Sep 2021 17:38:43 +0000 Subject: [PATCH 50/99] Added translation using Weblate (Portuguese) --- helpdesk_type/i18n/pt.po | 120 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 helpdesk_type/i18n/pt.po diff --git a/helpdesk_type/i18n/pt.po b/helpdesk_type/i18n/pt.po new file mode 100644 index 0000000000..a2d138031c --- /dev/null +++ b/helpdesk_type/i18n/pt.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-09-20 20:34+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: none\n" +"Language: pt\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 4.3.2\n" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "Nome a Exibir" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "Ticket de Helpdesk" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "Equipa do Ticket de Helpdesk" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "Ticket de Tipo de Helpdesk" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "Equipas de Helpdesk autorizadas a utilizar este tipo." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__id +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__id +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "ID" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket____last_update +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team____last_update +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "Nome" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "Equipas" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "Tipo de Ticket" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "Tipos de Ticket" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "" +"Ticket Types the team will use. This team's tickets will only be able to use" +" those types." +msgstr "" +"Tipos de Tickets que a equipa utilizará. Os tickets desta equipa só poderão " +"usar estes tipos." + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search +msgid "Type" +msgstr "Tipo" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree +msgid "Types" +msgstr "Tipos" From 44b1f3d0579f906c64a3d25a6c00586bf064499a Mon Sep 17 00:00:00 2001 From: Francesco Foresti Date: Thu, 24 Mar 2022 17:07:05 +0000 Subject: [PATCH 51/99] Added translation using Weblate (Italian) --- helpdesk_type/i18n/it.po | 118 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 helpdesk_type/i18n/it.po diff --git a/helpdesk_type/i18n/it.po b/helpdesk_type/i18n/it.po new file mode 100644 index 0000000000..bcdd44dc7f --- /dev/null +++ b/helpdesk_type/i18n/it.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2022-03-24 19:17+0000\n" +"Last-Translator: Francesco Foresti \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 4.3.2\n" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "Ticket Helpdesk" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "Team Ticket Helpdesk" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "Tipo Ticket Helpdesk" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__id +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__id +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "ID" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket____last_update +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team____last_update +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "Nome" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "Teams" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "Tipo Ticket" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "Tipi Ticket" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "" +"Ticket Types the team will use. This team's tickets will only be able to use" +" those types." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search +msgid "Type" +msgstr "Tipo" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree +msgid "Types" +msgstr "Tipi" From 1711ebfa9a3f7b7c80db9bc432224339eb457c09 Mon Sep 17 00:00:00 2001 From: Samuele Mariani Date: Fri, 25 Mar 2022 10:44:32 +0000 Subject: [PATCH 52/99] Translated using Weblate (Italian) Currently translated at 100.0% (18 of 18 strings) Translation: helpdesk-14.0/helpdesk-14.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-14-0/helpdesk-14-0-helpdesk_type/it/ --- helpdesk_type/i18n/it.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/helpdesk_type/i18n/it.po b/helpdesk_type/i18n/it.po index bcdd44dc7f..a262926bf6 100644 --- a/helpdesk_type/i18n/it.po +++ b/helpdesk_type/i18n/it.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2022-03-24 19:17+0000\n" -"Last-Translator: Francesco Foresti \n" +"PO-Revision-Date: 2022-03-25 11:41+0000\n" +"Last-Translator: Samuele Mariani \n" "Language-Team: none\n" "Language: it\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Tipo Ticket Helpdesk" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids msgid "Helpdesk teams allowed to use this type." -msgstr "" +msgstr "I team helpdesk sono autorizzati a usare questo tipo." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__id @@ -104,6 +104,8 @@ msgid "" "Ticket Types the team will use. This team's tickets will only be able to use" " those types." msgstr "" +"I Tipi ticket che il team utilizzerà. I ticket di questo team potranno " +"utilizzare solo questi tipi." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id From 2853c74d08d066d6c109b568fdf8d4845cba7fff Mon Sep 17 00:00:00 2001 From: Francesco Foresti Date: Fri, 25 Mar 2022 11:41:50 +0000 Subject: [PATCH 53/99] Translated using Weblate (Italian) Currently translated at 100.0% (18 of 18 strings) Translation: helpdesk-14.0/helpdesk-14.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-14-0/helpdesk-14-0-helpdesk_type/it/ --- helpdesk_type/i18n/it.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helpdesk_type/i18n/it.po b/helpdesk_type/i18n/it.po index a262926bf6..f8e3edea19 100644 --- a/helpdesk_type/i18n/it.po +++ b/helpdesk_type/i18n/it.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2022-03-25 11:41+0000\n" -"Last-Translator: Samuele Mariani \n" +"PO-Revision-Date: 2022-03-25 14:17+0000\n" +"Last-Translator: Francesco Foresti \n" "Language-Team: none\n" "Language: it\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Tipo Ticket Helpdesk" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids msgid "Helpdesk teams allowed to use this type." -msgstr "I team helpdesk sono autorizzati a usare questo tipo." +msgstr "I team helpdesk autorizzati a usare questo tipo." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__id From 3501fd9ff0361241b93807f749fcbc49b3386c6e Mon Sep 17 00:00:00 2001 From: David Alonso Date: Sun, 17 Apr 2022 14:22:12 +0200 Subject: [PATCH 54/99] [MIG] helpdesk_type: Migration to 15.0 --- helpdesk_type/README.rst | 12 ++--- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/demo/helpdesk_type_demo.xml | 24 ++++----- helpdesk_type/i18n/helpdesk_type.pot | 13 +---- helpdesk_type/models/helpdesk_ticket_type.py | 2 +- helpdesk_type/readme/CONFIGURE.rst | 2 +- helpdesk_type/static/description/index.html | 8 +-- helpdesk_type/tests/__init__.py | 1 + helpdesk_type/tests/test_helpdesk_type.py | 55 ++++++++++++++++++++ helpdesk_type/views/helpdesk_ticket_type.xml | 2 +- 10 files changed, 82 insertions(+), 39 deletions(-) create mode 100644 helpdesk_type/tests/__init__.py create mode 100644 helpdesk_type/tests/test_helpdesk_type.py diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 8c950fadde..dedb6dd72d 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -14,13 +14,13 @@ Helpdesk Ticket Type :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/14.0/helpdesk_type + :target: https://github.com/OCA/helpdesk/tree/15.0/helpdesk_type :alt: OCA/helpdesk .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-14-0/helpdesk-14-0-helpdesk_type + :target: https://translation.odoo-community.org/projects/helpdesk-15-0/helpdesk-15-0-helpdesk_type :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/282/14.0 + :target: https://runbot.odoo-community.org/runbot/282/15.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -35,7 +35,7 @@ This module adds a type field on the helpdesk ticket. Configuration ============= -* Go to Helpdesk > Configuration > Types +* Go to Helpdesk > Configuration > Ticket Types * Create your list of types Usage @@ -50,7 +50,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 smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -102,6 +102,6 @@ Current `maintainers `__: |maintainer-nelsonramirezs| |maintainer-max3903| -This module is part of the `OCA/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 84ae0f5e38..a2fdb8b35b 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "14.0.1.0.1", + "version": "15.0.1.0.0", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", diff --git a/helpdesk_type/demo/helpdesk_type_demo.xml b/helpdesk_type/demo/helpdesk_type_demo.xml index e969434b88..2df426f715 100644 --- a/helpdesk_type/demo/helpdesk_type_demo.xml +++ b/helpdesk_type/demo/helpdesk_type_demo.xml @@ -1,15 +1,13 @@ - - - - Document issue - - - - - - - - - + + + Document issue + + + + + + + + diff --git a/helpdesk_type/i18n/helpdesk_type.pot b/helpdesk_type/i18n/helpdesk_type.pot index 0bf8a7970a..4b9f54cf63 100644 --- a/helpdesk_type/i18n/helpdesk_type.pot +++ b/helpdesk_type/i18n/helpdesk_type.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 14.0\n" +"Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" @@ -24,8 +24,6 @@ msgid "Created on" msgstr "" #. module: helpdesk_type -#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__display_name -#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__display_name #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "" @@ -52,15 +50,11 @@ msgid "Helpdesk teams allowed to use this type." msgstr "" #. module: helpdesk_type -#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__id -#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__id #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id msgid "ID" msgstr "" #. module: helpdesk_type -#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket____last_update -#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team____last_update #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type____last_update msgid "Last Modified on" msgstr "" @@ -108,8 +102,3 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search msgid "Type" msgstr "" - -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_tree -msgid "Types" -msgstr "" diff --git a/helpdesk_type/models/helpdesk_ticket_type.py b/helpdesk_type/models/helpdesk_ticket_type.py index 2c24a35e6f..1ea4a32ea7 100644 --- a/helpdesk_type/models/helpdesk_ticket_type.py +++ b/helpdesk_type/models/helpdesk_ticket_type.py @@ -10,7 +10,7 @@ class HelpdeskType(models.Model): _description = "Helpdesk Ticket Type" _order = "name asc" - name = fields.Char("Name", required=True) + name = fields.Char(required=True) team_ids = fields.Many2many( "helpdesk.ticket.team", string="Teams", diff --git a/helpdesk_type/readme/CONFIGURE.rst b/helpdesk_type/readme/CONFIGURE.rst index 910e8f9d78..0fd249ea9c 100644 --- a/helpdesk_type/readme/CONFIGURE.rst +++ b/helpdesk_type/readme/CONFIGURE.rst @@ -1,2 +1,2 @@ -* Go to Helpdesk > Configuration > Types +* Go to Helpdesk > Configuration > Ticket Types * Create your list of types diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index e10cc3bbfb..07b9344aab 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -367,7 +367,7 @@

    Helpdesk Ticket Type

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

    Beta License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

    +

    Beta License: AGPL-3 OCA/helpdesk Translate me on Weblate Try me on Runbot

    This module adds a type field on the helpdesk ticket.

    Table of contents

    @@ -386,7 +386,7 @@

    Helpdesk Ticket Type

    Configuration

      -
    • Go to Helpdesk > Configuration > Types
    • +
    • Go to Helpdesk > Configuration > Ticket Types
    • Create your list of types
    @@ -402,7 +402,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 smashing it by providing a detailed and welcomed -feedback.

    +feedback.

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

    @@ -440,7 +440,7 @@

    Maintainers

    promote its widespread use.

    Current maintainers:

    nelsonramirezs max3903

    -

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

    +

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

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

    diff --git a/helpdesk_type/tests/__init__.py b/helpdesk_type/tests/__init__.py new file mode 100644 index 0000000000..42e8fd9147 --- /dev/null +++ b/helpdesk_type/tests/__init__.py @@ -0,0 +1 @@ +from . import test_helpdesk_type diff --git a/helpdesk_type/tests/test_helpdesk_type.py b/helpdesk_type/tests/test_helpdesk_type.py new file mode 100644 index 0000000000..659b4b57af --- /dev/null +++ b/helpdesk_type/tests/test_helpdesk_type.py @@ -0,0 +1,55 @@ +from odoo.addons.helpdesk_mgmt.tests import test_helpdesk_ticket + + +class TestHelpdeskType(test_helpdesk_ticket.TestHelpdeskTicket): + @classmethod + def setUpClass(cls): + super(TestHelpdeskType, cls).setUpClass() + env = cls.env(user=cls.user_admin) + Ticket = env["helpdesk.ticket"] + Team = env["helpdesk.ticket.team"] + Type = env["helpdesk.ticket.type"] + + cls.ht_team1 = Team.create( + {"name": "Team 1", "user_ids": [(4, cls.user_admin.id)]} + ) + cls.ht_type1 = Type.create( + {"name": "Type 1", "team_ids": [(4, cls.ht_team1.id)]} + ) + cls.ht_type2 = Type.create({"name": "Type 2"}) + cls.ht_ticket1 = Ticket.create( + {"name": "Test 1", "description": "Ticket test 1"} + ) + + def test_helpdesk_onchange_type_id(self): + self.ht_ticket1.write( + {"team_id": self.ht_team1.id, "user_id": self.user_admin.id} + ) + + self.ht_ticket1.type_id = self.ht_type1 + self.ht_ticket1._onchange_type_id() + self.assertEqual( + self.ht_ticket1.team_id, + self.ht_team1, + "Helpdesk Ticket: when type is changed, ticket team should be unchanged" + " if current team belongs to the new type", + ) + self.assertEqual( + self.ht_ticket1.user_id, + self.user_admin, + "Helpdesk Ticket: when type is changed, ticket user should be unchanged" + " if user belongs to a that belongs to the new type", + ) + + self.ht_ticket1.type_id = self.ht_type2 + self.ht_ticket1._onchange_type_id() + self.assertFalse( + self.ht_ticket1.team_id, + "Helpdesk Ticket: When type is changed, ticket team should be reset if" + " current team does not belong to the new type", + ) + self.assertFalse( + self.ht_ticket1.user_id, + "Helpdesk Ticket: When type is changed, ticket user should be reset if" + " current user does not belong to a team assigned to the new type", + ) diff --git a/helpdesk_type/views/helpdesk_ticket_type.xml b/helpdesk_type/views/helpdesk_ticket_type.xml index 4cb57f70d9..52152dcb14 100644 --- a/helpdesk_type/views/helpdesk_ticket_type.xml +++ b/helpdesk_type/views/helpdesk_ticket_type.xml @@ -17,7 +17,7 @@ helpdesk.ticket.type.tree helpdesk.ticket.type - + From 41f01cc5278d3100ec1221bb17457ad89f43ad05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= Date: Wed, 11 Jan 2023 13:07:59 +0100 Subject: [PATCH 55/99] [IMP] helpdesk_mgmt: Only show tickets of the user's helpdesk team with "User: Team tickets" permission. TT41172 --- helpdesk_type/tests/test_helpdesk_type.py | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/helpdesk_type/tests/test_helpdesk_type.py b/helpdesk_type/tests/test_helpdesk_type.py index 659b4b57af..37d02170ce 100644 --- a/helpdesk_type/tests/test_helpdesk_type.py +++ b/helpdesk_type/tests/test_helpdesk_type.py @@ -4,15 +4,12 @@ class TestHelpdeskType(test_helpdesk_ticket.TestHelpdeskTicket): @classmethod def setUpClass(cls): - super(TestHelpdeskType, cls).setUpClass() - env = cls.env(user=cls.user_admin) - Ticket = env["helpdesk.ticket"] - Team = env["helpdesk.ticket.team"] - Type = env["helpdesk.ticket.type"] + super().setUpClass() + Ticket = cls.env["helpdesk.ticket"] + Team = cls.env["helpdesk.ticket.team"] + Type = cls.env["helpdesk.ticket.type"] - cls.ht_team1 = Team.create( - {"name": "Team 1", "user_ids": [(4, cls.user_admin.id)]} - ) + cls.ht_team1 = Team.create({"name": "Team 1", "user_ids": [(4, cls.user.id)]}) cls.ht_type1 = Type.create( {"name": "Type 1", "team_ids": [(4, cls.ht_team1.id)]} ) @@ -22,9 +19,7 @@ def setUpClass(cls): ) def test_helpdesk_onchange_type_id(self): - self.ht_ticket1.write( - {"team_id": self.ht_team1.id, "user_id": self.user_admin.id} - ) + self.ht_ticket1.write({"team_id": self.ht_team1.id, "user_id": self.user.id}) self.ht_ticket1.type_id = self.ht_type1 self.ht_ticket1._onchange_type_id() @@ -36,7 +31,7 @@ def test_helpdesk_onchange_type_id(self): ) self.assertEqual( self.ht_ticket1.user_id, - self.user_admin, + self.user, "Helpdesk Ticket: when type is changed, ticket user should be unchanged" " if user belongs to a that belongs to the new type", ) From 994fd6706a9943841c51a01b3a6782cfc9b8ee49 Mon Sep 17 00:00:00 2001 From: boxnia Date: Mon, 5 Jun 2023 13:44:02 +0000 Subject: [PATCH 56/99] [MIG] helpdesk_type: Migration to 16.0 --- helpdesk_type/README.rst | 23 +++++----- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/i18n/helpdesk_type.pot | 2 +- helpdesk_type/static/description/index.html | 48 +++++++++++---------- 4 files changed, 40 insertions(+), 35 deletions(-) diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index dedb6dd72d..2970d12c3d 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -2,10 +2,13 @@ Helpdesk Ticket Type ==================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:eca98e265232af3651c32b68fec6702c007751d1d8a48475ed1181b8ce824c9d + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -14,16 +17,16 @@ Helpdesk Ticket Type :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/15.0/helpdesk_type + :target: https://github.com/OCA/helpdesk/tree/16.0/helpdesk_type :alt: OCA/helpdesk .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-15-0/helpdesk-15-0-helpdesk_type + :target: https://translation.odoo-community.org/projects/helpdesk-16-0/helpdesk-16-0-helpdesk_type :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/282/15.0 - :alt: Try me on Runbot +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/helpdesk&target_branch=16.0 + :alt: Try me on Runboat -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| This module adds a type field on the helpdesk ticket. @@ -49,8 +52,8 @@ 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 smashing it by providing a detailed and welcomed -`feedback `_. +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. @@ -102,6 +105,6 @@ Current `maintainers `__: |maintainer-nelsonramirezs| |maintainer-max3903| -This module is part of the `OCA/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index a2fdb8b35b..a70182e65e 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", diff --git a/helpdesk_type/i18n/helpdesk_type.pot b/helpdesk_type/i18n/helpdesk_type.pot index 4b9f54cf63..1a00a03983 100644 --- a/helpdesk_type/i18n/helpdesk_type.pot +++ b/helpdesk_type/i18n/helpdesk_type.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 15.0\n" +"Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index 07b9344aab..d6195ea897 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -1,20 +1,20 @@ - + - + Helpdesk Ticket Type -
    -

    Helpdesk Ticket Type

    +
    + + +Odoo Community Association + +
    +

    Helpdesk Ticket Type

    -

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

    +

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

    This module adds a type field on the helpdesk ticket.

    Table of contents

    @@ -386,21 +391,21 @@

    Helpdesk Ticket Type

    -

    Configuration

    +

    Configuration

    • Go to Helpdesk > Configuration > Ticket Types
    • Create your list of types
    -

    Usage

    +

    Usage

    • Go to Helpdesk
    • Create a ticket and set its type.
    -

    Bug Tracker

    +

    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 @@ -408,16 +413,16 @@

    Bug Tracker

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

    -

    Credits

    +

    Credits

    -

    Authors

    +

    Authors

    • Konos
    • Open Source Integrators
    -

    Maintainers

    +

    Maintainers

    This module is maintained by the OCA.

    Odoo Community Association @@ -457,5 +462,6 @@

    Maintainers

    +
    From efef01e22cc0c6fe6fa551b22b1b9106042fce5c Mon Sep 17 00:00:00 2001 From: Enric Tobella Date: Tue, 2 Sep 2025 20:50:21 +0200 Subject: [PATCH 77/99] [IMP] helpdesk_type: Adapt to new view --- helpdesk_type/views/helpdesk_ticket_templates.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk_type/views/helpdesk_ticket_templates.xml b/helpdesk_type/views/helpdesk_ticket_templates.xml index 30565f04d2..c751663e69 100644 --- a/helpdesk_type/views/helpdesk_ticket_templates.xml +++ b/helpdesk_type/views/helpdesk_ticket_templates.xml @@ -45,7 +45,7 @@ id="portal_helpdesk_ticket_page" inherit_id="helpdesk_mgmt.portal_helpdesk_ticket_page" > - +
    Type: From 6c32fd443dcad9203ea5f647ab59110ae848e7f1 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sun, 7 Sep 2025 19:12:42 +0000 Subject: [PATCH 78/99] [BOT] post-merge updates --- helpdesk_type/README.rst | 2 +- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/static/description/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index c5506ca1fb..9eef7fcf62 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -11,7 +11,7 @@ Helpdesk Ticket Type !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:c01cb7b812968f7d5a73ef907e9fcb9c9bcb9ef47e6aee6903ed836d398a690a + !! source digest: sha256:9dbc4a5e50b02f7ea985589da94b68491657eaaace0f6654011d74d9ec2e2ba8 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 137548fc0e..e683a4479a 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "18.0.1.1.0", + "version": "18.0.1.2.0", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index bcdeb747a5..b9490dc603 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -372,7 +372,7 @@

    Helpdesk Ticket Type

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:c01cb7b812968f7d5a73ef907e9fcb9c9bcb9ef47e6aee6903ed836d398a690a +!! source digest: sha256:9dbc4a5e50b02f7ea985589da94b68491657eaaace0f6654011d74d9ec2e2ba8 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

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

    This module adds a type field on the helpdesk ticket.

    From b4010fe7c22209c142c804e3097207a8c55040a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bet=C3=BCl=20=C3=96=C4=9Fmen?= Date: Mon, 6 Oct 2025 07:17:51 +0000 Subject: [PATCH 79/99] Added translation using Weblate (Turkish) --- helpdesk_type/i18n/tr.po | 172 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 helpdesk_type/i18n/tr.po diff --git a/helpdesk_type/i18n/tr.po b/helpdesk_type/i18n/tr.po new file mode 100644 index 0000000000..39cba65149 --- /dev/null +++ b/helpdesk_type/i18n/tr.po @@ -0,0 +1,172 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +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: tr\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: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_helpdesk_ticket_page +msgid "Type:" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__active +msgid "Active" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__show_in_portal +msgid "Allow to select type when creating a new ticket in the portal." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_res_company +msgid "Companies" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type +msgid "" +"Controls if the types are visible on the portal and if they are required." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type +msgid "Display" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "" + +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type +msgid "Required" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required +msgid "Required Type field in Helpdesk portal" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type +#: model:ir.model.fields,help:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type +msgid "Select type in Helpdesk portal" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__show_in_portal +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type +msgid "Show type in portal form" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "" +"Ticket Types the team will use. This team's tickets will only be able to use" +" those types." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +msgid "Type" +msgstr "" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type +msgid "Types" +msgstr "" From 9fd4c8f4a72133b32aebfc83c5eaa503057b23f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bet=C3=BCl=20=C3=96=C4=9Fmen?= Date: Mon, 6 Oct 2025 07:19:28 +0000 Subject: [PATCH 80/99] Translated using Weblate (Turkish) Currently translated at 51.7% (15 of 29 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type/tr/ --- helpdesk_type/i18n/tr.po | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/helpdesk_type/i18n/tr.po b/helpdesk_type/i18n/tr.po index 39cba65149..e2472c8b09 100644 --- a/helpdesk_type/i18n/tr.po +++ b/helpdesk_type/i18n/tr.po @@ -6,90 +6,94 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2025-10-06 09:42+0000\n" +"Last-Translator: Betül Öğmen \n" "Language-Team: none\n" "Language: tr\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: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_helpdesk_ticket_page msgid "Type:" -msgstr "" +msgstr "Tür:" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__active msgid "Active" -msgstr "" +msgstr "Aktif" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__show_in_portal msgid "Allow to select type when creating a new ticket in the portal." -msgstr "" +msgstr "Portalda yeni bir destek kaydı oluştururken tür seçimine izin verin." #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_company msgid "Companies" -msgstr "" +msgstr "Şirketler" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_config_settings msgid "Config Settings" -msgstr "" +msgstr "Yapılandırma Ayarları" #. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "" "Controls if the types are visible on the portal and if they are required." msgstr "" +"Türlerin portalda görünür olup olmadığını ve gerekli olup olmadığını kontrol " +"eder." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" -msgstr "" +msgstr "Oluşturan" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date msgid "Created on" -msgstr "" +msgstr "Oluşturulma" #. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Display" -msgstr "" +msgstr "Göster" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" -msgstr "" +msgstr "Görünen İsim" #. module: helpdesk_type #: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 msgid "Document issue" -msgstr "" +msgstr "Belge Sorunu" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "" +msgstr "Yardım Masası Talebi" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team msgid "Helpdesk Ticket Team" -msgstr "" +msgstr "Yardım Masası Destek Kayıtı Ekibi" #. module: helpdesk_type #: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type msgid "Helpdesk Ticket Type" -msgstr "" +msgstr "Yardım Masası Destek Kayıtı Türü" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids msgid "Helpdesk teams allowed to use this type." -msgstr "" +msgstr "Yardım masası ekiplerinin bu türü kullanmasına izin verilir." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id From 8740362ddb280663604afa903bf1fa6f6a210414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bet=C3=BCl=20=C3=96=C4=9Fmen?= Date: Mon, 6 Oct 2025 09:42:50 +0000 Subject: [PATCH 81/99] Translated using Weblate (Turkish) Currently translated at 96.5% (28 of 29 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type/tr/ --- helpdesk_type/i18n/tr.po | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/helpdesk_type/i18n/tr.po b/helpdesk_type/i18n/tr.po index e2472c8b09..3cc7ae1be7 100644 --- a/helpdesk_type/i18n/tr.po +++ b/helpdesk_type/i18n/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-06 09:42+0000\n" +"PO-Revision-Date: 2025-10-06 12:42+0000\n" "Last-Translator: Betül Öğmen \n" "Language-Team: none\n" "Language: tr\n" @@ -103,56 +103,56 @@ msgstr "" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid msgid "Last Updated by" -msgstr "" +msgstr "Son güncelleyen" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date msgid "Last Updated on" -msgstr "" +msgstr "Son güncelleme" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name msgid "Name" -msgstr "" +msgstr "İsim" #. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Required" -msgstr "" +msgstr "Zorunlu" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required msgid "Required Type field in Helpdesk portal" -msgstr "" +msgstr "Yardım Masası portalında Zorunlu Tür alanı" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type #: model:ir.model.fields,help:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type msgid "Select type in Helpdesk portal" -msgstr "" +msgstr "Yardım Masası portalında türü seçin" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__show_in_portal #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type msgid "Show type in portal form" -msgstr "" +msgstr "Portal formunda türü göster" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids msgid "Teams" -msgstr "" +msgstr "Ekipler" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids msgid "Ticket Type" -msgstr "" +msgstr "Talep Türü" #. module: helpdesk_type #: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type msgid "Ticket Types" -msgstr "" +msgstr "Talep Türleri" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids @@ -160,6 +160,8 @@ msgid "" "Ticket Types the team will use. This team's tickets will only be able to use" " those types." msgstr "" +"Takımın kullanacağı destek kaydı türleri. Bu takımın destek kayıtları " +"yalnızca bu türleri kullanabilecektir." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id @@ -168,9 +170,9 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list msgid "Type" -msgstr "" +msgstr "Tür" #. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Types" -msgstr "" +msgstr "Türler" From 0a41767080f579bccbcf309e106659661e2962e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Wed, 29 Oct 2025 12:02:48 -0300 Subject: [PATCH 82/99] [IMP] helpdesk_type: improve settings page --- .../views/res_config_settings_views.xml | 41 +++++++------------ 1 file changed, 15 insertions(+), 26 deletions(-) diff --git a/helpdesk_type/views/res_config_settings_views.xml b/helpdesk_type/views/res_config_settings_views.xml index e1f397e28b..d9b5ba6649 100644 --- a/helpdesk_type/views/res_config_settings_views.xml +++ b/helpdesk_type/views/res_config_settings_views.xml @@ -6,33 +6,22 @@ - -
    -
    -
    - -
    -
    - -
    -
    -
    -
    +
    + +
    +
    + +
    + +
    From 2e2f2ef109816be9367ac18f590500c90d968a6e Mon Sep 17 00:00:00 2001 From: oca-ci Date: Wed, 29 Oct 2025 17:33:24 +0000 Subject: [PATCH 83/99] [UPD] Update helpdesk_type.pot --- helpdesk_type/i18n/helpdesk_type.pot | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/helpdesk_type/i18n/helpdesk_type.pot b/helpdesk_type/i18n/helpdesk_type.pot index 271c71a7fd..152aa688e7 100644 --- a/helpdesk_type/i18n/helpdesk_type.pot +++ b/helpdesk_type/i18n/helpdesk_type.pot @@ -38,12 +38,6 @@ msgstr "" msgid "Config Settings" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -54,11 +48,6 @@ msgstr "" msgid "Created on" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" @@ -110,11 +99,6 @@ msgstr "" msgid "Name" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -162,10 +146,6 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list -msgid "Type" -msgstr "" - -#. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" +msgid "Type" msgstr "" From a7cc05cd6258e7d8fd0cb3d6d64ed792540ee6f4 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 29 Oct 2025 17:38:09 +0000 Subject: [PATCH 84/99] [BOT] post-merge updates --- helpdesk_type/README.rst | 2 +- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/static/description/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 9eef7fcf62..41aea36df1 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -11,7 +11,7 @@ Helpdesk Ticket Type !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:9dbc4a5e50b02f7ea985589da94b68491657eaaace0f6654011d74d9ec2e2ba8 + !! source digest: sha256:4231d71aa1eaec9e9142aa0335e988ec3537bb110d4f37ab746e05c5441523c0 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index e683a4479a..0d4155425c 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "18.0.1.2.0", + "version": "18.0.1.2.1", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index b9490dc603..0deda93184 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -372,7 +372,7 @@

    Helpdesk Ticket Type

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:9dbc4a5e50b02f7ea985589da94b68491657eaaace0f6654011d74d9ec2e2ba8 +!! source digest: sha256:4231d71aa1eaec9e9142aa0335e988ec3537bb110d4f37ab746e05c5441523c0 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

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

    This module adds a type field on the helpdesk ticket.

    From b80bf3e72d5d3d2cf86ab9347575345a808a14ac Mon Sep 17 00:00:00 2001 From: Weblate Date: Wed, 29 Oct 2025 17:38:26 +0000 Subject: [PATCH 85/99] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type/ --- helpdesk_type/i18n/es.po | 39 +++++++++++++++++------------------ helpdesk_type/i18n/es_AR.po | 28 ++++++++----------------- helpdesk_type/i18n/fr.po | 27 ++++++------------------ helpdesk_type/i18n/it.po | 38 ++++++++++++++++------------------ helpdesk_type/i18n/pt.po | 28 ++++++++----------------- helpdesk_type/i18n/pt_BR.po | 28 ++++++++----------------- helpdesk_type/i18n/sv.po | 27 ++++++------------------ helpdesk_type/i18n/tr.po | 41 +++++++++++++++---------------------- 8 files changed, 90 insertions(+), 166 deletions(-) diff --git a/helpdesk_type/i18n/es.po b/helpdesk_type/i18n/es.po index 7d0df2567b..3ab9cf6f0e 100644 --- a/helpdesk_type/i18n/es.po +++ b/helpdesk_type/i18n/es.po @@ -42,12 +42,6 @@ msgstr "Compañías" msgid "Config Settings" msgstr "Ajustes de configuración" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "Controla si los tipos son visibles en el portal y si son obligatorios." - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -58,16 +52,16 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado el" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "Mostrar" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "Nombre mostrado" +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -109,11 +103,6 @@ msgstr "??ltima actualizaci??n el" msgid "Name" msgstr "Nombre" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "Requerido" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -163,10 +152,20 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Tipo" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "Tipos" +#~ msgid "" +#~ "Controls if the types are visible on the portal and if they are required." +#~ msgstr "" +#~ "Controla si los tipos son visibles en el portal y si son obligatorios." + +#~ msgid "Display" +#~ msgstr "Mostrar" + +#~ msgid "Required" +#~ msgstr "Requerido" + +#~ msgid "Types" +#~ msgstr "Tipos" diff --git a/helpdesk_type/i18n/es_AR.po b/helpdesk_type/i18n/es_AR.po index 771ee15ea4..257dd18fa1 100644 --- a/helpdesk_type/i18n/es_AR.po +++ b/helpdesk_type/i18n/es_AR.po @@ -41,12 +41,6 @@ msgstr "" msgid "Config Settings" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -57,16 +51,16 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado el" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "Mostrar Nombre" +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -108,11 +102,6 @@ msgstr "??ltima Actualizaci??n el" msgid "Name" msgstr "Nombre" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -162,13 +151,12 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Tipo" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "Tipos" +#~ msgid "Types" +#~ msgstr "Tipos" #~ msgid "Last Modified on" #~ msgstr "??ltima Modificaci??n el" diff --git a/helpdesk_type/i18n/fr.po b/helpdesk_type/i18n/fr.po index a53a74d27b..10c7d9c617 100644 --- a/helpdesk_type/i18n/fr.po +++ b/helpdesk_type/i18n/fr.po @@ -41,12 +41,6 @@ msgstr "" msgid "Config Settings" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -57,16 +51,16 @@ msgstr "Créé par" msgid "Created on" msgstr "Créé le" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "Nom d’affichage" +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -108,11 +102,6 @@ msgstr "Dernière mise à jour le" msgid "Name" msgstr "Nom" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -162,13 +151,9 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Type" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "" - #~ msgid "Last Modified on" #~ msgstr "Dernière modification le" diff --git a/helpdesk_type/i18n/it.po b/helpdesk_type/i18n/it.po index 76d9e6b55e..acd83c1a84 100644 --- a/helpdesk_type/i18n/it.po +++ b/helpdesk_type/i18n/it.po @@ -42,12 +42,6 @@ msgstr "Aziende" msgid "Config Settings" msgstr "Impostazioni configurazione" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "Controlla se i tipi sono visibili nel portale e se sono richiesti." - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -58,16 +52,16 @@ msgstr "Creato da" msgid "Created on" msgstr "Creato il" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "Schermo" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "Nome visualizzato" +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -109,11 +103,6 @@ msgstr "Ultimo aggiornamento il" msgid "Name" msgstr "Nome" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "Richiesto" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -163,13 +152,22 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Tipo" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "Tipi" +#~ msgid "" +#~ "Controls if the types are visible on the portal and if they are required." +#~ msgstr "Controlla se i tipi sono visibili nel portale e se sono richiesti." + +#~ msgid "Display" +#~ msgstr "Schermo" + +#~ msgid "Required" +#~ msgstr "Richiesto" + +#~ msgid "Types" +#~ msgstr "Tipi" #~ msgid "Last Modified on" #~ msgstr "Ultima modifica il" diff --git a/helpdesk_type/i18n/pt.po b/helpdesk_type/i18n/pt.po index 520635a79e..01f175763b 100644 --- a/helpdesk_type/i18n/pt.po +++ b/helpdesk_type/i18n/pt.po @@ -41,12 +41,6 @@ msgstr "" msgid "Config Settings" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -57,16 +51,16 @@ msgstr "Criado por" msgid "Created on" msgstr "Criado em" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "Nome a Exibir" +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -108,11 +102,6 @@ msgstr "Última Atualização em" msgid "Name" msgstr "Nome" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -162,13 +151,12 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Tipo" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "Tipos" +#~ msgid "Types" +#~ msgstr "Tipos" #~ msgid "Last Modified on" #~ msgstr "Última Modificação em" diff --git a/helpdesk_type/i18n/pt_BR.po b/helpdesk_type/i18n/pt_BR.po index 36da442838..42c63ca9be 100644 --- a/helpdesk_type/i18n/pt_BR.po +++ b/helpdesk_type/i18n/pt_BR.po @@ -41,12 +41,6 @@ msgstr "" msgid "Config Settings" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -57,16 +51,16 @@ msgstr "Criado por" msgid "Created on" msgstr "Criado em" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "Nome Exibido" +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -108,11 +102,6 @@ msgstr "??ltima Atualiza????o em" msgid "Name" msgstr "Nome" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -162,13 +151,12 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Tipo" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "Tipos" +#~ msgid "Types" +#~ msgstr "Tipos" #~ msgid "Last Modified on" #~ msgstr "??ltima Modifica????o em" diff --git a/helpdesk_type/i18n/sv.po b/helpdesk_type/i18n/sv.po index b20afcfe76..e7e6f05bbd 100644 --- a/helpdesk_type/i18n/sv.po +++ b/helpdesk_type/i18n/sv.po @@ -41,12 +41,6 @@ msgstr "" msgid "Config Settings" msgstr "" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -57,16 +51,16 @@ msgstr "Skapad av" msgid "Created on" msgstr "Skapad på" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" msgstr "Visningsnamn" +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -108,11 +102,6 @@ msgstr "Senast uppdaterad den" msgid "Name" msgstr "Namn" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -162,13 +151,9 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Typ" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "" - #~ msgid "Last Modified on" #~ msgstr "Senast ändrad den" diff --git a/helpdesk_type/i18n/tr.po b/helpdesk_type/i18n/tr.po index 3cc7ae1be7..a708af3217 100644 --- a/helpdesk_type/i18n/tr.po +++ b/helpdesk_type/i18n/tr.po @@ -41,14 +41,6 @@ msgstr "Şirketler" msgid "Config Settings" msgstr "Yapılandırma Ayarları" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "" -"Controls if the types are visible on the portal and if they are required." -msgstr "" -"Türlerin portalda görünür olup olmadığını ve gerekli olup olmadığını kontrol " -"eder." - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" @@ -59,11 +51,6 @@ msgstr "Oluşturan" msgid "Created on" msgstr "Oluşturulma" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Display" -msgstr "Göster" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name msgid "Display Name" @@ -115,11 +102,6 @@ msgstr "Son güncelleme" msgid "Name" msgstr "İsim" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Required" -msgstr "Zorunlu" - #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required @@ -157,8 +139,8 @@ msgstr "Talep Türleri" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids msgid "" -"Ticket Types the team will use. This team's tickets will only be able to use" -" those types." +"Ticket Types the team will use. This team's tickets will only be able to use " +"those types." msgstr "" "Takımın kullanacağı destek kaydı türleri. Bu takımın destek kayıtları " "yalnızca bu türleri kullanabilecektir." @@ -169,10 +151,21 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" msgstr "Tür" -#. module: helpdesk_type -#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type -msgid "Types" -msgstr "Türler" +#~ msgid "" +#~ "Controls if the types are visible on the portal and if they are required." +#~ msgstr "" +#~ "Türlerin portalda görünür olup olmadığını ve gerekli olup olmadığını " +#~ "kontrol eder." + +#~ msgid "Display" +#~ msgstr "Göster" + +#~ msgid "Required" +#~ msgstr "Zorunlu" + +#~ msgid "Types" +#~ msgstr "Türler" From 684c85f187924dc7b62dafac153454f673164a9e Mon Sep 17 00:00:00 2001 From: mymage Date: Thu, 30 Oct 2025 08:47:29 +0000 Subject: [PATCH 86/99] Translated using Weblate (Italian) Currently translated at 100.0% (25 of 25 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type/it/ --- helpdesk_type/i18n/it.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpdesk_type/i18n/it.po b/helpdesk_type/i18n/it.po index acd83c1a84..b330f8cd48 100644 --- a/helpdesk_type/i18n/it.po +++ b/helpdesk_type/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-05-03 17:24+0000\n" +"PO-Revision-Date: 2025-10-30 11:42+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -60,7 +60,7 @@ msgstr "Nome visualizzato" #. module: helpdesk_type #: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 msgid "Document issue" -msgstr "" +msgstr "Emissione documento" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket From 5afe5d33337e1acba1266435c302e905b9dcf29b Mon Sep 17 00:00:00 2001 From: jakobkrabbe Date: Mon, 17 Nov 2025 13:11:00 +0000 Subject: [PATCH 87/99] Translated using Weblate (Swedish) Currently translated at 76.0% (19 of 25 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type/sv/ --- helpdesk_type/i18n/sv.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helpdesk_type/i18n/sv.po b/helpdesk_type/i18n/sv.po index e7e6f05bbd..8fdf11feb0 100644 --- a/helpdesk_type/i18n/sv.po +++ b/helpdesk_type/i18n/sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-26 14:06+0000\n" +"PO-Revision-Date: 2025-11-17 15:42+0000\n" "Last-Translator: jakobkrabbe \n" "Language-Team: none\n" "Language: sv\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.10.4\n" #. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_helpdesk_ticket_page @@ -34,12 +34,12 @@ msgstr "" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_company msgid "Companies" -msgstr "" +msgstr "Bolag" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_config_settings msgid "Config Settings" -msgstr "" +msgstr "Inställningar" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid @@ -59,7 +59,7 @@ msgstr "Visningsnamn" #. module: helpdesk_type #: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 msgid "Document issue" -msgstr "" +msgstr "Dokumentärende" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket From 4cca86b30e4c19157a3a52643fb2d3bb19632d12 Mon Sep 17 00:00:00 2001 From: myacc-pro Date: Wed, 17 Dec 2025 21:33:31 +0000 Subject: [PATCH 88/99] Added translation using Weblate (Latvian) --- helpdesk_type/i18n/lv.po | 153 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 helpdesk_type/i18n/lv.po diff --git a/helpdesk_type/i18n/lv.po b/helpdesk_type/i18n/lv.po new file mode 100644 index 0000000000..80c43173f7 --- /dev/null +++ b/helpdesk_type/i18n/lv.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +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: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= " +"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_helpdesk_ticket_page +msgid "Type:" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__active +msgid "Active" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__show_in_portal +msgid "Allow to select type when creating a new ticket in the portal." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_res_company +msgid "Companies" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "" + +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required +msgid "Required Type field in Helpdesk portal" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type +#: model:ir.model.fields,help:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type +msgid "Select type in Helpdesk portal" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__show_in_portal +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type +msgid "Show type in portal form" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "" +"Ticket Types the team will use. This team's tickets will only be able to use" +" those types." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type +msgid "Type" +msgstr "" From 49e31595e7d00222ebc14ed912ef3bd8e1d53e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Mon, 16 Mar 2026 10:15:47 +0000 Subject: [PATCH 89/99] Translated using Weblate (French) Currently translated at 100.0% (25 of 25 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type/fr/ --- helpdesk_type/i18n/fr.po | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/helpdesk_type/i18n/fr.po b/helpdesk_type/i18n/fr.po index 10c7d9c617..74e5dfcbcf 100644 --- a/helpdesk_type/i18n/fr.po +++ b/helpdesk_type/i18n/fr.po @@ -6,40 +6,42 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-02-29 10:33+0000\n" -"Last-Translator: Vincent Hatakeyama \n" +"PO-Revision-Date: 2026-03-16 12:45+0000\n" +"Last-Translator: Rémi \n" "Language-Team: none\n" "Language: fr\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 4.17\n" +"X-Generator: Weblate 5.15.2\n" #. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_helpdesk_ticket_page msgid "Type:" -msgstr "" +msgstr "Type :" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__active msgid "Active" -msgstr "" +msgstr "Actif" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__show_in_portal msgid "Allow to select type when creating a new ticket in the portal." msgstr "" +"Autoriser la sélection sur type lors de la création d'un nouveau ticket " +"depuis le portail." #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_company msgid "Companies" -msgstr "" +msgstr "Sociétés" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_config_settings msgid "Config Settings" -msgstr "" +msgstr "Paramètres" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid @@ -59,7 +61,7 @@ msgstr "Nom d’affichage" #. module: helpdesk_type #: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 msgid "Document issue" -msgstr "" +msgstr "Problème de document" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket @@ -85,7 +87,7 @@ msgstr "Équipe d’assistance qui est autorisée à utiliser ce type." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id msgid "ID" -msgstr "" +msgstr "ID" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid @@ -106,20 +108,20 @@ msgstr "Nom" #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required msgid "Required Type field in Helpdesk portal" -msgstr "" +msgstr "Type de champ requis sur le portail d'assistance" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type #: model:ir.model.fields,help:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type msgid "Select type in Helpdesk portal" -msgstr "" +msgstr "Sélectionner le type sur le portail d'assistance" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__show_in_portal #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type msgid "Show type in portal form" -msgstr "" +msgstr "Afficher le type sur la vue formulaire du portail" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids From eb13ceb53301c9f4ff0a520e984adf252d24e8b2 Mon Sep 17 00:00:00 2001 From: Peter Dovicovic Date: Wed, 8 Apr 2026 13:44:10 +0000 Subject: [PATCH 90/99] Added translation using Weblate (Slovak) --- helpdesk_type/i18n/sk.po | 152 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 helpdesk_type/i18n/sk.po diff --git a/helpdesk_type/i18n/sk.po b/helpdesk_type/i18n/sk.po new file mode 100644 index 0000000000..785f3f3b32 --- /dev/null +++ b/helpdesk_type/i18n/sk.po @@ -0,0 +1,152 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * helpdesk_type +# +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: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: helpdesk_type +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_helpdesk_ticket_page +msgid "Type:" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__active +msgid "Active" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__show_in_portal +msgid "Allow to select type when creating a new ticket in the portal." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_res_company +msgid "Companies" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid +msgid "Created by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date +msgid "Created on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +msgid "Display Name" +msgstr "" + +#. module: helpdesk_type +#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 +msgid "Document issue" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket +msgid "Helpdesk Ticket" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team +msgid "Helpdesk Ticket Team" +msgstr "" + +#. module: helpdesk_type +#: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type +#: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type +msgid "Helpdesk Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Helpdesk teams allowed to use this type." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +msgid "ID" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__write_date +msgid "Last Updated on" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name +msgid "Name" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required +msgid "Required Type field in Helpdesk portal" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type +#: model:ir.model.fields,help:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type +msgid "Select type in Helpdesk portal" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__show_in_portal +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type +msgid "Show type in portal form" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids +msgid "Teams" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "Ticket Type" +msgstr "" + +#. module: helpdesk_type +#: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type +msgid "Ticket Types" +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids +msgid "" +"Ticket Types the team will use. This team's tickets will only be able to use" +" those types." +msgstr "" + +#. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__type_id +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_type_form +#: model_terms:ir.ui.view,arch_db:helpdesk_type.helpdesk_ticket_view_search +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_create_ticket +#: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list +#: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type +msgid "Type" +msgstr "" From e5a2c2fd0c1d396f61b9953db9927f5480d21c8a Mon Sep 17 00:00:00 2001 From: Peter Dovicovic Date: Wed, 8 Apr 2026 13:50:04 +0000 Subject: [PATCH 91/99] Translated using Weblate (Slovak) Currently translated at 76.0% (19 of 25 strings) Translation: helpdesk-18.0/helpdesk-18.0-helpdesk_type Translate-URL: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type/sk/ --- helpdesk_type/i18n/sk.po | 42 +++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/helpdesk_type/i18n/sk.po b/helpdesk_type/i18n/sk.po index 785f3f3b32..c115385d3f 100644 --- a/helpdesk_type/i18n/sk.po +++ b/helpdesk_type/i18n/sk.po @@ -6,48 +6,50 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-04-08 13:54+0000\n" +"Last-Translator: Peter Dovicovic \n" "Language-Team: none\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 5.15.2\n" #. module: helpdesk_type #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_helpdesk_ticket_page msgid "Type:" -msgstr "" +msgstr "Typ:" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__active msgid "Active" -msgstr "" +msgstr "Aktívny" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__show_in_portal msgid "Allow to select type when creating a new ticket in the portal." -msgstr "" +msgstr "Povoliť výber typu pri zadávaní tiketu na portáli." #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_company msgid "Companies" -msgstr "" +msgstr "Spoločnosti" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_res_config_settings msgid "Config Settings" -msgstr "" +msgstr "Configurácie" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_uid msgid "Created by" -msgstr "" +msgstr "Vytvoril" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__create_date msgid "Created on" -msgstr "" +msgstr "Vytvorené" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name @@ -62,23 +64,23 @@ msgstr "" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" -msgstr "" +msgstr "Helpdesk tiket" #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_team msgid "Helpdesk Ticket Team" -msgstr "" +msgstr "Tím helpdesku" #. module: helpdesk_type #: model:ir.actions.act_window,name:helpdesk_type.action_helpdesk_ticket_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket_type msgid "Helpdesk Ticket Type" -msgstr "" +msgstr "Typ helpdesk tiketu" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_type__team_ids msgid "Helpdesk teams allowed to use this type." -msgstr "" +msgstr "Povolený tím využívať tento typ." #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id @@ -98,41 +100,41 @@ msgstr "" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__name msgid "Name" -msgstr "" +msgstr "Názov" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type_id_required #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type_id_required msgid "Required Type field in Helpdesk portal" -msgstr "" +msgstr "Vyžadované pre portál" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type #: model:ir.model.fields,help:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type msgid "Select type in Helpdesk portal" -msgstr "" +msgstr "Výber typu na portáli" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__show_in_portal #: model:ir.model.fields,field_description:helpdesk_type.field_res_company__helpdesk_mgmt_portal_type #: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__helpdesk_mgmt_portal_type msgid "Show type in portal form" -msgstr "" +msgstr "Zobraziť typ na portáli" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__team_ids msgid "Teams" -msgstr "" +msgstr "Tímy" #. module: helpdesk_type #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__type_ids msgid "Ticket Type" -msgstr "" +msgstr "Typ tiketu" #. module: helpdesk_type #: model:ir.ui.menu,name:helpdesk_type.helpdesk_ticket_type msgid "Ticket Types" -msgstr "" +msgstr "Typy tiketu" #. module: helpdesk_type #: model:ir.model.fields,help:helpdesk_type.field_helpdesk_ticket_team__type_ids @@ -149,4 +151,4 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:helpdesk_type.portal_ticket_list #: model_terms:ir.ui.view,arch_db:helpdesk_type.res_config_settings_view_form_inherit_select_type msgid "Type" -msgstr "" +msgstr "Typ" From 1f909c85d523e135fd800fc7679d729ea6cb3be8 Mon Sep 17 00:00:00 2001 From: meetscs Date: Mon, 27 Apr 2026 15:41:27 +0530 Subject: [PATCH 92/99] [IMP] helpdesk_type: pre-commit auto fixes --- helpdesk_type/README.rst | 10 +++++----- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/static/description/index.html | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 41aea36df1..113a3349fd 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -21,13 +21,13 @@ Helpdesk Ticket Type :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/18.0/helpdesk_type + :target: https://github.com/OCA/helpdesk/tree/19.0/helpdesk_type :alt: OCA/helpdesk .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_type + :target: https://translation.odoo-community.org/projects/helpdesk-19-0/helpdesk-19-0-helpdesk_type :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/helpdesk&target_branch=18.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/helpdesk&target_branch=19.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -57,7 +57,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. @@ -117,6 +117,6 @@ Current `maintainers `__: |maintainer-nelsonramirezs| |maintainer-max3903| -This module is part of the `OCA/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 0d4155425c..9d95f8b57f 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -7,7 +7,7 @@ "version": "18.0.1.2.1", "license": "AGPL-3", "summary": "Add a type to your tickets", - "author": "Konos, " "Open Source Integrators, " "Odoo Community Association (OCA)", + "author": "Konos, Open Source Integrators, Odoo Community Association (OCA)", "website": "https://github.com/OCA/helpdesk", "depends": ["helpdesk_mgmt"], "data": [ diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index 0deda93184..42bcf6069f 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -374,7 +374,7 @@

    Helpdesk Ticket Type

    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:4231d71aa1eaec9e9142aa0335e988ec3537bb110d4f37ab746e05c5441523c0 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

    +

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

    This module adds a type field on the helpdesk ticket.

    Table of contents

    @@ -409,7 +409,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.

    @@ -457,7 +457,7 @@

    Maintainers

    promote its widespread use.

    Current maintainers:

    nelsonramirezs max3903

    -

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

    +

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

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

    From edb1961660344c74739d256a4099abde7076f555 Mon Sep 17 00:00:00 2001 From: meetscs Date: Mon, 27 Apr 2026 15:48:49 +0530 Subject: [PATCH 93/99] [MIG] helpdesk_type: Migration to 19.0 --- helpdesk_type/__manifest__.py | 2 +- helpdesk_type/views/helpdesk_ticket.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helpdesk_type/__manifest__.py b/helpdesk_type/__manifest__.py index 9d95f8b57f..4df0bd8ea0 100644 --- a/helpdesk_type/__manifest__.py +++ b/helpdesk_type/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Helpdesk Ticket Type", - "version": "18.0.1.2.1", + "version": "19.0.1.0.0", "license": "AGPL-3", "summary": "Add a type to your tickets", "author": "Konos, Open Source Integrators, Odoo Community Association (OCA)", diff --git a/helpdesk_type/views/helpdesk_ticket.xml b/helpdesk_type/views/helpdesk_ticket.xml index d49f6574aa..7ea3d11d3c 100644 --- a/helpdesk_type/views/helpdesk_ticket.xml +++ b/helpdesk_type/views/helpdesk_ticket.xml @@ -49,7 +49,7 @@ helpdesk.ticket - + From 208f2b483555d41ab1fa2c82cfb8b03abc059dbb Mon Sep 17 00:00:00 2001 From: meetscs Date: Tue, 9 Jun 2026 13:53:49 +0530 Subject: [PATCH 94/99] [IMP] Applied Many2many tags widget on fields. --- helpdesk_type/views/helpdesk_ticket_type.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk_type/views/helpdesk_ticket_type.xml b/helpdesk_type/views/helpdesk_ticket_type.xml index 3a9a5ce205..5b837a7001 100644 --- a/helpdesk_type/views/helpdesk_ticket_type.xml +++ b/helpdesk_type/views/helpdesk_ticket_type.xml @@ -8,7 +8,7 @@
    - +
    From 2aaf40df893be24de54347633c55d20f4846b394 Mon Sep 17 00:00:00 2001 From: meetscs Date: Mon, 27 Apr 2026 16:59:53 +0530 Subject: [PATCH 95/99] [MIG] helpdesk_product: Migration to 19.0 --- helpdesk_product/README.rst | 10 +++++----- helpdesk_product/__manifest__.py | 4 ++-- helpdesk_product/static/description/index.html | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst index c9f50c3ade..288da1414d 100644 --- a/helpdesk_product/README.rst +++ b/helpdesk_product/README.rst @@ -21,13 +21,13 @@ Helpdesk Product :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhelpdesk-lightgray.png?logo=github - :target: https://github.com/OCA/helpdesk/tree/18.0/helpdesk_product + :target: https://github.com/OCA/helpdesk/tree/19.0/helpdesk_product :alt: OCA/helpdesk .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/helpdesk-18-0/helpdesk-18-0-helpdesk_product + :target: https://translation.odoo-community.org/projects/helpdesk-19-0/helpdesk-19-0-helpdesk_product :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/helpdesk&target_branch=18.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/helpdesk&target_branch=19.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -45,7 +45,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. @@ -77,6 +77,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/helpdesk `_ project on GitHub. +This module is part of the `OCA/helpdesk `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/helpdesk_product/__manifest__.py b/helpdesk_product/__manifest__.py index 639a1291a7..acd20c79a6 100644 --- a/helpdesk_product/__manifest__.py +++ b/helpdesk_product/__manifest__.py @@ -1,8 +1,8 @@ { "name": "Helpdesk Product", "summary": "Add the option to select product in the tickets.", - "author": "ForgeFlow, " "Odoo Community Association (OCA)", - "version": "18.0.1.0.1", + "author": "ForgeFlow, Odoo Community Association (OCA)", + "version": "19.0.1.0.0", "license": "AGPL-3", "category": "After-Sales", "website": "https://github.com/OCA/helpdesk", diff --git a/helpdesk_product/static/description/index.html b/helpdesk_product/static/description/index.html index 3ecc1abfba..a4785bf8aa 100644 --- a/helpdesk_product/static/description/index.html +++ b/helpdesk_product/static/description/index.html @@ -374,7 +374,7 @@

    Helpdesk Product

    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:5d86e3fcf27e3e6839cbe246221ad91b272cda33f91e6ba1e32c99c04a2486c1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

    +

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

    This module adds the option to select product in the helpdesk tickets.

    Table of contents

    @@ -393,7 +393,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.

    @@ -422,7 +422,7 @@

    Maintainers

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

    +

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

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

    From 2712d60318e633750a3d542dbb47321881488b6b Mon Sep 17 00:00:00 2001 From: oca-ci Date: Thu, 11 Jun 2026 18:02:29 +0000 Subject: [PATCH 96/99] [UPD] Update helpdesk_product.pot --- helpdesk_product/i18n/helpdesk_product.pot | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/helpdesk_product/i18n/helpdesk_product.pot b/helpdesk_product/i18n/helpdesk_product.pot index d0a7f834bd..b315829c05 100644 --- a/helpdesk_product/i18n/helpdesk_product.pot +++ b/helpdesk_product/i18n/helpdesk_product.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 18.0\n" +"Project-Id-Version: Odoo Server 19.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" @@ -29,6 +29,12 @@ msgstr "" msgid "Create a new product" msgstr "" +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__display_name +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__display_name +msgid "Display Name" +msgstr "" + #. module: helpdesk_product #: model_terms:ir.ui.view,arch_db:helpdesk_product.product_view_template msgid "Helpdesk" @@ -39,6 +45,12 @@ msgstr "" msgid "Helpdesk Ticket" msgstr "" +#. module: helpdesk_product +#: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__id +#: model:ir.model.fields,field_description:helpdesk_product.field_product_template__id +msgid "ID" +msgstr "" + #. module: helpdesk_product #: model:ir.model,name:helpdesk_product.model_product_template #: model:ir.model.fields,field_description:helpdesk_product.field_helpdesk_ticket__product_id From 1ed3c5fe36a8ec330cc0434aff541014f71387f6 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 11 Jun 2026 18:04:58 +0000 Subject: [PATCH 97/99] [BOT] post-merge updates --- README.md | 1 + helpdesk_product/README.rst | 2 +- helpdesk_product/static/description/index.html | 2 +- setup/_metapackage/pyproject.toml | 3 ++- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index afba5df7fd..a74da75ce1 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Available addons addon | version | maintainers | summary --- | --- | --- | --- [helpdesk_mgmt](helpdesk_mgmt/) | 19.0.1.1.0 | | Helpdesk +[helpdesk_product](helpdesk_product/) | 19.0.1.0.0 | | Add the option to select product in the tickets. [//]: # (end addons) diff --git a/helpdesk_product/README.rst b/helpdesk_product/README.rst index 288da1414d..ff36f2476d 100644 --- a/helpdesk_product/README.rst +++ b/helpdesk_product/README.rst @@ -11,7 +11,7 @@ Helpdesk Product !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:5d86e3fcf27e3e6839cbe246221ad91b272cda33f91e6ba1e32c99c04a2486c1 + !! source digest: sha256:50b627b43f4db5e3056ce7640b144b1608c52a100c6a0505ba0f4a1f9cd64144 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/helpdesk_product/static/description/index.html b/helpdesk_product/static/description/index.html index a4785bf8aa..757fa5c837 100644 --- a/helpdesk_product/static/description/index.html +++ b/helpdesk_product/static/description/index.html @@ -372,7 +372,7 @@

    Helpdesk Product

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:5d86e3fcf27e3e6839cbe246221ad91b272cda33f91e6ba1e32c99c04a2486c1 +!! source digest: sha256:50b627b43f4db5e3056ce7640b144b1608c52a100c6a0505ba0f4a1f9cd64144 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

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

    This module adds the option to select product in the helpdesk tickets.

    diff --git a/setup/_metapackage/pyproject.toml b/setup/_metapackage/pyproject.toml index f93db99d13..75de77d682 100644 --- a/setup/_metapackage/pyproject.toml +++ b/setup/_metapackage/pyproject.toml @@ -1,8 +1,9 @@ [project] name = "odoo-addons-oca-helpdesk" -version = "19.0.20260602.0" +version = "19.0.20260611.0" dependencies = [ "odoo-addon-helpdesk_mgmt==19.0.*", + "odoo-addon-helpdesk_product==19.0.*", ] classifiers=[ "Programming Language :: Python", From 6e1cb0f10dea55e908bc4d584f7d549c0ccc2985 Mon Sep 17 00:00:00 2001 From: oca-ci Date: Thu, 11 Jun 2026 18:10:20 +0000 Subject: [PATCH 98/99] [UPD] Update helpdesk_type.pot --- helpdesk_type/i18n/helpdesk_type.pot | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/helpdesk_type/i18n/helpdesk_type.pot b/helpdesk_type/i18n/helpdesk_type.pot index 152aa688e7..fbe71c1b7b 100644 --- a/helpdesk_type/i18n/helpdesk_type.pot +++ b/helpdesk_type/i18n/helpdesk_type.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 18.0\n" +"Project-Id-Version: Odoo Server 19.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" @@ -49,15 +49,14 @@ msgid "Created on" msgstr "" #. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__display_name #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__display_name +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__display_name msgid "Display Name" msgstr "" -#. module: helpdesk_type -#: model:helpdesk.ticket.type,name:helpdesk_type.helpdesk_type_1 -msgid "Document issue" -msgstr "" - #. module: helpdesk_type #: model:ir.model,name:helpdesk_type.model_helpdesk_ticket msgid "Helpdesk Ticket" @@ -80,7 +79,11 @@ msgid "Helpdesk teams allowed to use this type." msgstr "" #. module: helpdesk_type +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket__id +#: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_team__id #: model:ir.model.fields,field_description:helpdesk_type.field_helpdesk_ticket_type__id +#: model:ir.model.fields,field_description:helpdesk_type.field_res_company__id +#: model:ir.model.fields,field_description:helpdesk_type.field_res_config_settings__id msgid "ID" msgstr "" From ebfd991fe9c491e7d8dfd27493280738d67f9f00 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 11 Jun 2026 18:13:01 +0000 Subject: [PATCH 99/99] [BOT] post-merge updates --- README.md | 1 + helpdesk_type/README.rst | 2 +- helpdesk_type/static/description/index.html | 2 +- setup/_metapackage/pyproject.toml | 3 ++- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a74da75ce1..ea09ba914d 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ addon | version | maintainers | summary --- | --- | --- | --- [helpdesk_mgmt](helpdesk_mgmt/) | 19.0.1.1.0 | | Helpdesk [helpdesk_product](helpdesk_product/) | 19.0.1.0.0 | | Add the option to select product in the tickets. +[helpdesk_type](helpdesk_type/) | 19.0.1.0.0 | nelsonramirezs max3903 | Add a type to your tickets [//]: # (end addons) diff --git a/helpdesk_type/README.rst b/helpdesk_type/README.rst index 113a3349fd..837309df76 100644 --- a/helpdesk_type/README.rst +++ b/helpdesk_type/README.rst @@ -11,7 +11,7 @@ Helpdesk Ticket Type !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:4231d71aa1eaec9e9142aa0335e988ec3537bb110d4f37ab746e05c5441523c0 + !! source digest: sha256:dc46d47ec0d6f961c829ce2ea53fa43b22dd671135c961d36a656517c48586e6 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/helpdesk_type/static/description/index.html b/helpdesk_type/static/description/index.html index 42bcf6069f..cde07a14f7 100644 --- a/helpdesk_type/static/description/index.html +++ b/helpdesk_type/static/description/index.html @@ -372,7 +372,7 @@

    Helpdesk Ticket Type

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:4231d71aa1eaec9e9142aa0335e988ec3537bb110d4f37ab746e05c5441523c0 +!! source digest: sha256:dc46d47ec0d6f961c829ce2ea53fa43b22dd671135c961d36a656517c48586e6 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

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

    This module adds a type field on the helpdesk ticket.

    diff --git a/setup/_metapackage/pyproject.toml b/setup/_metapackage/pyproject.toml index 75de77d682..4240aba161 100644 --- a/setup/_metapackage/pyproject.toml +++ b/setup/_metapackage/pyproject.toml @@ -1,9 +1,10 @@ [project] name = "odoo-addons-oca-helpdesk" -version = "19.0.20260611.0" +version = "19.0.20260611.1" dependencies = [ "odoo-addon-helpdesk_mgmt==19.0.*", "odoo-addon-helpdesk_product==19.0.*", + "odoo-addon-helpdesk_type==19.0.*", ] classifiers=[ "Programming Language :: Python",