You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
602 B
14 lines
602 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- Add new field to hr timesheet tree view-->
|
|
<record id="hr_timesheet_line_tree" model="ir.ui.view">
|
|
<field name="name">account.analytic.line.view.tree.inherit.timesheet.auto.create</field>
|
|
<field name="model">account.analytic.line</field>
|
|
<field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_tree"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//list/field[@name='task_id']" position="after">
|
|
<field name="status" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|