Files
manufacture/mrp_mto_with_stock/__manifest__.py
Isaac Gallart Bochons 6e45c744fa [FIX] mrp_mto_with_stock: Error singleton
Loop second haven't production, it has self.
2019-06-11 13:55:39 +02:00

27 lines
820 B
Python

# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# Copyright 2015 John Walsh
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "MRP MTO with Stock",
"summary": "Fix Manufacturing orders to pull from stock until qty is "
"zero, and then create a procurement for them.",
"author": "John Walsh, Eficent, Odoo Community Association (OCA)",
"website": "https://odoo-community.org/",
"category": "Manufacturing",
"version": "11.0.2.0.1",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"stock",
"mrp",
"stock_available_unreserved",
],
"data": [
'views/product_template_view.xml',
'views/stock_warehouse.xml',
],
"demo": ['demo/product.xml'],
}