Files
test/sf_bpm_api/views/product_template_view.xml
2022-10-11 21:54:44 +08:00

28 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<data>
<record model="ir.ui.view" id="view_product_template_form_inherit_sf">
<field name="name">product.template.form.inherit.sf</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_only_form_view"/>
<field name="arch" type="xml">
<xpath expr="//page[last()]" position="after">
<page string="CNC加工">
<group string="模型">
<group>
<field name="model_long" />
<field name="model_width" />
<field name="model_height" />
<field name="model_volume" />
</group>
<group>
<field name="model_precision"/>
<field name="materials_id"/>
</group>
</group>
</page>
</xpath>
</field>
</record>
</data>
</odoo>