Skip to content
Snippets Groups Projects
Commit 6f6a4b1a authored by Florian Damhaut's avatar Florian Damhaut
Browse files

[FIX] hr_attendance: report time not in decimal


Current behaviour:
- Time in pivot view of report in attendance is in decimal hours
(e.g. 90 minutes is noted as 1.5 instead of 1:30)

Behaviour after PR:
- Time is noted in proper time manner

opw-2752651

closes odoo/odoo#84554

Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
parent 0f40c375
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,8 @@
<pivot string="Attendance" disable_linking="1">
<field name="employee_id" type="row"/>
<field name="check_in" type="col"/>
<field name="worked_hours" type="measure"/>
<field name="overtime_hours" type="measure"/>
<field name="worked_hours" type="measure" widget="float_time"/>
<field name="overtime_hours" type="measure" widget="float_time"/>
</pivot>
</field>
</record>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment