mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
FIX: Operation where is production properly handled IMP: Some views enhanced FIX: No warning at MO confirmation if there is no route. IMP: Show cycle length and capacity in route. FIX: Propagate capacity data.
51 lines
2.1 KiB
XML
51 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="rountig_operation_tree" model="ir.ui.view">
|
|
<field name="name">routing.operation.tree</field>
|
|
<field name="model">mrp.routing.operation</field>
|
|
<field name="arch" type="xml">
|
|
<tree string="Routing Operation">
|
|
<field name="name" />
|
|
<field name="code" />
|
|
<field name="description" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
<record id="rountig_operation_form" model="ir.ui.view">
|
|
<field name="name">routing.operation.form</field>
|
|
<field name="model">mrp.routing.operation</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Routing Operation">
|
|
<group col="4">
|
|
<field name="name" colspan="2"/>
|
|
<field name="code" colspan="2"/>
|
|
<field name="description" colspan="2"/>
|
|
<field name="steps" colspan="2"/>
|
|
<field name="op_number" colspan="2" />
|
|
<field name="picking_type_id" colspan="2" />
|
|
</group>
|
|
<notebook>
|
|
<page string="Workcenters">
|
|
<field name="workcenters" colspan="4" nolabel="1"/>
|
|
</page>
|
|
</notebook>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="mrp_routing_operation_action" model="ir.actions.act_window">
|
|
<field name="name">Routing Operation</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">mrp.routing.operation</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
|
|
<menuitem action="mrp_routing_operation_action"
|
|
name="Operations"
|
|
id="mrp_routing_menu"
|
|
parent="mrp.menu_mrp_configuration" />
|
|
</data>
|
|
</openerp>
|