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.
24 lines
912 B
XML
24 lines
912 B
XML
<openerp>
|
|
<data>
|
|
|
|
<record model="ir.ui.view" id="project_task_mrp_form_view">
|
|
<field name="name">project.task.mrp.inh.form</field>
|
|
<field name="model">project.task</field>
|
|
<field name="inherit_id" ref="mrp_project.project_task_mrp_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<field name="production_scheduled_products" position="after">
|
|
<field name="workorder_scheduled_products"
|
|
colspan="4"
|
|
nolabel="1"
|
|
attrs="{'invisible': [('workorder', '=', False)]}"
|
|
/>
|
|
</field>
|
|
<label for="production_scheduled_products" position="attributes">
|
|
<attribute name="invisible">1</attribute>
|
|
</label>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|