Bug? Movement of project does not move logged hours on issues.
Current
I created a project with issues but I made 3 projects of it. So I used the "Move" feature to move the issue to another project. Since time is logged against issues, I was thinking the time would also move along. But this is not the case. I used the next SQL to correct for:
select from issues where projid = 26
SELECT FROM timetracking WHERE PROJID = 26
BEGIN TRANSACTION
UPDATE TIMETRACKING SET PROJID=26
WHERE ENTRYID IN
(
SELECT ENTRYID FROM timetracking WHERE PROJID = 9
AND ISSUEID IN (211, 218, 268, 270, 216, 271)
)
COMMIT
Desired
Move time also to other project. The projid of the timetracking is not updated accordingly.
|
Jelle Ossewaarde
· 1 |
|
| Wednesday, July 12, 2006, 10:13:27 PM | |




