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.
20 lines
971 B
20 lines
971 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- Inherited to add extra fields-->
|
|
<record id="crossovered_budget_view_form" model="ir.ui.view">
|
|
<field name="name">budget.budget.view.form.inherit.account.budget.limit.alert</field>
|
|
<field name="model">budget.budget</field>
|
|
<field name="inherit_id"
|
|
ref="base_account_budget.crossovered_budget_view_form"/>
|
|
<field name="mode">primary</field>
|
|
<field name="priority">1</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//notebook//page[1]//field[@name='budget_line']//tree//field[@name='date_to']" position="after">
|
|
<field name="alert_type"/>
|
|
</xpath>
|
|
<xpath expr="//notebook//page[1]//field[@name='budget_line']//form//group//group[1]//field[@name='general_budget_id']" position="after">
|
|
<field name="alert_type"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|