91 lines
3.7 KiB
XML
91 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<data>
|
|
|
|
<!-- 刀具物料action -->
|
|
<record id="action_sf_cutting_tool_material" model="ir.actions.act_window">
|
|
<field name="name">刀具物料</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sf.cutting.tool.material</field>
|
|
<field name="view_mode">tree</field>
|
|
</record>
|
|
<!-- 刀具类型action -->
|
|
<record id="action_sf_cutting_tool_type" model="ir.actions.act_window">
|
|
<field name="name">刀具类型</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sf.cutting.tool.type</field>
|
|
<field name="view_mode">tree</field>
|
|
</record>
|
|
<!-- 刀具型号action -->
|
|
<record id="action_sf_cutting_tool" model="ir.actions.act_window">
|
|
<field name="name">刀具型号</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sf.cutting.tool.model</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
<!-- 功能刀具action -->
|
|
<record id="action_sf_functional_cutting_tool" model="ir.actions.act_window">
|
|
<field name="name">功能刀具</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sf.functional.cutting.tool</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
<!-- 功能刀具类型 -->
|
|
<record id="action_sf_functional_cutting_tool_model_type" model="ir.actions.act_window">
|
|
<field name="name">功能刀具类型</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sf.functional.cutting.tool.model</field>
|
|
<field name="view_mode">tree</field>
|
|
</record>
|
|
|
|
<!-- 刀具 -->
|
|
<menuitem
|
|
id="menu_sf_cutting_tool"
|
|
parent="mrp.menu_mrp_configuration"
|
|
name="刀具"
|
|
sequence="4"
|
|
/>
|
|
<!-- 刀具物料 -->
|
|
<menuitem
|
|
id="menu_sf_cutting_tool_material"
|
|
parent="menu_sf_cutting_tool"
|
|
name="刀具物料"
|
|
sequence="1"
|
|
action="action_sf_cutting_tool_material"
|
|
/>
|
|
<!-- 刀具类型 -->
|
|
<menuitem
|
|
id="menu_sf_cutting_tool_type"
|
|
parent="menu_sf_cutting_tool"
|
|
name="刀具类型"
|
|
sequence="2"
|
|
action="action_sf_cutting_tool_type"
|
|
/>
|
|
<!-- 刀具型号 -->
|
|
<!-- <menuitem-->
|
|
<!-- id="menu_sf_integral_cutting_tool"-->
|
|
<!-- parent="menu_sf_cutting_tool"-->
|
|
<!-- name="刀具型号"-->
|
|
<!-- sequence="3"-->
|
|
<!-- action="action_sf_cutting_tool"-->
|
|
<!-- />-->
|
|
<!-- 功能刀具 -->
|
|
<!-- <menuitem-->
|
|
<!-- id="menu_sf_functional_cutting_tool"-->
|
|
<!-- parent="menu_sf_cutting_tool"-->
|
|
<!-- name="功能刀具"-->
|
|
<!-- sequence="5"-->
|
|
<!-- action="action_sf_functional_cutting_tool"-->
|
|
<!-- />-->
|
|
<!-- 功能刀具类型 -->
|
|
<menuitem
|
|
id="menu_sf_functional_cutting_tool_model_type"
|
|
parent="menu_sf_cutting_tool"
|
|
name="功能刀具类型"
|
|
sequence="4"
|
|
action="action_sf_functional_cutting_tool_model_type"
|
|
/>
|
|
|
|
</data>
|
|
</odoo>
|