Identify time entry user just like issue assignee (#32196).

git-svn-id: http://svn.redmine.org/redmine/trunk@18891 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2019-11-02 11:51:53 +00:00
parent 3afd17f83e
commit a7ffe39289
2 changed files with 9 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
row;issue_id;date;hours;comment;activity;overtime;user_id
1;;2020-01-01;1;Some Design;Design;yes;2
2;;2020-01-02;2;Some Development;Development;yes;2
3;1;2020-01-03;3;Some QA;QA;no;3
4;2;2020-01-04;4;Some Inactivity;Inactive Activity;no;2
1;;2020-01-01;1;Some Design;Design;yes;jsmith@somenet.foo
2;;2020-01-02;2;Some Development;Development;yes;jsmith@somenet.foo
3;1;2020-01-03;3;Some QA;QA;no;dlopper@somenet.foo
4;2;2020-01-04;4;Some Inactivity;Inactive Activity;no;jsmith@somenet.foo
1 row issue_id date hours comment activity overtime user_id
2 1 2020-01-01 1 Some Design Design yes 2 jsmith@somenet.foo
3 2 2020-01-02 2 Some Development Development yes 2 jsmith@somenet.foo
4 3 1 2020-01-03 3 Some QA QA no 3 dlopper@somenet.foo
5 4 2 2020-01-04 4 Some Inactivity Inactive Activity no 2 jsmith@somenet.foo