Hi,
I am trying to write post function that reset user's values (values passed by user to transition screen form). I also need to move those values to the subtask issue so i used 'Create a sub-task' script post function variant and pass this code to it:
import com.atlassian.jira.issue.Issue import com.atlassian.jira.issue.MutableIssue def i = transientVars.issue as MutableIssue def originali = transientVars.originalissueobject as Issue println originali.summary println i.summary i.summary = originali.summary
It works, but the problem is with issue history:
Issue summary before transition was '10'. During transition i passed '11' to summary field on sreeen. After transition execution i got this history entry:
catch1.PNG
The values are swapped. How to fix it ?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.