29 lines
1.5 KiB
XML
29 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record model="ir.ui.view" id="view_product_template_form_inherit_sf_manufacturing">
|
|
<field name="name">product.template.product.form.inherit.sf_manufacture</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="sf_sale.view_product_template_form_inherit_sf"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='general_information']/group/group[@name='group_standard_price']/field[@name='product_tag_ids']" position="after">
|
|
<field name="categ_type" invisible="1"/>
|
|
<field name="model_id" readonly="1" attrs="{'invisible': [('categ_type', '!=', '成品')]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="product_template_search_inherit_sf_manufacturing" model="ir.ui.view">
|
|
<field name="name">product.template.search</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_search_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='categ_id']" position="after">
|
|
<field name="part_number" string="零件图号"/>
|
|
<field name="part_name" string="零件名称"/>
|
|
<field name="model_id" string="模型ID"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo> |