I am trying to get it for a linked issue which should check for a custom field "radio button" yes or no. if yes, the linked issue should have a custom text field filled. If it is empty, my validator should through error.
I tried this script from another answer, which partially works
{code}
import com.atlassian.jira.component.ComponentAccessor
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def subTasks = issue.getSubTaskObjects()
def childCfValue
if (issue.issueType.name == "Bug") {
issueLinkManager.getOutwardLinks(issue.id).first() { issueLink -> // go through all issues linked off of the Story
def linkedIssue = issueLink.getDestinationObject()
def customField = customFieldManager.getCustomFieldObjectByName("customfield_xxxx")
return linkedIssue.getCustomFieldValue(customField)
}
}
if (subTasks) {
issue.getSubTaskObjects().each { subtask -> // go through sub-task issues
def customField = customFieldManager.getCustomFieldObject("customfield_12220")
childCfValue = subtask.getCustomFieldValue(customField)
}
}
{code}
-Sumedh