mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
[10.0] [MIG] mrp_bom_note (#202)
This commit is contained in:
@@ -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 <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
* Ana Juaristi <anajuaristi@avanzosc.es>
|
||||
* Bima Wijaya <bimajatiwijaya@gmail.com>
|
||||
|
||||
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.
|
||||
|
||||
@@ -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 <oihanecrucelaegi@avanzosc.es>",
|
||||
"Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>",
|
||||
"Ana Juaristi <anajuaristi@avanzosc.es>",
|
||||
],
|
||||
"category": "Tools",
|
||||
"depends": [
|
||||
"mrp",
|
||||
@@ -22,5 +17,5 @@
|
||||
"data": [
|
||||
"views/mrp_bom_view.xml",
|
||||
],
|
||||
'installable': False
|
||||
'installable': True
|
||||
}
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user