mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
[MIG] Migrated mrp_auto_assign to v12
This commit is contained in:
committed by
JordiMForgeFlow
parent
eb5cd7a2ee
commit
71af2d5049
@@ -18,7 +18,7 @@ To use this module, you need to:
|
||||
|
||||
.. 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/11.0
|
||||
:target: https://runbot.odoo-community.org/runbot/129/12.0
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
@@ -40,6 +40,7 @@ Contributors
|
||||
------------
|
||||
|
||||
* Florian da Costa <florian.dacosta@akretion.com>
|
||||
* Sudhir Arya <sudhir@erpharbor.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import models
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
"author": "Akretion, Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/manufacture",
|
||||
"category": "Manufacturing",
|
||||
"version": "11.0.1.0.0",
|
||||
"version": "12.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"depends": ["mrp"],
|
||||
"application": False,
|
||||
"installable": True,
|
||||
"depends": ["mrp"],
|
||||
}
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import mrp_production
|
||||
|
||||
2
mrp_auto_assign/readme/CONTRIBUTORS.rst
Normal file
2
mrp_auto_assign/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
* Florian da Costa <florian.dacosta@akretion.com>
|
||||
* Sudhir Arya <sudhir@erpharbor.com>
|
||||
2
mrp_auto_assign/readme/DESCRIPTION.rst
Normal file
2
mrp_auto_assign/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
Simple module that make MO to reserve the raw material moves automatically
|
||||
at creation.
|
||||
7
mrp_auto_assign/readme/USAGE.rst
Normal file
7
mrp_auto_assign/readme/USAGE.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
To use this module, you need to:
|
||||
|
||||
#. Go to *Manufacturing* and create a Manufacturing Order.
|
||||
|
||||
.. 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/12.0
|
||||
@@ -1,3 +1 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_auto_assign
|
||||
|
||||
@@ -14,7 +14,7 @@ class TestMrpAutoAssign(TransactionCase):
|
||||
self.stock_location_stock = self.env.ref('stock.stock_location_stock')
|
||||
self.manufacture_route = self.env.ref(
|
||||
'mrp.route_warehouse0_manufacture')
|
||||
self.uom_unit = self.env.ref('product.product_uom_unit')
|
||||
self.uom_unit = self.env.ref('uom.product_uom_unit')
|
||||
|
||||
self.product_manuf = self.env['product.product'].create({
|
||||
'name': 'Manuf',
|
||||
|
||||
Reference in New Issue
Block a user