mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
18 lines
655 B
XML
18 lines
655 B
XML
<odoo>
|
|
<data>
|
|
<!-- stock -->
|
|
<record id="app_view_location_form" model="ir.ui.view">
|
|
<field name="name">app.stock.location.form</field>
|
|
<field name="model">stock.location</field>
|
|
<field name="inherit_id" ref="stock.view_location_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='location_id']" position="attributes">
|
|
<!-- Add your fields or attributes here -->
|
|
<attribute name="widget">ztree_select</attribute>
|
|
<attribute name="ztree_parent_key">location_id</attribute>
|
|
</xpath>
|
|
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo> |