forked from Mapan/odoo17e
46 lines
2.4 KiB
XML
46 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="crossovered_budget_view_form_dialog" model="ir.ui.view">
|
|
<field name="name">crossovered.budget.form.inherit</field>
|
|
<field name="model">crossovered.budget</field>
|
|
<field name="inherit_id" ref="account_budget.crossovered_budget_view_form"/>
|
|
<field name="mode">primary</field>
|
|
<field name="priority">999</field>
|
|
<field name="arch" type="xml">
|
|
<field name="user_id" position="attributes">
|
|
<attribute name="options">{'no_open': True}</attribute>
|
|
</field>
|
|
<xpath expr="//group//field[@name='company_id']" position="attributes">
|
|
<attribute name="options">{'no_create': True, 'no_open': True}</attribute>
|
|
</xpath>
|
|
<xpath expr="//header/button[@name='action_budget_confirm']" position="replace"/>
|
|
<xpath expr="//page[@name='budget_lines']/field[@name='crossovered_budget_line']/tree/field[@name='analytic_account_id']" position="attributes">
|
|
<attribute name="required">context.get('project_update', False)</attribute>
|
|
<attribute name="options">{'no_open': True}</attribute>
|
|
</xpath>
|
|
<xpath expr="//page[@name='budget_lines']/field[@name='crossovered_budget_line']/tree/field[@name='general_budget_id']" position="attributes">
|
|
<attribute name="options">{'no_open': True}</attribute>
|
|
</xpath>
|
|
<xpath expr="//page[@name='budget_lines']/field[@name='crossovered_budget_line']/tree/button[@name='action_open_budget_entries']" position="attributes">
|
|
<attribute name="invisible">1</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="crossovered_budget_lines_view_tree_inherit" model="ir.ui.view">
|
|
<field name="name">crossovered.budget.lines.view.tree.inherit</field>
|
|
<field name="model">crossovered.budget.lines</field>
|
|
<field name="inherit_id" ref="account_budget.view_crossovered_budget_line_tree"/>
|
|
<field name="mode">primary</field>
|
|
<field name="priority">999</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="/tree" position="inside">
|
|
<button type="object" name="action_open_budget_entries_for_project" string="Entries..."
|
|
icon="fa-arrow-circle-o-right"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|