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)
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)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.