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

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. :)

Suggest an answer

Log in or Sign up to answer