mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
================================== MRP Project Link (with operations) ================================== This module links manufacturing operations with projects. It performs the following actions: * Auto-create tasks for work orders with assigned operators. * Add a tab where to encode task for the work order. * Add a link on task for the work order scheduled product. Installation ============ This modules is auto-installed when you install *mrp_operations_extension* and *mrp_project*. Usage ===== In a manufacturing order (MO) containing work orders with at least one operator assigned, when a work order is started, a task is created and assigned to the operator. In the work order form, a new tab "Operators time" is added to input the the work log. Besides, in the related tasks, the products scheduled in the work order are listed.
27 lines
778 B
Python
27 lines
778 B
Python
# -*- coding: utf-8 -*-
|
|
# (c) 2015 Pedro M. Baeza - Serv. Tecnol. Avanzados
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
{
|
|
"name": "MRP Project Link (with operations)",
|
|
"summary": "Create task for work orders with operators",
|
|
"version": "8.0.1.0.0",
|
|
"depends": [
|
|
"mrp_project",
|
|
"mrp_operations_extension",
|
|
],
|
|
'license': 'AGPL-3',
|
|
"author": "OdooMRP team,"
|
|
"AvanzOSC,"
|
|
"Serv. Tecnol. Avanzados - Pedro M. Baeza,"
|
|
"Antiun Ingeniería,"
|
|
"Odoo Community Association (OCA)",
|
|
"category": "Manufacturing",
|
|
'data': [
|
|
"views/mrp_production_view.xml",
|
|
"views/project_task_view.xml",
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
}
|