trytond-account_code_digits/account.xml

38 lines
1.4 KiB
XML

<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="account_create_chart_account_account_view_form">
<field name="model">account.account.create_chart_account.account</field>
<field name="type">form</field>
<field name="inherit" ref="account.account_create_chart_account_account_view_form"/>
<field name="arch" type="xml">
<![CDATA[
<xpath expr="/form/field[@id='account_template']" position="after">
<label name="account_code_digits"/>
<field name="account_code_digits"/>
</xpath>
]]>
</field>
</record>
<record model="ir.ui.view" id="account_update_chart_account_init_view_form">
<field name="model">account.account.update_chart_account.init</field>
<field name="type">form</field>
<field name="inherit" ref="account.account_update_chart_account_init_view_form"/>
<field name="arch" type="xml">
<![CDATA[
<xpath expr="/form/field[@name='account']" position="after">
<label name="account_code_digits"/>
<field name="account_code_digits"/>
</xpath>
</form>
]]>
</field>
</record>
</data>
</tryton>