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.
14 lines
639 B
14 lines
639 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inheriting the analytic account form view -->
|
|
<record id="account_analytic_account_view_form" model="ir.ui.view">
|
|
<field name="name">account.analytic.account.view.form.inherit.progress.billing</field>
|
|
<field name="inherit_id" ref="analytic.view_account_analytic_account_form"/>
|
|
<field name="model">account.analytic.account</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='code']" position="after">
|
|
<field name="total_progress_billing"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|