Files
account-tools/account_budget_forecast/views/hr_employee.xml
2022-06-30 14:14:58 +02:00

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>