Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[17.0][MIG] purchase_tag #2140

Merged
merged 18 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions purchase_tag/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
=============
Purchase Tags
=============

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:5a4077180ca35330dc5f9467e43ce635eb0733c8f4b8114917aca5b784833a4a
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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%2Fpurchase--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/purchase-workflow/tree/17.0/purchase_tag
:alt: OCA/purchase-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/purchase-workflow-17-0/purchase-workflow-17-0-purchase_tag
: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/purchase-workflow&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allows to add multiple tags to purchase orders

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to go to Purchase Orders and select tags.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-workflow/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/purchase-workflow/issues/new?body=module:%20purchase_tag%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* ForgeFlow

Contributors
------------

- Jasmin Solanki <jasmin.solanki@forgeflow.com>

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/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/17.0/purchase_tag>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions purchase_tag/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from . import models
21 changes: 21 additions & 0 deletions purchase_tag/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2022 ForgeFlow S.L.
# (http://www.forgeflow.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

{
"name": "Purchase Tags",
"summary": "Allows to add multiple tags to purchase orders",
"version": "17.0.1.0.0",
"author": "ForgeFlow, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/purchase-workflow",
"category": "Purchases",
"depends": ["purchase"],
"data": [
"security/ir.model.access.csv",
"views/purchase_view.xml",
"views/purchase_tag_view.xml",
],
"license": "AGPL-3",
"installable": True,
"application": False,
}
90 changes: 90 additions & 0 deletions purchase_tag/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * purchase_tag
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-09-03 13:40+0000\n"
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\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 4.17\n"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__color
msgid "Color"
msgstr "Color"

#. module: purchase_tag
#: model_terms:ir.actions.act_window,help:purchase_tag.purchase_tag_action
msgid "Create new tags for your purchase orders"
msgstr "Crea nuevas etiquetas para tus órdenes de compra"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__create_uid
msgid "Created by"
msgstr "Creado por"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__create_date
msgid "Created on"
msgstr "Creado el"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__display_name
msgid "Display Name"
msgstr "Mostrar Nombre"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__id
msgid "ID"
msgstr "ID (identificación)"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag____last_update
msgid "Last Modified on"
msgstr "Última Modificación el"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__write_uid
msgid "Last Updated by"
msgstr "Actualizado por última vez por"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__write_date
msgid "Last Updated on"
msgstr "Última Actualización el"

#. module: purchase_tag
#: model:ir.model,name:purchase_tag.model_purchase_order
msgid "Purchase Order"
msgstr "Orden de compra"

#. module: purchase_tag
#: model:ir.model,name:purchase_tag.model_purchase_tag
msgid "Purchase Tag"
msgstr "Etiqueta de compra"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__name
msgid "Tag Name"
msgstr "Nombre de etiqueta"

#. module: purchase_tag
#: model:ir.model.constraint,message:purchase_tag.constraint_purchase_tag_tag_name_uniq
msgid "Tag name already exists !"
msgstr "¡El nombre de etiqueta ya existe!"

#. module: purchase_tag
#: model:ir.actions.act_window,name:purchase_tag.purchase_tag_action
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_order__tag_ids
#: model:ir.ui.menu,name:purchase_tag.menu_purchase_tag_config
#: model_terms:ir.ui.view,arch_db:purchase_tag.purchase_tag_view_form
msgid "Tags"
msgstr "Etiquetas"
90 changes: 90 additions & 0 deletions purchase_tag/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * purchase_tag
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-22 14:36+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\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: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__color
msgid "Color"
msgstr "Colore"

#. module: purchase_tag
#: model_terms:ir.actions.act_window,help:purchase_tag.purchase_tag_action
msgid "Create new tags for your purchase orders"
msgstr "Crea nuove etichette per gli ordini di acquisto"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__create_uid
msgid "Created by"
msgstr "Creato da"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__create_date
msgid "Created on"
msgstr "Creato il"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__display_name
msgid "Display Name"
msgstr "Nome visualizzato"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__id
msgid "ID"
msgstr "ID"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag____last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__write_uid
msgid "Last Updated by"
msgstr "Ultimo aggiornamento di"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__write_date
msgid "Last Updated on"
msgstr "Ultimo aggiornamento il"

#. module: purchase_tag
#: model:ir.model,name:purchase_tag.model_purchase_order
msgid "Purchase Order"
msgstr "Ordine di acquisto"

#. module: purchase_tag
#: model:ir.model,name:purchase_tag.model_purchase_tag
msgid "Purchase Tag"
msgstr "Etichetta acquisti"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__name
msgid "Tag Name"
msgstr "Nome etichetta"

#. module: purchase_tag
#: model:ir.model.constraint,message:purchase_tag.constraint_purchase_tag_tag_name_uniq
msgid "Tag name already exists !"
msgstr "Il nome etichetta esiste già!"

#. module: purchase_tag
#: model:ir.actions.act_window,name:purchase_tag.purchase_tag_action
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_order__tag_ids
#: model:ir.ui.menu,name:purchase_tag.menu_purchase_tag_config
#: model_terms:ir.ui.view,arch_db:purchase_tag.purchase_tag_view_form
msgid "Tags"
msgstr "Etichette"
90 changes: 90 additions & 0 deletions purchase_tag/i18n/pt_BR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * purchase_tag
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-10-29 08:31+0000\n"
"Last-Translator: Adriano Prado <adrianojprado@gmail.com>\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: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__color
msgid "Color"
msgstr "Cor"

#. module: purchase_tag
#: model_terms:ir.actions.act_window,help:purchase_tag.purchase_tag_action
msgid "Create new tags for your purchase orders"
msgstr "Crie novos marcadores para seus pedidos de compra"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__create_uid
msgid "Created by"
msgstr "Criado por"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__create_date
msgid "Created on"
msgstr "Criado em"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__display_name
msgid "Display Name"
msgstr "Nome Exibição"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__id
msgid "ID"
msgstr "ID"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag____last_update
msgid "Last Modified on"
msgstr "Última Modificação em"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__write_uid
msgid "Last Updated by"
msgstr "Última Atualização por"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__write_date
msgid "Last Updated on"
msgstr "Última Atualização em"

#. module: purchase_tag
#: model:ir.model,name:purchase_tag.model_purchase_order
msgid "Purchase Order"
msgstr "Pedido de Compra"

#. module: purchase_tag
#: model:ir.model,name:purchase_tag.model_purchase_tag
msgid "Purchase Tag"
msgstr "Marcador Compra"

#. module: purchase_tag
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_tag__name
msgid "Tag Name"
msgstr "Nome do Marcador"

#. module: purchase_tag
#: model:ir.model.constraint,message:purchase_tag.constraint_purchase_tag_tag_name_uniq
msgid "Tag name already exists !"
msgstr "Marcador já Existe!"

#. module: purchase_tag
#: model:ir.actions.act_window,name:purchase_tag.purchase_tag_action
#: model:ir.model.fields,field_description:purchase_tag.field_purchase_order__tag_ids
#: model:ir.ui.menu,name:purchase_tag.menu_purchase_tag_config
#: model_terms:ir.ui.view,arch_db:purchase_tag.purchase_tag_view_form
msgid "Tags"
msgstr "Marcadores"
Loading