mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
18 lines
664 B
XML
18 lines
664 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
|
|
<record id="timesheet_view_form_inherit" model="ir.ui.view">
|
|
<field name="name">account.analytic.line.form.inherit</field>
|
|
<field name="model">account.analytic.line</field>
|
|
<field name="inherit_id" ref="timesheet_grid.timesheet_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='task_id']" position="after">
|
|
<field name="work_type_id"
|
|
domain="[('allow_timesheet', '=', True)]"
|
|
context="{'default_allow_timesheet': True}" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|