[MIG] mrp_bom_responsible: Migration to 14.0

This commit is contained in:
Héctor Villarreal Ortega
2022-06-23 10:54:28 +02:00
parent 07d04a367e
commit ede5228cb7
5 changed files with 16 additions and 12 deletions

View File

@@ -6,14 +6,11 @@
"summary": """
Adds a responsible to the Bill of Materials which then will be
forwarded to the Manufacturing Order""",
"version": "12.0.1.0.0",
"version": "14.0.1.0.0",
"license": "AGPL-3",
"author": "ForgeFlow S.L.,"
"Odoo Community Association (OCA)",
"website": "https://www.github.com/OCA/manufacture",
"depends": [
"mrp"
],
"author": "ForgeFlow S.L., Odoo Community Association (OCA)",
"website": "https://github.com/OCA/manufacture",
"depends": ["mrp"],
"data": [
"views/mrp_bom_views.xml",
],

View File

@@ -1 +1 @@
Adds a responsible to the Bill of Materials which then will be forwarded to the Manufacturing Order
Adds a responsible to the Bill of Materials which then will be forwarded to the Manufacturing Order

View File

@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="mrp_bom_form_view" model="ir.ui.view">
<field name="name">mrp.bom.form</field>
<field name="model">mrp.bom</field>
<field name="inherit_id" ref="mrp.mrp_bom_form_view"/>
<field name="inherit_id" ref="mrp.mrp_bom_form_view" />
<field name="arch" type="xml">
<field name="code" position="after">
<field name="user_id"/>
<field name="user_id" />
</field>
</field>
</record>
</odoo>
</odoo>

View File

@@ -0,0 +1 @@
../../../../mrp_bom_responsible

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)