You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I would like to change get the last transition date, how do I change this script runner script to do this?
Many Thanks
Kevin
package com.onresolve.jira.groovy.test.scriptfields.scripts
import com.atlassian.jira.component.ComponentAccessor
def changeHistoryManager = ComponentAccessor.getChangeHistoryManager()
def created = changeHistoryManager.getChangeItemsForField(issue, "status").find {
it.toString == "Done"
}?.getCreated()
def createdTime = created?.getTime()
createdTime ? new Date(createdTime) : null
I'd like to figure this one out to. The problem is this:
I can make a scripted field to capture the date the transition was executed, and I'm all set for new issues.
However, my user just asked to get this populated on existing issues, which means poking through history.
I assume I need to build an array here and look for the last instance, but perhaps there is some more elegant way to do this.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.