16 lines
560 B
XML
16 lines
560 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="hr_timesheet_view_tree_inherit_budget" model="ir.ui.view">
|
|
<field name="name">hr.timesheet.tree.timesheet</field>
|
|
<field name="model">account.analytic.line</field>
|
|
<field name="priority">20</field>
|
|
<field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_tree" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='task_id']" position="after">
|
|
<field name="budget_forecast_id" domain="[('display_type', '=', 'line_article')]" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo> |