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
@@ -7,7 +7,7 @@ MRP Auto Assign
|
|||||||
===============
|
===============
|
||||||
|
|
||||||
Simple module that make MO to reserve the raw material moves automatically
|
Simple module that make MO to reserve the raw material moves automatically
|
||||||
at creation.
|
at creation.
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
@@ -18,7 +18,7 @@ To use this module, you need to:
|
|||||||
|
|
||||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||||
:alt: Try me on Runbot
|
: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
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
@@ -40,6 +40,7 @@ Contributors
|
|||||||
------------
|
------------
|
||||||
|
|
||||||
* Florian da Costa <florian.dacosta@akretion.com>
|
* Florian da Costa <florian.dacosta@akretion.com>
|
||||||
|
* Sudhir Arya <sudhir@erpharbor.com>
|
||||||
|
|
||||||
Maintainer
|
Maintainer
|
||||||
----------
|
----------
|
||||||
|
|||||||
@@ -1,3 +1 @@
|
|||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
from . import models
|
from . import models
|
||||||
|
|||||||
@@ -8,9 +8,9 @@
|
|||||||
"author": "Akretion, Odoo Community Association (OCA)",
|
"author": "Akretion, Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/manufacture",
|
"website": "https://github.com/OCA/manufacture",
|
||||||
"category": "Manufacturing",
|
"category": "Manufacturing",
|
||||||
"version": "11.0.1.0.0",
|
"version": "12.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
|
"depends": ["mrp"],
|
||||||
"application": False,
|
"application": False,
|
||||||
"installable": True,
|
"installable": True,
|
||||||
"depends": ["mrp"],
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1 @@
|
|||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
from . import mrp_production
|
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
|
from . import test_auto_assign
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ class TestMrpAutoAssign(TransactionCase):
|
|||||||
self.stock_location_stock = self.env.ref('stock.stock_location_stock')
|
self.stock_location_stock = self.env.ref('stock.stock_location_stock')
|
||||||
self.manufacture_route = self.env.ref(
|
self.manufacture_route = self.env.ref(
|
||||||
'mrp.route_warehouse0_manufacture')
|
'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({
|
self.product_manuf = self.env['product.product'].create({
|
||||||
'name': 'Manuf',
|
'name': 'Manuf',
|
||||||
|
|||||||
Reference in New Issue
Block a user