19 lines
775 B
XML
19 lines
775 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
|
|
<!-- ================================================功能刀具类型================================================ -->
|
|
<record id="view_cutter_function_inherit_tree" model="ir.ui.view">
|
|
<field name="name">sf.cutter.function.inherit.tree</field>
|
|
<field name="model">sf.functional.cutting.tool.model</field>
|
|
<field name="inherit_id" ref="sf_base.view_cutter_function_tree"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='name']" position="after">
|
|
<field name="cutting_tool_type_ids" widget="many2many_tags" options="{'no_create': True}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- 功能刀具类型搜索 -->
|
|
|
|
</odoo>
|