copy single select custom field value from one issue to another

Madhusudhan Matrubai October 4, 2017

I have a requirement to copy a single select custom field value from one jira to another based on few conditions. Currently the copy itself is not working in the first place, here is my sample groovy. If anyone can help me identify what's incorrect here.

import com.atlassian.jira.component.ComponentAccessor

def customFieldManager = ComponentAccessor.getCustomFieldManager()
def sourceIssue = ComponentAccessor.issueManager.getIssueObject("DUMMY-36")
def targetIssue = ComponentAccessor.issueManager.getIssueObject("DUMMY-38")

//Field name
def customField = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Test Field")


def sourceCustomFieldValue = sourceIssue.getCustomFieldValue(customField)


def cfConfig = customField.getRelevantConfig(targetIssue)
def value = ComponentAccessor.optionsManager.getOptions(cfConfig)?.find { it.toString() == "Apple" }
targetIssue.setCustomFieldValue(customField, value)
log.warn(sourceCustomFieldValue)
log.warn(value)

 

1 answer

Suggest an answer

Log in or Sign up to answer
1 vote
Madhusudhan Matrubai October 9, 2017
I have found my answer, just in case someone needs this. I have this working in a post function and would work for single/multi select fields.



import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder
import com.atlassian.jira.component.ComponentAccessor

def sourceIssue = ComponentAccessor.issueManager.getIssueObject("DUMMY-36")
def customField = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Test Field)
def sourceCustomFieldValue = sourceIssue.getCustomFieldValue(customField)
def targetCustomFieldValue = issue.getCustomFieldValue(customField)

def changeHolder = new DefaultIssueChangeHolder()
customField.updateValue(null, issue, new ModifiedValue(targetCustomFieldValue, sourceCustomFieldValue),changeHolder)
TAGS
AUG Leaders

Atlassian Community Events