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: 

Script Field - Script not working after migration

Gerald Whittaker
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 31, 2020

Recently migrated to Jira Datacenter version from Jira Server.  On Jira Server Adaptavist Scriptrunner was populating a scripted field (Sum of all Story Points on Story Issue for all Epics using the epic story link) using the script below.   Since installing Adaptavist Scriptrunner on Jira Datacenter it is not working.  Any suggestions?

 

import com.atlassian.jira.component.ComponentAccessor

def doneNames = ["START WORK"]
def issueLinkManager = ComponentAccessor.getIssueLinkManager()
def totalSP = 0.0
enableCache = {-> false}

def customField1 = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Story Points")

issueLinkManager.getOutwardLinks(issue.id).findAll {
it.issueLinkType.name == "Epic-Story Link"
}.findAll {
!(it.destinationObject.status.name in doneNames)
}.each {
totalSP += it.destinationObject.getCustomFieldValue(customField1) as Double ?: 0.0
}

return totalSP as Double

0 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

TAGS
AUG Leaders

Atlassian Community Events