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: 

How to get another ticket description in "Create sub task" script post-function

Vladimir Pekin
June 22, 2015

Hello,

 

I'm working with "Create sub task" script post-function and made automatic change of summary and description by following code in "Additional issue actions" section:

issue.summary = issue.summary + ' Perform initial tuning'
issue.description = 'Please perform initial tuning of a new client.'

This works perfect but I would not like to hardcode issue summary and description but prefer to take it from another ticket (it will be template ticket which is kept in different project). I've tried following code:

issue.summary = issueManager.getIssueObject("FOO-5").summary
issue.description = issueManager.getIssueObject("FOO-5").description

I did the same in Groovy script (with import of IssueManager class) and it works but in script post-function it doesn't work.

Could you advise me how I can get description and summary of other already created issue in "Create sub task" script post-function?

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Vladimir Pekin
June 22, 2015

Looks like I'm able to do it with following code (forgot to import proper classes):

import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.component.ComponentAccessor
IssueManager issueManager = ComponentAccessor.getIssueManager()
MutableIssue xIssue = issueManager.getIssueObject("FOO-5")
issue.summary = xIssue.summary
issue.description = xIssue.description