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:Ā 

Set a created date to now whenever a Jira issue is moved from one project to another project

DevaKiran
Contributor
January 9, 2020

Hi All,

I need a script to the following requirement:

Whenever a Jira issue is moved from one project to another project the created date will set to the present date.

Could anyone please provide a script for the above requirement.

Thanks in Advance!!!

Regards

Deva Kiran

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Antoine Berry
Community Champion
January 10, 2020

Hi @DevaKiran ,

I would suggest to add a script listener on the Issue Moved event. Select the appropriate projects and use this script : 

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.index.IssueIndexingService

def changeItem = event?.getChangeLog()?.getRelated("ChildChangeItem")
def sourceProject = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find {it.field == "project"}?.oldstring
def targetProject = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find {it.field == "project"}?.newstring

if (sourceProject && sourceProject != targetProject){
issue.setCreated(new Date().toTimestamp())
def issueIndexingService = ComponentAccessor.getComponent(IssueIndexingService)
issue.store()
issueIndexingService.reIndex(issue)
}

 Let me know if that helps.

Antoine

HimaBindu M
January 10, 2020

Hi Antoine,

The above script worked in our project. Thanks a ton for your prompt response. Your reply saved lot of time for me and Dev.

 

Many thanks again,

Kind Regards,

Hima

Like • Antoine Berry likes this
Antoine Berry
Community Champion
January 10, 2020

You are very welcome ! Glad it helped. :)