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