I am trying to compare the custom field Risk_Priority_Value with the number 6 and return the text "High". The value in my JIRA test issue is "27" so Risk_Priority_Value is > 6. Can anyone please help with the proper syntax?
Thanks!
def Risk_Priority_Value=getCustomFieldValue("Risk Priority Value")
if (Risk_Priority_Value).compareTo(6)> 0
return "High"
import com.atlassian.jira.ComponentAccessor; import com.atlassian.jira.issue.CustomFieldManager; import com.atlassian.jira.issue.fields.CustomField; CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager() CustomField customField_name = customFieldManager.getCustomFieldObjectByName("Risk Priority Value"); if ( issue.getCustomFieldValue(customField_name) > 6) { return "High" } return ""
this should work but I have not tested it. Just written from my mind.
I get this error. did I miss editing a variable?
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: Script9.groovy: 1: unable to resolve class com.atlassian.jira.ComponentAccessor @ line 1, column 1. import com.atlassian.jira.ComponentAccessor; ^
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
as I mentioned it is written from my mind, quick check in the Java API and it shoud be:
import com.atlassian.jira.component.ComponentAccessor;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, I'll try again. will this still work if I re-configure the 3 fields to be either radio buttons or a select list rather than number fields?
return (Risk_Severity * Risk_Probability) * Risk_Detectability
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
They are actually 2 scripted fields. Risk Description is the scripted field where I want to display "High". Risk Priority Value is the other scripted field where I am calculating a number based on 3 other fields. see below.
def Risk_Severity = getCustomFieldValue("Risk Severity")
def Risk_Probability = getCustomFieldValue("Risk Probability")
def Risk_Detectability = getCustomFieldValue("Risk Detectability")
if (Risk_Severity) {
return (Risk_Severity * Risk_Probability) * Risk_Detectability
}
else {
return null
}
Template: Number Field
Configured searcher: Number Searcher
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Impossible to give good advice without answers to Henning's questions - but Michal's answer is valid provided it's a number field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What kind of custom field is Risk Priority Value? Where do you call the script?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.