Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Populate issue key on custom field select-list

bootcamp
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!
July 9, 2019

Hello there,

I'm working on a script to grab the issue key and populate together with a custom field into a custom field select-list.

At the moment, I'm able to populate the custom field into the select-list. It would be great if you can point me into populating the issue key together with the custom field. 

Eg: Issue Key ABC-001 Custom field : Name: EDU 
Outcome : Select-list ABC-001 EDU

At the moment, I'm only able to populate EDU in the Select-list 

Any help is appreciated. 

Thank you.

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.fields.CustomField
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.issue.UpdateIssueRequest
import com.atlassian.jira.issue.fields.CustomField


@BaseScript FieldBehaviours fieldBehaviours
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def optionsManager = ComponentAccessor.getOptionsManager()

//get the text field.
def nameField = getFieldById(getFieldChanged())
assert nameField
def name = nameField.getValue() as String

//get the single select list
def selectList = customFieldManager.getCustomFieldObjectByName("System") as CustomField
assert selectList
def config = selectList.getRelevantConfig(getIssueContext())
def options = optionsManager.getOptions(config)

if(!options*.value.contains(name)){
//add options to the select list
def sequence = options*.sequence.max() as Long
optionsManager.createOption(config, null, sequence++, name )
}

 

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Antoine Berry
Community Champion
July 10, 2019

Hi @bootcamp ,

You need to use underlyingIssue to retrieve data from current issue. This does not work on the create screen as the issue is not created yet.

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.fields.CustomField
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.issue.UpdateIssueRequest
import com.atlassian.jira.issue.fields.CustomField


@BaseScript FieldBehaviours fieldBehaviours

if (underlyingIssue){
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def optionsManager = ComponentAccessor.getOptionsManager()

//get the text field.
def nameField = getFieldById(getFieldChanged())
assert nameField
def name = underlyingIssue.getKey() + " " + nameField.getValue() as String

//get the single select list
def selectList = customFieldManager.getCustomFieldObjectByName("System") as CustomField
assert selectList
def config = selectList.getRelevantConfig(getIssueContext())
def options = optionsManager.getOptions(config)

if(!options*.value.contains(name)){
//add options to the select list
def sequence = options*.sequence.max() as Long
optionsManager.createOption(config, null, sequence++, name )
}
}

Antoine

bootcamp
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!
July 10, 2019

Hello @Antoine Berry ,

 

Thank you for your answer. 

I've tried your script, I'm able to create issues but the value added to the Name Field and the Issue key is not getting added to the select-list field System. 

Previously, I was able to add the Name field to the select-list field System. 

This is my behaviors configuration. 

Capture.PNG

Hope this helps you.

Thank you.

Antoine Berry
Community Champion
July 15, 2019

Hi @bootcamp ,

Have you only changed the script since you were able to add an option ? What are the logs saying ?

I did not change the logic of your script, so it should be working as long as you are not on the create screen.

Antoine

TAGS
AUG Leaders

Atlassian Community Events