diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst new file mode 100644 index 00000000000..fd9a343f63b --- /dev/null +++ b/mrp_production_note/README.rst @@ -0,0 +1,100 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +========================== +Notes in production orders +========================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:5f73f7c352d7cd9f8a4122ff18b08e78c2812cc593deab871b5d08e5bff03ed7 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github + :target: https://github.com/OCA/manufacture/tree/19.0/mrp_production_note + :alt: OCA/manufacture +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/manufacture-19-0/manufacture-19-0-mrp_production_note + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/manufacture&target_branch=19.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module creates in production orders a new field to add notes in +rich text format. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To use this module, you need to: + +1. Go to *Manufacturing > Operations > Manufacturing Orders*. +2. Edit an existing MO. +3. Fill in the field on tab "Notes". + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* OdooMRP team +* AvanzOSC + +Contributors +------------ + +- Oihane Crucelaegui +- Pedro M. Baeza +- Ana Juaristi +- Laurent Bélorgey +- Pimolnat Suntian +- [APSL-Nagarro](https://apsl.tech): + + - Antoni Marroig + +- Heliconia Solutions Pvt. Ltd. + +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/manufacture `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mrp_production_note/__init__.py b/mrp_production_note/__init__.py new file mode 100644 index 00000000000..d3ee04cbda1 --- /dev/null +++ b/mrp_production_note/__init__.py @@ -0,0 +1,4 @@ +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html + +from . import models diff --git a/mrp_production_note/__manifest__.py b/mrp_production_note/__manifest__.py new file mode 100644 index 00000000000..cc7441b88ce --- /dev/null +++ b/mrp_production_note/__manifest__.py @@ -0,0 +1,14 @@ +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html + +{ + "name": "Notes in production orders", + "version": "19.0.1.0.0", + "category": "Manufacturing", + "license": "AGPL-3", + "author": "OdooMRP team, AvanzOSC, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/manufacture", + "depends": ["mrp"], + "data": ["views/mrp_production_view.xml"], + "installable": True, +} diff --git a/mrp_production_note/i18n/de.po b/mrp_production_note/i18n/de.po new file mode 100644 index 00000000000..2a6ee955d1f --- /dev/null +++ b/mrp_production_note/i18n/de.po @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: manufacture (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 01:38+0000\n" +"PO-Revision-Date: 2018-12-10 11:58+0000\n" +"Last-Translator: Maria Sparenberg \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/" +"language/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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Hinweise" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Fertigungsauftrag" diff --git a/mrp_production_note/i18n/es.po b/mrp_production_note/i18n/es.po new file mode 100644 index 00000000000..fb58b4c931d --- /dev/null +++ b/mrp_production_note/i18n/es.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: manufacture (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 01:38+0000\n" +"PO-Revision-Date: 2025-02-26 14:06+0000\n" +"Last-Translator: Isneyler Mosquera Preciado \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-9-0/" +"language/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" +"X-Generator: Weblate 5.6.2\n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Órden de producción" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notas" + +#~ msgid "Production Order" +#~ msgstr "Orden de Producción" diff --git a/mrp_production_note/i18n/es_MX.po b/mrp_production_note/i18n/es_MX.po new file mode 100644 index 00000000000..b668975f43c --- /dev/null +++ b/mrp_production_note/i18n/es_MX.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Orden de fabricación" diff --git a/mrp_production_note/i18n/fi.po b/mrp_production_note/i18n/fi.po new file mode 100644 index 00000000000..273424728bb --- /dev/null +++ b/mrp_production_note/i18n/fi.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Huomautukset" diff --git a/mrp_production_note/i18n/fr.po b/mrp_production_note/i18n/fr.po new file mode 100644 index 00000000000..f10e7615a6c --- /dev/null +++ b/mrp_production_note/i18n/fr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Quentin THEURET , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 07:00+0000\n" +"PO-Revision-Date: 2017-06-10 07:00+0000\n" +"Last-Translator: Quentin THEURET , 2017\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" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notes" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Ordre de fabrication" diff --git a/mrp_production_note/i18n/gl.po b/mrp_production_note/i18n/gl.po new file mode 100644 index 00000000000..3908bb0d490 --- /dev/null +++ b/mrp_production_note/i18n/gl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notas" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Orde de fabricación" diff --git a/mrp_production_note/i18n/hr.po b/mrp_production_note/i18n/hr.po new file mode 100644 index 00000000000..b7fc5109564 --- /dev/null +++ b/mrp_production_note/i18n/hr.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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 (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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Bilješke" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/hr_HR.po b/mrp_production_note/i18n/hr_HR.po new file mode 100644 index 00000000000..e23e82f7a54 --- /dev/null +++ b/mrp_production_note/i18n/hr_HR.po @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 20:18+0000\n" +"PO-Revision-Date: 2017-05-01 20:18+0000\n" +"Last-Translator: Bole , 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Bilješke" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/it.po b/mrp_production_note/i18n/it.po new file mode 100644 index 00000000000..d052ac9e6a9 --- /dev/null +++ b/mrp_production_note/i18n/it.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: 2025-01-07 15:06+0000\n" +"Last-Translator: mymage \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" +"X-Generator: Weblate 5.6.2\n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Ordine di produzione" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Note" + +#~ msgid "Production Order" +#~ msgstr "Ordine di produzione" diff --git a/mrp_production_note/i18n/lt.po b/mrp_production_note/i18n/lt.po new file mode 100644 index 00000000000..0e48a3db3ef --- /dev/null +++ b/mrp_production_note/i18n/lt.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Užrašai" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Gamybos užsakymas" diff --git a/mrp_production_note/i18n/mrp_production_note.pot b/mrp_production_note/i18n/mrp_production_note.pot new file mode 100644 index 00000000000..09f7bbba825 --- /dev/null +++ b/mrp_production_note/i18n/mrp_production_note.pot @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "" diff --git a/mrp_production_note/i18n/nl_NL.po b/mrp_production_note/i18n/nl_NL.po new file mode 100644 index 00000000000..a337d8d475d --- /dev/null +++ b/mrp_production_note/i18n/nl_NL.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-06 03:32+0000\n" +"PO-Revision-Date: 2025-04-11 22:25+0000\n" +"Last-Translator: Bosd \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" +"X-Generator: Weblate 5.10.4\n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Productieorder" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notities" + +#~ msgid "Production Order" +#~ msgstr "Productieorder" diff --git a/mrp_production_note/i18n/pt_BR.po b/mrp_production_note/i18n/pt_BR.po new file mode 100644 index 00000000000..c05583deb46 --- /dev/null +++ b/mrp_production_note/i18n/pt_BR.po @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Claudio Araujo Santos , 2016 +msgid "" +msgstr "" +"Project-Id-Version: manufacture (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-03 06:08+0000\n" +"PO-Revision-Date: 2024-05-21 00:58+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"manufacture-9-0/language/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" +"X-Generator: Weblate 4.17\n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notas" + +#~ msgid "Production Order" +#~ msgstr "Ordem de Produção" diff --git a/mrp_production_note/i18n/ro.po b/mrp_production_note/i18n/ro.po new file mode 100644 index 00000000000..232ab88fa99 --- /dev/null +++ b/mrp_production_note/i18n/ro.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Note" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Comandă fabricație" diff --git a/mrp_production_note/i18n/sl.po b/mrp_production_note/i18n/sl.po new file mode 100644 index 00000000000..5ffff4bc930 --- /dev/null +++ b/mrp_production_note/i18n/sl.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Opombe" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/tr.po b/mrp_production_note/i18n/tr.po new file mode 100644 index 00000000000..9c516d89a98 --- /dev/null +++ b/mrp_production_note/i18n/tr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notlar" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Üretim emri" diff --git a/mrp_production_note/i18n/tr_TR.po b/mrp_production_note/i18n/tr_TR.po new file mode 100644 index 00000000000..8e79a138924 --- /dev/null +++ b/mrp_production_note/i18n/tr_TR.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notlar" diff --git a/mrp_production_note/i18n/vi_VN.po b/mrp_production_note/i18n/vi_VN.po new file mode 100644 index 00000000000..ed6ba3ee37a --- /dev/null +++ b/mrp_production_note/i18n/vi_VN.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# 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: 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "Lệnh sản xuất" diff --git a/mrp_production_note/i18n/zh_CN.po b/mrp_production_note/i18n/zh_CN.po new file mode 100644 index 00000000000..79a8f253183 --- /dev/null +++ b/mrp_production_note/i18n/zh_CN.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Jeffery Chenn , 2016 +msgid "" +msgstr "" +"Project-Id-Version: manufacture (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-07 07:44+0000\n" +"PO-Revision-Date: 2016-09-04 05:45+0000\n" +"Last-Translator: Jeffery Chenn \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-" +"manufacture-9-0/language/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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "备注" + +#, fuzzy +#~ msgid "Production Order" +#~ msgstr "制造订单" diff --git a/mrp_production_note/models/__init__.py b/mrp_production_note/models/__init__.py new file mode 100644 index 00000000000..81dc6002534 --- /dev/null +++ b/mrp_production_note/models/__init__.py @@ -0,0 +1,4 @@ +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html + +from . import mrp_production diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py new file mode 100644 index 00000000000..8f08aa2bcab --- /dev/null +++ b/mrp_production_note/models/mrp_production.py @@ -0,0 +1,10 @@ +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html + +from odoo import fields, models + + +class MrpProduction(models.Model): + _inherit = "mrp.production" + + notes = fields.Html() diff --git a/mrp_production_note/pyproject.toml b/mrp_production_note/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/mrp_production_note/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/mrp_production_note/readme/CONTRIBUTORS.md b/mrp_production_note/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..f51113776be --- /dev/null +++ b/mrp_production_note/readme/CONTRIBUTORS.md @@ -0,0 +1,8 @@ +- Oihane Crucelaegui \<\> +- Pedro M. Baeza \<\> +- Ana Juaristi \<\> +- Laurent Bélorgey \<\> +- Pimolnat Suntian \<\> +- \[APSL-Nagarro\](): + - Antoni Marroig \<\> +- Heliconia Solutions Pvt. Ltd. \<\> diff --git a/mrp_production_note/readme/DESCRIPTION.md b/mrp_production_note/readme/DESCRIPTION.md new file mode 100644 index 00000000000..34c109babc0 --- /dev/null +++ b/mrp_production_note/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +This module creates in production orders a new field to add notes in +rich text format. diff --git a/mrp_production_note/readme/USAGE.md b/mrp_production_note/readme/USAGE.md new file mode 100644 index 00000000000..50b1c1859b0 --- /dev/null +++ b/mrp_production_note/readme/USAGE.md @@ -0,0 +1,5 @@ +To use this module, you need to: + +1. Go to *Manufacturing \> Operations \> Manufacturing Orders*. +2. Edit an existing MO. +3. Fill in the field on tab "Notes". diff --git a/mrp_production_note/static/description/icon.png b/mrp_production_note/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/mrp_production_note/static/description/icon.png differ diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html new file mode 100644 index 00000000000..92547c0d590 --- /dev/null +++ b/mrp_production_note/static/description/index.html @@ -0,0 +1,450 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Notes in production orders

+ +

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

+

This module creates in production orders a new field to add notes in +rich text format.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to Manufacturing > Operations > Manufacturing Orders.
  2. +
  3. Edit an existing MO.
  4. +
  5. Fill in the field on tab “Notes”.
  6. +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • OdooMRP team
  • +
  • AvanzOSC
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

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

+

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

+
+
+
+
+ + diff --git a/mrp_production_note/views/mrp_production_view.xml b/mrp_production_note/views/mrp_production_view.xml new file mode 100644 index 00000000000..858bbe45c72 --- /dev/null +++ b/mrp_production_note/views/mrp_production_view.xml @@ -0,0 +1,15 @@ + + + + mrp.production.notes.form + mrp.production + + + + + + + + + +