From 26ff1802bd73bab478b6b960075835ba2f230322 Mon Sep 17 00:00:00 2001 From: oihane Date: Thu, 5 Mar 2015 12:18:18 +0100 Subject: [PATCH 01/13] [MOD] Added and renamed *notes modules to *note --- mrp_bom_note/README.rst | 8 ++++++ mrp_bom_note/__init__.py | 18 ++++++++++++ mrp_bom_note/__openerp__.py | 37 ++++++++++++++++++++++++ mrp_bom_note/i18n/es.po | 44 +++++++++++++++++++++++++++++ mrp_bom_note/i18n/mrp_bom_notes.pot | 44 +++++++++++++++++++++++++++++ mrp_bom_note/models/__init__.py | 18 ++++++++++++ mrp_bom_note/models/mrp_bom.py | 25 ++++++++++++++++ mrp_bom_note/views/mrp_bom_view.xml | 21 ++++++++++++++ 8 files changed, 215 insertions(+) create mode 100644 mrp_bom_note/README.rst create mode 100644 mrp_bom_note/__init__.py create mode 100644 mrp_bom_note/__openerp__.py create mode 100644 mrp_bom_note/i18n/es.po create mode 100644 mrp_bom_note/i18n/mrp_bom_notes.pot create mode 100644 mrp_bom_note/models/__init__.py create mode 100644 mrp_bom_note/models/mrp_bom.py create mode 100644 mrp_bom_note/views/mrp_bom_view.xml diff --git a/mrp_bom_note/README.rst b/mrp_bom_note/README.rst new file mode 100644 index 000000000..009b98451 --- /dev/null +++ b/mrp_bom_note/README.rst @@ -0,0 +1,8 @@ +MRP - BoM notes +=============== + +This module performs the following: + +1.- Creates the new field NOTES in MRP BoM list. + +2.- Creates the new field NOTES in MRP production, of type related with MRP BoM List. diff --git a/mrp_bom_note/__init__.py b/mrp_bom_note/__init__.py new file mode 100644 index 000000000..c58ee95de --- /dev/null +++ b/mrp_bom_note/__init__.py @@ -0,0 +1,18 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see http://www.gnu.org/licenses/. +# +############################################################################## +from . import models diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py new file mode 100644 index 000000000..581ad51cc --- /dev/null +++ b/mrp_bom_note/__openerp__.py @@ -0,0 +1,37 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see http://www.gnu.org/licenses/. +# +############################################################################## + +{ + "name": "MRP BoM Notes", + "version": "1.0", + "author": "OdooMRP team", + "website": "http://www.odoomrp.com", + "contributors": [ + "Oihane Crucelaegui ", + "Pedro M. Baeza ", + "Ana Juaristi " + ], + "category": "Tools", + "depends": [ + "mrp", + ], + "data": [ + "views/mrp_bom_view.xml", + ], + "installable": True +} diff --git a/mrp_bom_note/i18n/es.po b/mrp_bom_note/i18n/es.po new file mode 100644 index 000000000..a36ca108c --- /dev/null +++ b/mrp_bom_note/i18n/es.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-11-05 11:53+0000\n" +"PO-Revision-Date: 2014-11-05 12:54+0100\n" +"Last-Translator: Alfredo \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "Lista de material" + +#. module: mrp_bom_note +#: view:mrp.bom:mrp_bom_note.mrp_bom_form_view_inh_note +msgid "Components" +msgstr "Componentes" + +#. module: mrp_bom_note +#: view:mrp.production:mrp_bom_note.mrp_production_form_view_inh_note +msgid "Extra Information" +msgstr "Información extra" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Órden de producción" + +#. module: mrp_bom_note +#: view:mrp.bom:mrp_bom_note.mrp_bom_form_view_inh_note +#: field:mrp.bom,notes:0 +#: view:mrp.production:mrp_bom_note.mrp_production_form_view_inh_note +msgid "Notes" +msgstr "Notas" + diff --git a/mrp_bom_note/i18n/mrp_bom_notes.pot b/mrp_bom_note/i18n/mrp_bom_notes.pot new file mode 100644 index 000000000..eef730ab2 --- /dev/null +++ b/mrp_bom_note/i18n/mrp_bom_notes.pot @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-11-05 11:53+0000\n" +"PO-Revision-Date: 2014-11-05 11:53+0000\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_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: view:mrp.bom:mrp_bom_note.mrp_bom_form_view_inh_note +msgid "Components" +msgstr "" + +#. module: mrp_bom_note +#: view:mrp.production:mrp_bom_note.mrp_production_form_view_inh_note +msgid "Extra Information" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_bom_note +#: view:mrp.bom:mrp_bom_note.mrp_bom_form_view_inh_note +#: field:mrp.bom,notes:0 +#: view:mrp.production:mrp_bom_note.mrp_production_form_view_inh_note +msgid "Notes" +msgstr "" + diff --git a/mrp_bom_note/models/__init__.py b/mrp_bom_note/models/__init__.py new file mode 100644 index 000000000..505660865 --- /dev/null +++ b/mrp_bom_note/models/__init__.py @@ -0,0 +1,18 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see http://www.gnu.org/licenses/. +# +############################################################################## +from . import mrp_bom diff --git a/mrp_bom_note/models/mrp_bom.py b/mrp_bom_note/models/mrp_bom.py new file mode 100644 index 000000000..ed2af86cf --- /dev/null +++ b/mrp_bom_note/models/mrp_bom.py @@ -0,0 +1,25 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see http://www.gnu.org/licenses/. +# +############################################################################## + +from openerp import models, fields + + +class MrpBom(models.Model): + _inherit = 'mrp.bom' + + notes = fields.Html() diff --git a/mrp_bom_note/views/mrp_bom_view.xml b/mrp_bom_note/views/mrp_bom_view.xml new file mode 100644 index 000000000..d8938cd61 --- /dev/null +++ b/mrp_bom_note/views/mrp_bom_view.xml @@ -0,0 +1,21 @@ + + + + + + mrp.bom.form.view.inh.notes + mrp.bom + + + + + + + + + + + + + + From bc013a2beea6a88d988117188e5336dd006639b3 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 25 Mar 2015 21:35:06 +0100 Subject: [PATCH 02/13] [IMP] Expand AUTHORS --- mrp_bom_note/__openerp__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py index 581ad51cc..9e4d26fa8 100644 --- a/mrp_bom_note/__openerp__.py +++ b/mrp_bom_note/__openerp__.py @@ -19,7 +19,9 @@ { "name": "MRP BoM Notes", "version": "1.0", - "author": "OdooMRP team", + "author": "OdooMRP team," + "AvanzOSC," + "Serv. Tecnol. Avanzados - Pedro M. Baeza", "website": "http://www.odoomrp.com", "contributors": [ "Oihane Crucelaegui ", From c9db0bb1507d267ed8da979cfeabde1f1fd9dbb7 Mon Sep 17 00:00:00 2001 From: oihane Date: Mon, 27 Apr 2015 09:33:10 +0200 Subject: [PATCH 03/13] [MOD] Changed email --- mrp_bom_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py index 9e4d26fa8..c88f44cd2 100644 --- a/mrp_bom_note/__openerp__.py +++ b/mrp_bom_note/__openerp__.py @@ -26,7 +26,7 @@ "contributors": [ "Oihane Crucelaegui ", "Pedro M. Baeza ", - "Ana Juaristi " + "Ana Juaristi " ], "category": "Tools", "depends": [ From 914868aee2f1a2ee025a93aa9b25a662759661f4 Mon Sep 17 00:00:00 2001 From: oihane Date: Thu, 18 Jun 2015 17:36:37 +0200 Subject: [PATCH 04/13] [IMP] Added OCA required README and info on __openerp__.py --- mrp_bom_note/README.rst | 37 +++++++++++++++++++++++++++++++++ mrp_bom_note/__init__.py | 16 ++------------ mrp_bom_note/__openerp__.py | 7 ++++--- mrp_bom_note/models/__init__.py | 16 ++------------ mrp_bom_note/models/mrp_bom.py | 15 +------------ 5 files changed, 46 insertions(+), 45 deletions(-) diff --git a/mrp_bom_note/README.rst b/mrp_bom_note/README.rst index 009b98451..f6c0749bf 100644 --- a/mrp_bom_note/README.rst +++ b/mrp_bom_note/README.rst @@ -1,3 +1,6 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + MRP - BoM notes =============== @@ -6,3 +9,37 @@ This module performs the following: 1.- Creates the new field NOTES in MRP BoM list. 2.- Creates the new field NOTES in MRP production, of type related with MRP BoM List. + +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 +`here `_. + + +Credits +======= + +Contributors +------------ + +* Oihane Crucelaegui +* Pedro M. Baeza +* Ana Juaristi + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit http://odoo-community.org. \ No newline at end of file diff --git a/mrp_bom_note/__init__.py b/mrp_bom_note/__init__.py index c58ee95de..054c8853d 100644 --- a/mrp_bom_note/__init__.py +++ b/mrp_bom_note/__init__.py @@ -1,18 +1,6 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see http://www.gnu.org/licenses/. -# +# For copyright and license notices, see __openerp__.py file in root directory ############################################################################## + from . import models diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py index c88f44cd2..c4fa77b98 100644 --- a/mrp_bom_note/__openerp__.py +++ b/mrp_bom_note/__openerp__.py @@ -17,16 +17,17 @@ ############################################################################## { - "name": "MRP BoM Notes", + "name": "MRP - BoM Notes", "version": "1.0", "author": "OdooMRP team," "AvanzOSC," - "Serv. Tecnol. Avanzados - Pedro M. Baeza", + "Serv. Tecnol. Avanzados - Pedro M. Baeza, " + "Odoo Community Association (OCA)", "website": "http://www.odoomrp.com", "contributors": [ "Oihane Crucelaegui ", "Pedro M. Baeza ", - "Ana Juaristi " + "Ana Juaristi ", ], "category": "Tools", "depends": [ diff --git a/mrp_bom_note/models/__init__.py b/mrp_bom_note/models/__init__.py index 505660865..d4e8e15bd 100644 --- a/mrp_bom_note/models/__init__.py +++ b/mrp_bom_note/models/__init__.py @@ -1,18 +1,6 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see http://www.gnu.org/licenses/. -# +# For copyright and license notices, see __openerp__.py file in root directory ############################################################################## + from . import mrp_bom diff --git a/mrp_bom_note/models/mrp_bom.py b/mrp_bom_note/models/mrp_bom.py index ed2af86cf..9824b375a 100644 --- a/mrp_bom_note/models/mrp_bom.py +++ b/mrp_bom_note/models/mrp_bom.py @@ -1,19 +1,6 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see http://www.gnu.org/licenses/. -# +# For copyright and license notices, see __openerp__.py file in root directory ############################################################################## from openerp import models, fields From ce9b18925e046a9a999e3adea1890121d34ead7e Mon Sep 17 00:00:00 2001 From: oihane Date: Thu, 18 Jun 2015 18:15:53 +0200 Subject: [PATCH 05/13] [IMP] Updated README --- mrp_bom_note/README.rst | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mrp_bom_note/README.rst b/mrp_bom_note/README.rst index f6c0749bf..510cac42b 100644 --- a/mrp_bom_note/README.rst +++ b/mrp_bom_note/README.rst @@ -4,11 +4,8 @@ MRP - BoM notes =============== -This module performs the following: +This module creates in BoM a new field to add notes -1.- Creates the new field NOTES in MRP BoM list. - -2.- Creates the new field NOTES in MRP production, of type related with MRP BoM List. Bug Tracker =========== From 2520cd5f5cd266abaa98655ede83729c5a622a0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 9 Oct 2015 10:01:47 +0200 Subject: [PATCH 06/13] [UPD] prefix versions with 8.0 --- mrp_bom_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py index c4fa77b98..4b822723e 100644 --- a/mrp_bom_note/__openerp__.py +++ b/mrp_bom_note/__openerp__.py @@ -18,7 +18,7 @@ { "name": "MRP - BoM Notes", - "version": "1.0", + "version": "8.0.1.0.0", "author": "OdooMRP team," "AvanzOSC," "Serv. Tecnol. Avanzados - Pedro M. Baeza, " From f1878d50850ce302dbef07bd84d035af3f4ef2bc Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 03:30:18 +0200 Subject: [PATCH 07/13] [MIG] Make modules uninstallable --- mrp_bom_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py index 4b822723e..f5af64325 100644 --- a/mrp_bom_note/__openerp__.py +++ b/mrp_bom_note/__openerp__.py @@ -36,5 +36,5 @@ "data": [ "views/mrp_bom_view.xml", ], - "installable": True + 'installable': False } From 78f548f3fd0d9dadd8b8365ddea48172f53d73ed Mon Sep 17 00:00:00 2001 From: Oihane Crucelaegui Date: Thu, 14 Jan 2016 19:24:56 +0100 Subject: [PATCH 08/13] [MIG] Make mrp_bom_note installable in v9 --- mrp_bom_note/README.rst | 19 +++++++++---- mrp_bom_note/__init__.py | 7 +++-- mrp_bom_note/__openerp__.py | 26 +++++------------- mrp_bom_note/i18n/de.po | 30 +++++++++++++++++++++ mrp_bom_note/i18n/es.po | 41 +++++++++-------------------- mrp_bom_note/i18n/pt_BR.po | 30 +++++++++++++++++++++ mrp_bom_note/i18n/zh_CN.po | 30 +++++++++++++++++++++ mrp_bom_note/models/__init__.py | 7 +++-- mrp_bom_note/models/mrp_bom.py | 7 +++-- mrp_bom_note/views/mrp_bom_view.xml | 34 +++++++++++------------- 10 files changed, 147 insertions(+), 84 deletions(-) create mode 100644 mrp_bom_note/i18n/de.po create mode 100644 mrp_bom_note/i18n/pt_BR.po create mode 100644 mrp_bom_note/i18n/zh_CN.po diff --git a/mrp_bom_note/README.rst b/mrp_bom_note/README.rst index 510cac42b..3b465ed1c 100644 --- a/mrp_bom_note/README.rst +++ b/mrp_bom_note/README.rst @@ -1,11 +1,21 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg :alt: License: AGPL-3 -MRP - BoM notes -=============== +========================== +Notes in Bill of Materials +========================== This module creates in BoM a new field to add notes +Usage +===== + +* Go to Manufacturing > Products > Bill of Materials +* Edit an existing BoM and fill in the Notes field on tab Notes + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/129/9.0 Bug Tracker =========== @@ -13,8 +23,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback -`here `_. - +`here `_. Credits ======= @@ -39,4 +48,4 @@ 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. -To contribute to this module, please visit http://odoo-community.org. \ No newline at end of file +To contribute to this module, please visit http://odoo-community.org. diff --git a/mrp_bom_note/__init__.py b/mrp_bom_note/__init__.py index 054c8853d..6ea76f9a8 100644 --- a/mrp_bom_note/__init__.py +++ b/mrp_bom_note/__init__.py @@ -1,6 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import models diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py index f5af64325..7b771120f 100644 --- a/mrp_bom_note/__openerp__.py +++ b/mrp_bom_note/__openerp__.py @@ -1,24 +1,10 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see http://www.gnu.org/licenses/. -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html { - "name": "MRP - BoM Notes", - "version": "8.0.1.0.0", + "name": "Notes in Bill of Materials", + "version": "9.0.1.0.0", "author": "OdooMRP team," "AvanzOSC," "Serv. Tecnol. Avanzados - Pedro M. Baeza, " @@ -36,5 +22,5 @@ "data": [ "views/mrp_bom_view.xml", ], - 'installable': False + 'installable': True } diff --git a/mrp_bom_note/i18n/de.po b/mrp_bom_note/i18n/de.po new file mode 100644 index 000000000..4bd2f52bc --- /dev/null +++ b/mrp_bom_note/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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: 2016-03-11 15:31+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "Srückliste" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Hinweise" diff --git a/mrp_bom_note/i18n/es.po b/mrp_bom_note/i18n/es.po index a36ca108c..5b5a3eb1a 100644 --- a/mrp_bom_note/i18n/es.po +++ b/mrp_bom_note/i18n/es.po @@ -1,19 +1,21 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * mrp_bom_note -# +# * mrp_bom_note +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: manufacture (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-05 11:53+0000\n" -"PO-Revision-Date: 2014-11-05 12:54+0100\n" -"Last-Translator: Alfredo \n" -"Language-Team: \n" +"POT-Creation-Date: 2016-01-19 01:38+0000\n" +"PO-Revision-Date: 2016-01-18 21:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-9-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_bom_note #: model:ir.model,name:mrp_bom_note.model_mrp_bom @@ -21,24 +23,7 @@ msgid "Bill of Material" msgstr "Lista de material" #. module: mrp_bom_note -#: view:mrp.bom:mrp_bom_note.mrp_bom_form_view_inh_note -msgid "Components" -msgstr "Componentes" - -#. module: mrp_bom_note -#: view:mrp.production:mrp_bom_note.mrp_production_form_view_inh_note -msgid "Extra Information" -msgstr "Información extra" - -#. module: mrp_bom_note -#: model:ir.model,name:mrp_bom_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Órden de producción" - -#. module: mrp_bom_note -#: view:mrp.bom:mrp_bom_note.mrp_bom_form_view_inh_note -#: field:mrp.bom,notes:0 -#: view:mrp.production:mrp_bom_note.mrp_production_form_view_inh_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form msgid "Notes" msgstr "Notas" - diff --git a/mrp_bom_note/i18n/pt_BR.po b/mrp_bom_note/i18n/pt_BR.po new file mode 100644 index 000000000..cef874008 --- /dev/null +++ b/mrp_bom_note/i18n/pt_BR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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: 2016-07-07 19:44+0000\n" +"Last-Translator: Claudio Araujo Santos \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-manufacture-9-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "Lista de materiais" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Notas" diff --git a/mrp_bom_note/i18n/zh_CN.po b/mrp_bom_note/i18n/zh_CN.po new file mode 100644 index 000000000..112b4f366 --- /dev/null +++ b/mrp_bom_note/i18n/zh_CN.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "物料清单" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "备注" diff --git a/mrp_bom_note/models/__init__.py b/mrp_bom_note/models/__init__.py index d4e8e15bd..98e1652d7 100644 --- a/mrp_bom_note/models/__init__.py +++ b/mrp_bom_note/models/__init__.py @@ -1,6 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import mrp_bom diff --git a/mrp_bom_note/models/mrp_bom.py b/mrp_bom_note/models/mrp_bom.py index 9824b375a..e5054c43b 100644 --- a/mrp_bom_note/models/mrp_bom.py +++ b/mrp_bom_note/models/mrp_bom.py @@ -1,7 +1,6 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from openerp import models, fields diff --git a/mrp_bom_note/views/mrp_bom_view.xml b/mrp_bom_note/views/mrp_bom_view.xml index d8938cd61..0e1be55b6 100644 --- a/mrp_bom_note/views/mrp_bom_view.xml +++ b/mrp_bom_note/views/mrp_bom_view.xml @@ -1,21 +1,17 @@ - - - - - mrp.bom.form.view.inh.notes - mrp.bom - - - - - - - - + + + mrp.bom.notes.form + mrp.bom + + + + + + + - - - - - + + + + From 57be5ae9d9f85c3376ab26548a4145227ab2b570 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:42 +0200 Subject: [PATCH 09/13] [MIG] Make modules uninstallable --- mrp_bom_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__openerp__.py index 7b771120f..5c5ae02c4 100644 --- a/mrp_bom_note/__openerp__.py +++ b/mrp_bom_note/__openerp__.py @@ -22,5 +22,5 @@ "data": [ "views/mrp_bom_view.xml", ], - 'installable': True + 'installable': False } From 61c69e26eb6b1242d8413e89683802ac6d0cb9b5 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:44 +0200 Subject: [PATCH 10/13] [MIG] Rename manifest files --- mrp_bom_note/{__openerp__.py => __manifest__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename mrp_bom_note/{__openerp__.py => __manifest__.py} (100%) diff --git a/mrp_bom_note/__openerp__.py b/mrp_bom_note/__manifest__.py similarity index 100% rename from mrp_bom_note/__openerp__.py rename to mrp_bom_note/__manifest__.py From 3230bd3e576e7f92b191a77850fbf8a60b509dc1 Mon Sep 17 00:00:00 2001 From: Bima Date: Fri, 10 Nov 2017 16:57:29 +0700 Subject: [PATCH 11/13] [10.0] [MIG] mrp_bom_note (#202) --- mrp_bom_note/README.rst | 27 +++++++++++++++++++++++---- mrp_bom_note/__manifest__.py | 9 ++------- mrp_bom_note/i18n/de.po | 14 +++++++------- mrp_bom_note/i18n/es.po | 13 +++++++------ mrp_bom_note/i18n/fi.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/fr.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/gl.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/hr.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/hr_HR.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/it.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/lt.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/nl_NL.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/pt_BR.po | 14 +++++++------- mrp_bom_note/i18n/ro.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/sl.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/tr.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/tr_TR.po | 30 ++++++++++++++++++++++++++++++ mrp_bom_note/i18n/zh_CN.po | 14 +++++++------- mrp_bom_note/models/mrp_bom.py | 2 +- 19 files changed, 414 insertions(+), 39 deletions(-) create mode 100644 mrp_bom_note/i18n/fi.po create mode 100644 mrp_bom_note/i18n/fr.po create mode 100644 mrp_bom_note/i18n/gl.po create mode 100644 mrp_bom_note/i18n/hr.po create mode 100644 mrp_bom_note/i18n/hr_HR.po create mode 100644 mrp_bom_note/i18n/it.po create mode 100644 mrp_bom_note/i18n/lt.po create mode 100644 mrp_bom_note/i18n/nl_NL.po create mode 100644 mrp_bom_note/i18n/ro.po create mode 100644 mrp_bom_note/i18n/sl.po create mode 100644 mrp_bom_note/i18n/tr.po create mode 100644 mrp_bom_note/i18n/tr_TR.po diff --git a/mrp_bom_note/README.rst b/mrp_bom_note/README.rst index 3b465ed1c..880d88649 100644 --- a/mrp_bom_note/README.rst +++ b/mrp_bom_note/README.rst @@ -1,5 +1,6 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 ========================== Notes in Bill of Materials @@ -7,11 +8,23 @@ Notes in Bill of Materials This module creates in BoM a new field to add notes +Installation +============ + +To install this module, you need to install mrp application. + +Configuration +============= + +No configuration required. + + Usage ===== -* Go to Manufacturing > Products > Bill of Materials -* Edit an existing BoM and fill in the Notes field on tab Notes +1. Go to Manufacturing > Master Data > Bill of Materials +2. Edit an existing BoM. +3. Fill in the Notes field on tab Notes. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot @@ -28,12 +41,18 @@ If you spotted it first, help us smashing it by providing a detailed and welcome Credits ======= +Images +------ + +* Odoo Community Association: `Icon `_. + Contributors ------------ * Oihane Crucelaegui * Pedro M. Baeza * Ana Juaristi +* Bima Wijaya Maintainer ---------- @@ -48,4 +67,4 @@ 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. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/mrp_bom_note/__manifest__.py b/mrp_bom_note/__manifest__.py index 5c5ae02c4..75fdd7e19 100644 --- a/mrp_bom_note/__manifest__.py +++ b/mrp_bom_note/__manifest__.py @@ -4,17 +4,12 @@ { "name": "Notes in Bill of Materials", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "author": "OdooMRP team," "AvanzOSC," "Serv. Tecnol. Avanzados - Pedro M. Baeza, " "Odoo Community Association (OCA)", "website": "http://www.odoomrp.com", - "contributors": [ - "Oihane Crucelaegui ", - "Pedro M. Baeza ", - "Ana Juaristi ", - ], "category": "Tools", "depends": [ "mrp", @@ -22,5 +17,5 @@ "data": [ "views/mrp_bom_view.xml", ], - 'installable': False + 'installable': True } diff --git a/mrp_bom_note/i18n/de.po b/mrp_bom_note/i18n/de.po index 4bd2f52bc..9988dc302 100644 --- a/mrp_bom_note/i18n/de.po +++ b/mrp_bom_note/i18n/de.po @@ -3,15 +3,15 @@ # * mrp_bom_note # # Translators: -# Rudolf Schnapka , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: manufacture (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-19 01:38+0000\n" -"PO-Revision-Date: 2016-03-11 15:31+0000\n" -"Last-Translator: Rudolf Schnapka \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/language/de/)\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: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -21,7 +21,7 @@ msgstr "" #. module: mrp_bom_note #: model:ir.model,name:mrp_bom_note.model_mrp_bom msgid "Bill of Material" -msgstr "Srückliste" +msgstr "" #. module: mrp_bom_note #: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes diff --git a/mrp_bom_note/i18n/es.po b/mrp_bom_note/i18n/es.po index 5b5a3eb1a..67ec99c5e 100644 --- a/mrp_bom_note/i18n/es.po +++ b/mrp_bom_note/i18n/es.po @@ -3,14 +3,15 @@ # * mrp_bom_note # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: manufacture (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-19 01:38+0000\n" -"PO-Revision-Date: 2016-01-18 21:23+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-9-0/language/es/)\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 (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,7 +21,7 @@ msgstr "" #. module: mrp_bom_note #: model:ir.model,name:mrp_bom_note.model_mrp_bom msgid "Bill of Material" -msgstr "Lista de material" +msgstr "" #. module: mrp_bom_note #: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes diff --git a/mrp_bom_note/i18n/fi.po b/mrp_bom_note/i18n/fi.po new file mode 100644 index 000000000..e2b476226 --- /dev/null +++ b/mrp_bom_note/i18n/fi.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Huomautukset" diff --git a/mrp_bom_note/i18n/fr.po b/mrp_bom_note/i18n/fr.po new file mode 100644 index 000000000..bfd0ba513 --- /dev/null +++ b/mrp_bom_note/i18n/fr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_note +# +# Translators: +# Quentin THEURET , 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: Quentin THEURET , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Notes" diff --git a/mrp_bom_note/i18n/gl.po b/mrp_bom_note/i18n/gl.po new file mode 100644 index 000000000..6edb357e5 --- /dev/null +++ b/mrp_bom_note/i18n/gl.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Notas" diff --git a/mrp_bom_note/i18n/hr.po b/mrp_bom_note/i18n/hr.po new file mode 100644 index 000000000..1db28926d --- /dev/null +++ b/mrp_bom_note/i18n/hr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\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_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Bilješke" diff --git a/mrp_bom_note/i18n/hr_HR.po b/mrp_bom_note/i18n/hr_HR.po new file mode 100644 index 000000000..9f8aea861 --- /dev/null +++ b/mrp_bom_note/i18n/hr_HR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_note +# +# Translators: +# Bole , 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: Bole , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\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_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Bilješke" diff --git a/mrp_bom_note/i18n/it.po b/mrp_bom_note/i18n/it.po new file mode 100644 index 000000000..48519235e --- /dev/null +++ b/mrp_bom_note/i18n/it.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Note" diff --git a/mrp_bom_note/i18n/lt.po b/mrp_bom_note/i18n/lt.po new file mode 100644 index 000000000..3f9f1e42a --- /dev/null +++ b/mrp_bom_note/i18n/lt.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "Sąskaita už žaliavas" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Užrašai" diff --git a/mrp_bom_note/i18n/nl_NL.po b/mrp_bom_note/i18n/nl_NL.po new file mode 100644 index 000000000..e9506c142 --- /dev/null +++ b/mrp_bom_note/i18n/nl_NL.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_note +# +# Translators: +# Peter Hageman , 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: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Notities" diff --git a/mrp_bom_note/i18n/pt_BR.po b/mrp_bom_note/i18n/pt_BR.po index cef874008..4cd9a9037 100644 --- a/mrp_bom_note/i18n/pt_BR.po +++ b/mrp_bom_note/i18n/pt_BR.po @@ -3,15 +3,15 @@ # * mrp_bom_note # # Translators: -# Claudio Araujo Santos , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: manufacture (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-03 06:08+0000\n" -"PO-Revision-Date: 2016-07-07 19:44+0000\n" -"Last-Translator: Claudio Araujo Santos \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-manufacture-9-0/language/pt_BR/)\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -21,7 +21,7 @@ msgstr "" #. module: mrp_bom_note #: model:ir.model,name:mrp_bom_note.model_mrp_bom msgid "Bill of Material" -msgstr "Lista de materiais" +msgstr "" #. module: mrp_bom_note #: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes diff --git a/mrp_bom_note/i18n/ro.po b/mrp_bom_note/i18n/ro.po new file mode 100644 index 000000000..87cd1de86 --- /dev/null +++ b/mrp_bom_note/i18n/ro.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Note" diff --git a/mrp_bom_note/i18n/sl.po b/mrp_bom_note/i18n/sl.po new file mode 100644 index 000000000..9e1e9a7cd --- /dev/null +++ b/mrp_bom_note/i18n/sl.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\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_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Opombe" diff --git a/mrp_bom_note/i18n/tr.po b/mrp_bom_note/i18n/tr.po new file mode 100644 index 000000000..bca95b94a --- /dev/null +++ b/mrp_bom_note/i18n/tr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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 (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Notlar" diff --git a/mrp_bom_note/i18n/tr_TR.po b/mrp_bom_note/i18n/tr_TR.po new file mode 100644 index 000000000..c8f5fa869 --- /dev/null +++ b/mrp_bom_note/i18n/tr_TR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_bom_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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: mrp_bom_note +#: model:ir.model,name:mrp_bom_note.model_mrp_bom +msgid "Bill of Material" +msgstr "" + +#. module: mrp_bom_note +#: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes +#: model:ir.ui.view,arch_db:mrp_bom_note.mrp_bom_view_notes_form +msgid "Notes" +msgstr "Notlar" diff --git a/mrp_bom_note/i18n/zh_CN.po b/mrp_bom_note/i18n/zh_CN.po index 112b4f366..d11fac1a7 100644 --- a/mrp_bom_note/i18n/zh_CN.po +++ b/mrp_bom_note/i18n/zh_CN.po @@ -3,15 +3,15 @@ # * mrp_bom_note # # Translators: -# Jeffery Chenn , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: manufacture (9.0)\n" +"Project-Id-Version: Odoo Server 10.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" +"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: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -21,7 +21,7 @@ msgstr "" #. module: mrp_bom_note #: model:ir.model,name:mrp_bom_note.model_mrp_bom msgid "Bill of Material" -msgstr "物料清单" +msgstr "" #. module: mrp_bom_note #: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes diff --git a/mrp_bom_note/models/mrp_bom.py b/mrp_bom_note/models/mrp_bom.py index e5054c43b..60d032302 100644 --- a/mrp_bom_note/models/mrp_bom.py +++ b/mrp_bom_note/models/mrp_bom.py @@ -2,7 +2,7 @@ # © 2015 Oihane Crucelaegui - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from openerp import models, fields +from odoo import models, fields class MrpBom(models.Model): From 03791b033bdd34340b502a49def988225fd37fb3 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 3 Mar 2018 08:27:03 +0100 Subject: [PATCH 12/13] OCA Transbot updated translations from Transifex --- mrp_bom_note/README.rst | 1 + mrp_bom_note/__init__.py | 1 - mrp_bom_note/__manifest__.py | 4 +- mrp_bom_note/i18n/hr.po | 9 +-- mrp_bom_note/models/__init__.py | 1 - mrp_bom_note/models/mrp_bom.py | 1 - mrp_bom_note/tests/__init__.py | 4 ++ mrp_bom_note/tests/test_mrp_bom_note.py | 77 +++++++++++++++++++++++++ 8 files changed, 89 insertions(+), 9 deletions(-) create mode 100644 mrp_bom_note/tests/__init__.py create mode 100644 mrp_bom_note/tests/test_mrp_bom_note.py diff --git a/mrp_bom_note/README.rst b/mrp_bom_note/README.rst index 880d88649..811c2ce5d 100644 --- a/mrp_bom_note/README.rst +++ b/mrp_bom_note/README.rst @@ -53,6 +53,7 @@ Contributors * Pedro M. Baeza * Ana Juaristi * Bima Wijaya +* Agung Rachmatullah Maintainer ---------- diff --git a/mrp_bom_note/__init__.py b/mrp_bom_note/__init__.py index 6ea76f9a8..1f92abd7d 100644 --- a/mrp_bom_note/__init__.py +++ b/mrp_bom_note/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/mrp_bom_note/__manifest__.py b/mrp_bom_note/__manifest__.py index 75fdd7e19..bf696b245 100644 --- a/mrp_bom_note/__manifest__.py +++ b/mrp_bom_note/__manifest__.py @@ -1,10 +1,10 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html { "name": "Notes in Bill of Materials", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", + "license": "AGPL-3", "author": "OdooMRP team," "AvanzOSC," "Serv. Tecnol. Avanzados - Pedro M. Baeza, " diff --git a/mrp_bom_note/i18n/hr.po b/mrp_bom_note/i18n/hr.po index 1db28926d..071cf1588 100644 --- a/mrp_bom_note/i18n/hr.po +++ b/mrp_bom_note/i18n/hr.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2017 +# Bole , 2018 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" +"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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #. module: mrp_bom_note #: model:ir.model,name:mrp_bom_note.model_mrp_bom msgid "Bill of Material" -msgstr "" +msgstr "Sastavnica" #. module: mrp_bom_note #: model:ir.model.fields,field_description:mrp_bom_note.field_mrp_bom_notes diff --git a/mrp_bom_note/models/__init__.py b/mrp_bom_note/models/__init__.py index 98e1652d7..f703f84eb 100644 --- a/mrp_bom_note/models/__init__.py +++ b/mrp_bom_note/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/mrp_bom_note/models/mrp_bom.py b/mrp_bom_note/models/mrp_bom.py index 60d032302..fe08e5115 100644 --- a/mrp_bom_note/models/mrp_bom.py +++ b/mrp_bom_note/models/mrp_bom.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/mrp_bom_note/tests/__init__.py b/mrp_bom_note/tests/__init__.py new file mode 100644 index 000000000..344cedcdb --- /dev/null +++ b/mrp_bom_note/tests/__init__.py @@ -0,0 +1,4 @@ +# © 2018 Agung Rachmatullah +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_mrp_bom_note \ No newline at end of file diff --git a/mrp_bom_note/tests/test_mrp_bom_note.py b/mrp_bom_note/tests/test_mrp_bom_note.py new file mode 100644 index 000000000..4b04606c2 --- /dev/null +++ b/mrp_bom_note/tests/test_mrp_bom_note.py @@ -0,0 +1,77 @@ +# © 2018 Agung Rachmatullah +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import TransactionCase + + +class TestMrpBomNote(TransactionCase): + def setUp(self): + super(TestMrpBomNote, self).setUp() + self.product_t = self.env['product.template'] + self.product_p = self.env['product.product'] + self.bom = self.env['mrp.bom'] + + def test_notes(self): + uom_unit = self.env.ref('product.product_uom_unit') + product_t_fg = self.product_t.create({ + 'name': 'Chair', + 'type': 'product', + 'uom_id': uom_unit.id, + 'uom_po_id': uom_unit.id, + }) + product_t_1 = self.product_t.create({ + 'name': 'Log 1', + 'type': 'product', + 'uom_id': uom_unit.id, + 'uom_po_id': uom_unit.id, + }) + product_t_2 = self.product_t.create({ + 'name': 'Log 2', + 'type': 'product', + 'uom_id': uom_unit.id, + 'uom_po_id': uom_unit.id, + }) + product_t_3 = self.product_t.create({ + 'name': 'Log 3', + 'type': 'product', + 'uom_id': uom_unit.id, + 'uom_po_id': uom_unit.id, + }) + product_fg = self.product_p.create({ + 'product_tmpl_id': product_t_fg.id + }) + product_1 = self.product_p.create({ + 'product_tmpl_id': product_t_1.id + }) + product_2 = self.product_p.create({ + 'product_tmpl_id': product_t_2.id + }) + product_3 = self.product_p.create({ + 'product_tmpl_id': product_t_3.id + }) + BoM1 = self.bom.create({ + 'product_id': product_fg.id, + 'product_tmpl_id': product_fg.product_tmpl_id.id, + 'product_uom_id': uom_unit.id, + 'product_qty': 1.0, + 'type': 'normal', + 'move_raw_ids': [ + (0, 0, { + 'product_id': product_1.id, + 'product_qty': 4, + }), + (0, 0, { + 'product_id': product_2.id, + 'product_qty': 2, + }), + (0, 0, { + 'product_id': product_3.id, + 'product_qty': 2, + }) + ] + }) + + BoM1.write({ + 'notes': '

Test

' + }) + self.assertEqual(BoM1.notes, '

Test

') From d94a14e069be6b5a932600765d2b9a24fbe5b559 Mon Sep 17 00:00:00 2001 From: agung Date: Fri, 11 May 2018 11:07:40 +0700 Subject: [PATCH 13/13] [MIG] mrp_bom_note: Migration to 11.0 --- mrp_bom_note/README.rst | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/mrp_bom_note/README.rst b/mrp_bom_note/README.rst index 811c2ce5d..8ff580d0e 100644 --- a/mrp_bom_note/README.rst +++ b/mrp_bom_note/README.rst @@ -5,34 +5,29 @@ ========================== Notes in Bill of Materials ========================== - This module creates in BoM a new field to add notes Installation ============ - To install this module, you need to install mrp application. Configuration ============= - No configuration required. Usage ===== - 1. Go to Manufacturing > Master Data > Bill of Materials 2. Edit an existing BoM. 3. Fill in the Notes field on tab Notes. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/129/9.0 + :target: https://runbot.odoo-community.org/runbot/129/11.0 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 @@ -40,7 +35,6 @@ If you spotted it first, help us smashing it by providing a detailed and welcome Credits ======= - Images ------