mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-23 05:12:07 +02:00
17 lines
692 B
XML
17 lines
692 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="hr_timesheet_view_task_form2_inherited_inherit" model="ir.ui.view">
|
|
<field name="name">hr.timesheet.view.task.form2.inherited.inherit</field>
|
|
<field name="model">project.task</field>
|
|
<field name="inherit_id" ref="hr_timesheet.view_task_form2_inherited" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='unit_amount']" position="after">
|
|
<field
|
|
name="unit_amount_rounded"
|
|
string="Duration (rounded)"
|
|
widget="float_time"
|
|
/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|