The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira programatical clone is clonning Time Spent field value

Jose Miguel Garrido
May 25, 2020

If you try to clone an issue using *cloneIssueWithAllFields* is clonning the Time Spent cf, but not full worklogs

According to the inteface clone it should not copy any Time Tracking values

Example to reproduce the bug:

 

def task= issueManager.getIssueObject("FFS-1506")
def subtask = issueManager.getIssueObject("FFS-2851")
 
def toClone = issueFactory.cloneIssueWithAllFields(subtask)
Issue cloned = issueManager.createIssueObject(adminUser, toClone)
subTaskManager.createSubTaskIssueLink(task, cloned, adminUser)


The original Issue got  2h logged with my workLog

image.png

 

Cloned Issue got the 2h on Time Spent but not worklog

image.png

I tried to delete de workLog on the clonned issue using:

worklogManager.deleteWorklogsForIssue(cloned)

But it didnt work,

Do you know any way to reset that Spent Time value after the clone?

 

Thanks in advice

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Jose Miguel Garrido
June 17, 2020

There is a bug about this funcionality

https://jira.atlassian.com/browse/JRASERVER-60361

 

The way to solved it its adding the line toClone .setTimeSpent(null) just after use the  cloneIssueWithAllFields

def toClone = issueFactory.cloneIssueWithAllFields(subtask)
toClone .setTimeSpent(null); // <<<<<<<< CHANGE HERE >>>>>>>>