mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
================ MRP Project Link ================ This module links projects and tasks to *manufacturing orders* (MO) and *work orders* (WO). Usage ===== In a manufacturing order (MO), you can select a project to be attached to it. If none is selected, a project is automatically created when the MO is confirmed. When the MO starts, a task is created and assigned to the order.
24 lines
902 B
XML
24 lines
902 B
XML
<openerp>
|
|
<data>
|
|
|
|
<record model="ir.ui.view" id="project_mrp_procurement_shortcut_form_view">
|
|
<field name="name">project.shortcuts.mrp.procurement.form</field>
|
|
<field name="model">project.project</field>
|
|
<field name="inherit_id" ref="project.edit_project" />
|
|
<field name="arch" type="xml">
|
|
<div name="buttons" position="inside">
|
|
<button class="oe_inline oe_stat_button"
|
|
type="action"
|
|
name="%(mrp_project.act_project_2_production_all)d"
|
|
icon="fa-list">
|
|
<field string="Manufacturing" name="production_count"
|
|
widget="statinfo"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|