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: 

copy single select custom field value from one issue to another

Madhusudhan Matrubai
Contributor
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Madhusudhan Matrubai
Contributor
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