Commit 2b1f704c authored by Frank Bergmann's avatar Frank Bergmann

- DynFields:

  Added an exception fix for im_timesheet_task
  that doesn't yet have its own task_type_id in the DB.
parent f6b00799
......@@ -79,6 +79,15 @@ set top_scale [db_list top_dim "
category_id
"]
# Exception for timesheet tasks: Include the project_type_id=100 (Task)
# ToDo: Remove once tasks have their own task_type_id.
if {"im_timesheet_task" == $object_type} {
lappend top_scale 100
append object_subtype_sql "OR category_id = 100"
}
# The array maps category_id into "category" - a pretty
# string for each column, to be used as column header
set max_length 8
......
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