diff --git a/product_quick_bom/README.rst b/product_quick_bom/README.rst new file mode 100644 index 000000000..9196c5bc3 --- /dev/null +++ b/product_quick_bom/README.rst @@ -0,0 +1,93 @@ +================= +Product Quick Bom +================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fmanufacture-lightgray.png?logo=github + :target: https://github.com/OCA/manufacture/tree/13.0/product_quick_bom + :alt: OCA/manufacture +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-product_quick_bom + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/129/13.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module was written to be able to quickly create the BoM for your product. There is a new "Bill of Materials" tab in the product form view that allows the user to add a BoM and its lines directly. + +Beware that this functionality is relevant only when one product template has one Bill of Materials, and works only for product templates for simplicity's sake. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Go to product form view, click on edit, use the BoM lines field. If there is no BoM for the product yet, you can quickly create one by clicking on the "Create BoM" button. + +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 +~~~~~~~ + +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Sébastien Beau +* Kevin Khao +* Pimolnat Suntian + +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-sebastienbeau| image:: https://github.com/sebastienbeau.png?size=40px + :target: https://github.com/sebastienbeau + :alt: sebastienbeau +.. |maintainer-kevinkhao| image:: https://github.com/kevinkhao.png?size=40px + :target: https://github.com/kevinkhao + :alt: kevinkhao + +Current `maintainers `__: + +|maintainer-sebastienbeau| |maintainer-kevinkhao| + +This module is part of the `OCA/manufacture `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/product_quick_bom/__init__.py b/product_quick_bom/__init__.py new file mode 100644 index 000000000..1732d15e5 --- /dev/null +++ b/product_quick_bom/__init__.py @@ -0,0 +1,4 @@ +# Copyright (C) 2015 Akretion (http://www.akretion.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/product_quick_bom/__manifest__.py b/product_quick_bom/__manifest__.py new file mode 100644 index 000000000..2796dd87b --- /dev/null +++ b/product_quick_bom/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright (C) 2015 Akretion (http://www.akretion.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Product Quick Bom", + "summary": "Create the bom directly from the product", + "version": "13.0.1.0.0", + "category": "mrp", + "website": "https://github.com/OCA/manufacture", + "author": "Akretion, Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": False, + "installable": True, + "depends": ["mrp"], + "data": ["views/product_view.xml"], + "maintainers": ["sebastienbeau", "kevinkhao"], +} diff --git a/product_quick_bom/i18n/ca.po b/product_quick_bom/i18n/ca.po new file mode 100644 index 000000000..3ba2463e2 --- /dev/null +++ b/product_quick_bom/i18n/ca.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Plantilla del producte" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Producte" diff --git a/product_quick_bom/i18n/de.po b/product_quick_bom/i18n/de.po new file mode 100644 index 000000000..d3ce9f3d5 --- /dev/null +++ b/product_quick_bom/i18n/de.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2018-12-10 11:58+0000\n" +"Last-Translator: Maria Sparenberg \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\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.3\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials" +msgstr "Stückliste" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials (quick access)" +msgstr "Stückliste" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +#, fuzzy +#| msgid "Bom Line" +msgid "BoM Lines" +msgstr "Stücklistenposition" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Produktvorlage" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Bom line" +#~ msgstr "Stücklistenposition" + +#~ msgid "" +#~ "If your product is manufactured you can select here the component to " +#~ "produce them" +#~ msgstr "" +#~ "Wenn das Produkt gefertigt wird, können hier die Komponenten gewählt " +#~ "werden, die zur Produktion nötig sind" + +#~ msgid "Product" +#~ msgstr "Produkt" + +#~ msgid "You can only have one Bom per product template" +#~ msgstr "Es darf nur eine Stückliste für eine Produktvorlage existieren" + +#~ msgid "mrp.bom.line" +#~ msgstr "mrp.bom.line" diff --git a/product_quick_bom/i18n/el_GR.po b/product_quick_bom/i18n/el_GR.po new file mode 100644 index 000000000..f4143a429 --- /dev/null +++ b/product_quick_bom/i18n/el_GR.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Προϊόν" diff --git a/product_quick_bom/i18n/es.po b/product_quick_bom/i18n/es.po new file mode 100644 index 000000000..ee7a564bd --- /dev/null +++ b/product_quick_bom/i18n/es.po @@ -0,0 +1,66 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +# enjolras , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: enjolras , 2018\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\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" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Producto" + +#~ msgid "mrp.bom.line" +#~ msgstr "mrp.bom.line" diff --git a/product_quick_bom/i18n/es_ES.po b/product_quick_bom/i18n/es_ES.po new file mode 100644 index 000000000..ae6f95638 --- /dev/null +++ b/product_quick_bom/i18n/es_ES.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_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" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Producto" diff --git a/product_quick_bom/i18n/es_MX.po b/product_quick_bom/i18n/es_MX.po new file mode 100644 index 000000000..c873821e8 --- /dev/null +++ b/product_quick_bom/i18n/es_MX.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Plantilla del producto" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" diff --git a/product_quick_bom/i18n/eu.po b/product_quick_bom/i18n/eu.po new file mode 100644 index 000000000..38691648c --- /dev/null +++ b/product_quick_bom/i18n/eu.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Produktua" diff --git a/product_quick_bom/i18n/fi.po b/product_quick_bom/i18n/fi.po new file mode 100644 index 000000000..81bdf557b --- /dev/null +++ b/product_quick_bom/i18n/fi.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Tuotteen malli" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Tuote" diff --git a/product_quick_bom/i18n/fr.po b/product_quick_bom/i18n/fr.po new file mode 100644 index 000000000..66b98432a --- /dev/null +++ b/product_quick_bom/i18n/fr.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2018-09-26 08:29+0000\n" +"Last-Translator: William Olhasque \n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\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 3.1.1\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials" +msgstr "Nomenclature" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials (quick access)" +msgstr "Nomenclature" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +#, fuzzy +#| msgid "Bom Line" +msgid "BoM Lines" +msgstr "Ligne de nomenclature" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Modèle d'article" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Bom line" +#~ msgstr "Ligne de nomenclature" + +#~ msgid "" +#~ "If your product is manufactured you can select here the component to " +#~ "produce them" +#~ msgstr "" +#~ "Si votre produit est fabriqué, vous pouvez sélectionner ici les " +#~ "composants pour le produire" + +#~ msgid "Product" +#~ msgstr "Article" + +#~ msgid "You can only have one Bom per product template" +#~ msgstr "Vous ne pouvez avoir qu'une nomenclature par modèle de produit" + +#~ msgid "mrp.bom.line" +#~ msgstr "Ligne de nomenclature" diff --git a/product_quick_bom/i18n/fr_CH.po b/product_quick_bom/i18n/fr_CH.po new file mode 100644 index 000000000..33c8a6e00 --- /dev/null +++ b/product_quick_bom/i18n/fr_CH.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Template de produit" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Produit" diff --git a/product_quick_bom/i18n/fr_FR.po b/product_quick_bom/i18n/fr_FR.po new file mode 100644 index 000000000..ff879f560 --- /dev/null +++ b/product_quick_bom/i18n/fr_FR.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Produit" diff --git a/product_quick_bom/i18n/gl.po b/product_quick_bom/i18n/gl.po new file mode 100644 index 000000000..037a5ac99 --- /dev/null +++ b/product_quick_bom/i18n/gl.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Produto" diff --git a/product_quick_bom/i18n/hr.po b/product_quick_bom/i18n/hr.po new file mode 100644 index 000000000..a7fa24e3b --- /dev/null +++ b/product_quick_bom/i18n/hr.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\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==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials" +msgstr "Sastavnica" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials (quick access)" +msgstr "Sastavnica" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +#, fuzzy +#| msgid "Bom Line" +msgid "BoM Lines" +msgstr "Stavka sastavnice" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Bom line" +#~ msgstr "Stavka sastavnice" + +#~ msgid "" +#~ "If your product is manufactured you can select here the component to " +#~ "produce them" +#~ msgstr "" +#~ "Ako se vaš proizvod proizvodi ovdje možete odrediti componentu za " +#~ "proizvodnju." + +#~ msgid "Product" +#~ msgstr "Proizvod" + +#~ msgid "You can only have one Bom per product template" +#~ msgstr "Možete imati samo jednu sastavnicu za predložak proizvoda" + +#~ msgid "mrp.bom.line" +#~ msgstr "mrp.bom.line" diff --git a/product_quick_bom/i18n/hr_HR.po b/product_quick_bom/i18n/hr_HR.po new file mode 100644 index 000000000..e358bbdad --- /dev/null +++ b/product_quick_bom/i18n/hr_HR.po @@ -0,0 +1,64 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\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==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Proizvod" diff --git a/product_quick_bom/i18n/it.po b/product_quick_bom/i18n/it.po new file mode 100644 index 000000000..e231ca8cd --- /dev/null +++ b/product_quick_bom/i18n/it.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Template prodotto" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Prodotto " diff --git a/product_quick_bom/i18n/lt.po b/product_quick_bom/i18n/lt.po new file mode 100644 index 000000000..61256a1f4 --- /dev/null +++ b/product_quick_bom/i18n/lt.po @@ -0,0 +1,64 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# Viktoras Norkus , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 08:02+0000\n" +"PO-Revision-Date: 2018-01-16 08:02+0000\n" +"Last-Translator: Viktoras Norkus , 2018\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\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==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials" +msgstr "Sąskaita už žaliavas" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials (quick access)" +msgstr "Sąskaita už žaliavas" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" diff --git a/product_quick_bom/i18n/nl.po b/product_quick_bom/i18n/nl.po new file mode 100644 index 000000000..8ffb7ed3d --- /dev/null +++ b/product_quick_bom/i18n/nl.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Product" diff --git a/product_quick_bom/i18n/nl_NL.po b/product_quick_bom/i18n/nl_NL.po new file mode 100644 index 000000000..c13403463 --- /dev/null +++ b/product_quick_bom/i18n/nl_NL.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Product" diff --git a/product_quick_bom/i18n/product_quick_bom.pot b/product_quick_bom/i18n/product_quick_bom.pot new file mode 100644 index 000000000..ef4011b9f --- /dev/null +++ b/product_quick_bom/i18n/product_quick_bom.pot @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "The product doesn't have a BoM yet, you must create one before updating its components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + diff --git a/product_quick_bom/i18n/pt.po b/product_quick_bom/i18n/pt.po new file mode 100644 index 000000000..3d4bdf8b0 --- /dev/null +++ b/product_quick_bom/i18n/pt.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2019-06-07 19:20+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\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 3.6.1\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials" +msgstr "Lista de Materiais" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +#, fuzzy +#| msgid "Bill of Material" +msgid "Bill of Materials (quick access)" +msgstr "Lista de Materiais" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +#, fuzzy +#| msgid "Bom Line" +msgid "BoM Lines" +msgstr "Linha de LdM" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Modelo de Produto" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Bom line" +#~ msgstr "Linha de LdM" + +#~ msgid "" +#~ "If your product is manufactured you can select here the component to " +#~ "produce them" +#~ msgstr "" +#~ "Se o seu produto é fabricado pode aqui selecionar os componentes para o " +#~ "produzir" + +#~ msgid "Product" +#~ msgstr "Produto" + +#~ msgid "You can only have one Bom per product template" +#~ msgstr "Só pode ter uma LdM para cada modelo de produto" diff --git a/product_quick_bom/i18n/pt_BR.po b/product_quick_bom/i18n/pt_BR.po new file mode 100644 index 000000000..032681ccd --- /dev/null +++ b/product_quick_bom/i18n/pt_BR.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Produto Modelo" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Produto" diff --git a/product_quick_bom/i18n/ro.po b/product_quick_bom/i18n/ro.po new file mode 100644 index 000000000..f97f1d92a --- /dev/null +++ b/product_quick_bom/i18n/ro.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\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%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Produs șablon" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Produs" diff --git a/product_quick_bom/i18n/ru.po b/product_quick_bom/i18n/ru.po new file mode 100644 index 000000000..355321416 --- /dev/null +++ b/product_quick_bom/i18n/ru.po @@ -0,0 +1,64 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Товар/Услуга" diff --git a/product_quick_bom/i18n/sk.po b/product_quick_bom/i18n/sk.po new file mode 100644 index 000000000..5914d3b86 --- /dev/null +++ b/product_quick_bom/i18n/sk.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Produkt" diff --git a/product_quick_bom/i18n/sl.po b/product_quick_bom/i18n/sl.po new file mode 100644 index 000000000..61de9b797 --- /dev/null +++ b/product_quick_bom/i18n/sl.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Predloga proizvoda" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Proizvod" diff --git a/product_quick_bom/i18n/tr.po b/product_quick_bom/i18n/tr.po new file mode 100644 index 000000000..fabffdac3 --- /dev/null +++ b/product_quick_bom/i18n/tr.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\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: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Ürün" diff --git a/product_quick_bom/i18n/tr_TR.po b/product_quick_bom/i18n/tr_TR.po new file mode 100644 index 000000000..db61d1212 --- /dev/null +++ b/product_quick_bom/i18n/tr_TR.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Ürün şablonu" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Ürün" diff --git a/product_quick_bom/i18n/vi_VN.po b/product_quick_bom/i18n/vi_VN.po new file mode 100644 index 000000000..184dfa312 --- /dev/null +++ b/product_quick_bom/i18n/vi_VN.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "Mẫu sản phẩm" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "Sản phẩm" diff --git a/product_quick_bom/i18n/zh_CN.po b/product_quick_bom/i18n/zh_CN.po new file mode 100644 index 000000000..598ee65af --- /dev/null +++ b/product_quick_bom/i18n/zh_CN.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_quick_bom +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Bill of Materials" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__bom_id +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__bom_id +msgid "Bill of Materials (quick access)" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model.fields,field_description:product_quick_bom.field_product_product__specific_bom_line_ids +#: model:ir.model.fields,field_description:product_quick_bom.field_product_template__specific_bom_line_ids +msgid "BoM Lines" +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "Create BoM" +msgstr "" + +#. module: product_quick_bom +#: model:ir.model,name:product_quick_bom.model_product_template +msgid "Product Template" +msgstr "产品模板" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product doesn't have a BoM yet, you must create one before updating its " +"components." +msgstr "" + +#. module: product_quick_bom +#: model_terms:ir.ui.view,arch_db:product_quick_bom.product_template_only_form_view_bomlines +msgid "" +"The product is linked to several BoMs, modifications must be done BoM-side." +msgstr "" + +#~ msgid "Product" +#~ msgstr "产品" diff --git a/product_quick_bom/models/__init__.py b/product_quick_bom/models/__init__.py new file mode 100644 index 000000000..c60fd5138 --- /dev/null +++ b/product_quick_bom/models/__init__.py @@ -0,0 +1,4 @@ +# Copyright (C) 2015 Akretion (http://www.akretion.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import product diff --git a/product_quick_bom/models/product.py b/product_quick_bom/models/product.py new file mode 100644 index 000000000..6dfa34586 --- /dev/null +++ b/product_quick_bom/models/product.py @@ -0,0 +1,34 @@ +# Copyright (C) 2015 Akretion (http://www.akretion.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + @api.depends("bom_ids") + def _compute_bom_id(self): + for rec in self: + if len(rec.bom_ids.ids) == 1: + rec.bom_id = rec.bom_ids[0] + else: + rec.bom_id = self.env["mrp.bom"] + + bom_id = fields.Many2one( + comodel_name="mrp.bom", + string="Bill of Materials (quick access)", + compute="_compute_bom_id", + store=True, + ) + + # In case there is no bom_id yet, to simplify logic + # we just add a button to create one + def button_create_bom(self): + self.ensure_one() + vals = {"product_tmpl_id": self.id, "type": "normal"} + self.env["mrp.bom"].create(vals) + + specific_bom_line_ids = fields.One2many( + related="bom_id.bom_line_ids", readonly=False + ) diff --git a/product_quick_bom/readme/CONTRIBUTORS.rst b/product_quick_bom/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..0348cbe5c --- /dev/null +++ b/product_quick_bom/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Sébastien Beau +* Kevin Khao +* Pimolnat Suntian diff --git a/product_quick_bom/readme/DESCRIPTION.rst b/product_quick_bom/readme/DESCRIPTION.rst new file mode 100644 index 000000000..2af97755a --- /dev/null +++ b/product_quick_bom/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This module was written to be able to quickly create the BoM for your product. There is a new "Bill of Materials" tab in the product form view that allows the user to add a BoM and its lines directly. + +Beware that this functionality is relevant only when one product template has one Bill of Materials, and works only for product templates for simplicity's sake. diff --git a/product_quick_bom/readme/USAGE.rst b/product_quick_bom/readme/USAGE.rst new file mode 100644 index 000000000..c94b325ec --- /dev/null +++ b/product_quick_bom/readme/USAGE.rst @@ -0,0 +1 @@ +Go to product form view, click on edit, use the BoM lines field. If there is no BoM for the product yet, you can quickly create one by clicking on the "Create BoM" button. diff --git a/product_quick_bom/static/description/icon.png b/product_quick_bom/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/product_quick_bom/static/description/icon.png differ diff --git a/product_quick_bom/static/description/icon.svg b/product_quick_bom/static/description/icon.svg new file mode 100644 index 000000000..a7a26d093 --- /dev/null +++ b/product_quick_bom/static/description/icon.svg @@ -0,0 +1,79 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/product_quick_bom/static/description/index.html b/product_quick_bom/static/description/index.html new file mode 100644 index 000000000..edcee027b --- /dev/null +++ b/product_quick_bom/static/description/index.html @@ -0,0 +1,429 @@ + + + + + + +Product Quick Bom + + + +
+

Product Quick Bom

+ + +

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

+

This module was written to be able to quickly create the BoM for your product. There is a new “Bill of Materials” tab in the product form view that allows the user to add a BoM and its lines directly.

+

Beware that this functionality is relevant only when one product template has one Bill of Materials, and works only for product templates for simplicity’s sake.

+

Table of contents

+ +
+

Usage

+

Go to product form view, click on edit, use the BoM lines field. If there is no BoM for the product yet, you can quickly create one by clicking on the “Create BoM” button.

+
+
+

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

+
    +
  • Akretion
  • +
+
+
+

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:

+

sebastienbeau kevinkhao

+

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

+

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

+
+
+
+ + diff --git a/product_quick_bom/tests/__init__.py b/product_quick_bom/tests/__init__.py new file mode 100644 index 000000000..7f893d1fe --- /dev/null +++ b/product_quick_bom/tests/__init__.py @@ -0,0 +1 @@ +from . import test_quick_bom diff --git a/product_quick_bom/tests/test_quick_bom.py b/product_quick_bom/tests/test_quick_bom.py new file mode 100644 index 000000000..e25f768f0 --- /dev/null +++ b/product_quick_bom/tests/test_quick_bom.py @@ -0,0 +1,56 @@ +# Copyright (C) 2015 Akretion (http://www.akretion.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import logging + +from odoo.tests.common import TransactionCase + +_logger = logging.getLogger(__name__) + + +class TestQuickBom(TransactionCase): + def setUp(self): + # as we test new BoMs that must not already exist in demo data, + # bolt + screw + ply = lamp + super().setUp() + self.prd_1 = self.env.ref("mrp.product_product_computer_desk_bolt") + self.prd_2 = self.env.ref("mrp.product_product_computer_desk_screw") + self.prd_3 = self.env.ref("mrp.product_product_wood_ply") + self.tmpl_4 = self.env.ref("product.product_delivery_02_product_template") + + def test_create_bom(self): + self.tmpl_4.button_create_bom() + self.tmpl_4.write( + { + "specific_bom_line_ids": [ + (0, 0, {"product_id": self.prd_1.id, "product_qty": 2}), + (0, 0, {"product_id": self.prd_2.id, "product_qty": 2}), + (0, 0, {"product_id": self.prd_3.id, "product_qty": 1}), + ] + } + ) + bom = self.tmpl_4.bom_id + self.assertEqual(self.tmpl_4.id, bom.product_tmpl_id.id) + self.assertEqual(bom.bom_line_ids[0].product_id.id, self.prd_1.id) + self.assertEqual(bom.bom_line_ids[0].product_qty, 2) + self.assertEqual(bom.bom_line_ids[1].product_id.id, self.prd_2.id) + self.assertEqual(bom.bom_line_ids[1].product_qty, 2) + self.assertEqual(bom.bom_line_ids[2].product_id.id, self.prd_3.id) + self.assertEqual(bom.bom_line_ids[2].product_qty, 1) + + def test_read_bom(self): + bom = self.env["mrp.bom"].create( + {"type": "normal", "product_tmpl_id": self.tmpl_4.id} + ) + bomline1 = self.env["mrp.bom.line"].create( + {"product_id": self.prd_1.id, "product_qty": 2, "bom_id": bom.id} + ) + bomline2 = self.env["mrp.bom.line"].create( + {"product_id": self.prd_2.id, "product_qty": 2, "bom_id": bom.id} + ) + bomline3 = self.env["mrp.bom.line"].create( + {"product_id": self.prd_3.id, "product_qty": 1, "bom_id": bom.id} + ) + self.assertTrue(bomline1 in self.tmpl_4.specific_bom_line_ids) + self.assertTrue(bomline2 in self.tmpl_4.specific_bom_line_ids) + self.assertTrue(bomline3 in self.tmpl_4.specific_bom_line_ids) diff --git a/product_quick_bom/views/product_view.xml b/product_quick_bom/views/product_view.xml new file mode 100644 index 000000000..4fba0ab3c --- /dev/null +++ b/product_quick_bom/views/product_view.xml @@ -0,0 +1,52 @@ + + + + product.template + + + + + + + + + + + + + + + + + + + + diff --git a/setup/product_quick_bom/odoo/addons/product_quick_bom b/setup/product_quick_bom/odoo/addons/product_quick_bom new file mode 120000 index 000000000..23df4e566 --- /dev/null +++ b/setup/product_quick_bom/odoo/addons/product_quick_bom @@ -0,0 +1 @@ +../../../../product_quick_bom \ No newline at end of file diff --git a/setup/product_quick_bom/setup.py b/setup/product_quick_bom/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/product_quick_bom/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)