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/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):