mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<odoo>
|
||
<data>
|
||
<!-- Product -->
|
||
<record id="product_template_search_view_superbar" model="ir.ui.view">
|
||
<field name="name">product.template.search.ztree</field>
|
||
<field name="model">product.template</field>
|
||
<field name="inherit_id" ref="product.product_template_search_view"/>
|
||
<field name="arch" type="xml">
|
||
<xpath expr="//search">
|
||
<superbar position="right" view_mode="kanban,tree">
|
||
<field name="categ_id" domain="[]"
|
||
parent_key="parent_id" level="2"/>
|
||
<field name="type"/>
|
||
</superbar>
|
||
</xpath>
|
||
</field>
|
||
</record>
|
||
|
||
<!--产品list,目录显示短名,不生效停用。需要在action中传context才成-->
|
||
<!--<record id="app_product_template_tree_view" model="ir.ui.view">-->
|
||
<!--<field name="name">app.product.template.product.tree</field>-->
|
||
<!--<field name="model">product.template</field>-->
|
||
<!--<field name="inherit_id" ref="product.product_template_tree_view"/>-->
|
||
<!--<field name="arch" type="xml">-->
|
||
<!--<xpath expr="//field[@name='categ_id']" position="attributes">-->
|
||
<!--<attribute name="context">{'category_show_short': True}</attribute>-->
|
||
<!--</xpath>-->
|
||
<!--</field>-->
|
||
<!--</record>-->
|
||
</data>
|
||
</odoo> |