Commit 46f91e76 authored by Frank Bergmann's avatar Frank Bergmann

- fixed rounding issue

parent 8ac9dfe8
......@@ -231,8 +231,8 @@ ad_proc im_timesheet_invoicing_project_hierarchy {
im_category_from_id(children.project_type_id) as project_type,
tree_level(children.tree_sortkey) - tree_level(parent.tree_sortkey) as level,
t.task_id,
t.planned_units,
t.billable_units,
round(t.planned_units * 100) / 100.0 as planned_units,
round(t.billable_units * 100) / 100.0 as billable_units,
t.uom_id,
m.material_name,
m.material_billable_p,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment