You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
633 B
16 lines
633 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!--Inheriting account form view-->
|
|
<record id="view_account_form" model="ir.ui.view">
|
|
<field name="name">account.account.view.form.inherit.base.accounting.kit</field>
|
|
<field name="model">account.account</field>
|
|
<field name="inherit_id" ref="account.view_account_form"/>
|
|
<field name="arch" type="xml">
|
|
<data>
|
|
<xpath expr="//field[@name='deprecated']" position="after">
|
|
<field name="cash_flow_type" widget="selection"/>
|
|
</xpath>
|
|
</data>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|