Files
account-tools/account_budget_forecast/views/hr_employee.xml
Stéphan Sainléger d76796bfa7 [UPD] Use analytic tags to link incomes/expenses to budget lines
instead of a direct budget_forecast field
2022-06-30 14:14:58 +02:00

16 lines
583 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="tag_ids" widget="many2many_tags" /> <!--domain="[('display_type', '=', 'line_article')]" />-->
</xpath>
</field>
</record>
</odoo>