I have a number of custom fields (radio buttons) with simple Yes/No values attached to them. I need a scripted field to return the field names of all fields in that issue with a "Yes" value.
I imagine this is pretty easy to accomplish but am having a tough time. Any help would be so greatly appreciated!
Hi Clayton,
This is totally achievable. I've written the below script which will work in your scenario with a few minor modifications:
import com.atlassian.jira.component.ComponentAccessor
// Define resources
def customFieldMgr = ComponentAccessor.getCustomFieldManager()
// Do away with this in the field
def issueManager = ComponentAccessor.getIssueManager()
// Define the fields we want to check
def questions = ["First Question",
"Second Question",
"Third Question"] // <-- Change these for the names of the fields you want to check
def result = []
// Check the result of those fields and build output.
questions.each {
def field = customFieldMgr.getCustomFieldObjectByName(it)
if (field) {
def opt = issue.getCustomFieldValue(field)
if (opt && opt.getValue() == "Yes") {
result.add(it)
}
}
}
result
All you need to do is change the values in the questions variable to the names of your radio fields that you wish to check. This script should then work for you.
I hope this helps! Just reply if you have any questions :-)
Thank you! That is exactly what I'm looking for. Also really helpful, as I am trying to learn to implement Script Runner on a deeper level that the built-in scripts/JQL functionality. This is very clear and helpful. Thank you so much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.