Jira Software 9.0.0 (Server/On-Premise) and MyGroovy 1.22.1-jira8 plugin.
I have a use case where I want to prevent workflow transition using validator if user's non-response to custom field 1) is not captured or default value selected and if user's response is 2) a value other than "No". Custom field is a radio type custom field with options: "None" (default), "No", and "Yes".
Using Groovy inline script getting two errors:
"Cannot find matching method com.atlassian.jira.issue.mutableissue#getCustomFieldValue(long). Please check if the declared type is correct and the method exists." on line 9.
"Cannot find matching method java.lang.Object.getCustomFieldValue(java.lang.Object). Please check if the declared type is correct and the method exists." on line 18.
I've successfully solved for 1) above, so really looking for input on 2) - see script below.
New to this, so any help is appreciated - what am I missing?
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.component.ComponentAccessor
import com.opensymphony.workflow.InvalidInputException
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def CUSTOM_FIELD_ID = 12345L
def MESSAGE_ERROR = "Field ${getCustomFieldObject(CUSTOM_FIELD_ID)} is required"
def cFieldValue = issue.getCustomFieldValue(CUSTOM_FIELD_ID).getValue()
return cFieldValue
if(!getCustomFieldValue(issue, CUSTOM_FIELD_ID)){
throw new InvalidInputException(MESSAGE_ERROR)
}
def getCustomFieldValue(issue, Long fieldId) {
issue.getCustomFieldValue(getCustomFieldObject(fieldId))
}
def getCustomFieldObject(Long fieldId) {
ComponentAccessor.customFieldManager.getCustomFieldObject(fieldId)
}
if (cFieldValue == "Yes") {
throw new InvalidInputException("Epic cannot transition because Yes response selected - click Cancel")
}
So having the error message when selecting None is normal as None is actually not store as field value. Only No or Yes except if you created a None option manually that is not a good practice.
I would create a behaviour to set this field required in this transition, it will add a * that will guide the user. I assume you are using Scriptrunner.
The second error should not prevent the script to work. I think it's just because you did not type your fucntion.
add
import com.atlassian.jira.issue.fields.CustomField
Then type your function
CustomField getCustomFieldObject(Long fieldId) {
ComponentAccessor.customFieldManager.getCustomFieldObject(fieldId)
}
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not using ScriptRunner - strictly Groovy inline script built on the workflow transition via validator. After a quick test/running through transition in question on an active workflow, I've now lost the behavior where user input is required when "None" is selected from the three radio button options. Perhaps, some reordering of functions in script is needed.
This is the script after adding recommended import and function to script:
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.component.ComponentAccessor
import com.opensymphony.workflow.InvalidInputExceptionimport
// added import recommended
import com.atlassian.jira.issue.fields.CustomFieldCustomField
// added function recommended
getCustomFieldObject(Long fieldId) {
ComponentAccessor.customFieldManager.getCustomFieldObject(fieldId)
}
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def CUSTOM_FIELD_ID = 12345L
def MESSAGE_ERROR = "Field ${getCustomFieldObject(CUSTOM_FIELD_ID)} is required"
def cFieldValue = issue.getCustomFieldValue(CUSTOM_FIELD_ID).getValue()
return cFieldValue
if(!getCustomFieldValue(issue, CUSTOM_FIELD_ID)){
throw new InvalidInputException(MESSAGE_ERROR)
}
def getCustomFieldValue(issue, Long fieldId) {
issue.getCustomFieldValue(getCustomFieldObject(fieldId))
}
def getCustomFieldObject(Long fieldId) {
ComponentAccessor.customFieldManager.getCustomFieldObject(fieldId)
}
if (cFieldValue == "Yes") {
throw new InvalidInputException("Epic cannot transition because Yes response selected - click Cancel")
}
This script works flawlessly for requiring selection when "None" is the value:
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.component.ComponentAccessor
import com.opensymphony.workflow.InvalidInputException
import com.atlassian.jira.issue.fields.CustomField
def CUSTOM_FIELD_ID = 10405L
def MESSAGE_ERROR = "Field ${getCustomFieldObject(CUSTOM_FIELD_ID)} is required"
if(!getCustomFieldValue(issue, CUSTOM_FIELD_ID)){
throw new InvalidInputException(MESSAGE_ERROR)
}
def getCustomFieldValue(issue, Long fieldId) {
issue.getCustomFieldValue(getCustomFieldObject(fieldId))
}
def getCustomFieldObject(Long fieldId) {
ComponentAccessor.customFieldManager.getCustomFieldObject(fieldId)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Florian Bonniec , appreciate your last feedback help with above script!
I was not able to solve where to add function within the script - very new to mygroovy.
Script below works fine for requiring user response when "None" is the value selected - other two aerial options are "Yes" and "No" besides "None":
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.component.ComponentAccessor
import com.opensymphony.workflow.InvalidInputException
import com.atlassian.jira.issue.fields.CustomField
def CUSTOM_FIELD_ID = 10405L
def MESSAGE_ERROR = "Field ${getCustomFieldObject(CUSTOM_FIELD_ID)} is required"
if(!getCustomFieldValue(issue, CUSTOM_FIELD_ID)){
throw new InvalidInputException(MESSAGE_ERROR)
}
def getCustomFieldValue(issue, Long fieldId) {
issue.getCustomFieldValue(getCustomFieldObject(fieldId))
}
def getCustomFieldObject(Long fieldId) {
ComponentAccessor.customFieldManager.getCustomFieldObject(fieldId)
}
What I would like to accomplish next with script is when user selects "Yes", grey-out/disable the Not Applicable button to prevent transition - is this achievable?
Thanks in advance!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You cannot grey-out but you can block the transition by adding an error message like you did for the none.
if(getCustomFieldValue(issue, CUSTOM_FIELD_ID).name == "Yes"){
throw new InvalidInputException("Please, ...... cannot be Yes")
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Florian Bonniec
Thanks for that last input, though I don't follow.
Not familiar with use of the .name with getCustomFieldValue() - how does this work?
if(getCustomFieldValue(issue, CUSTOM_FIELD_ID).name
Also, would it be best to add 2nd error message just after the 1st (for "None" selection) like so?
if(!getCustomFieldValue(issue, CUSTOM_FIELD_ID)){
throw new InvalidInputException(MESSAGE_ERROR)
}
if(getCustomFieldValue(issue, CUSTOM_FIELD_ID).name == "Yes"){
throw new InvalidInputException("Response cannot be Yes")
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Continuation of original script with accepted solution...
https://community.atlassian.com/t5/Jira-Software-questions/Groovy-Script-Unsuccessful-Workflow-Transition-Block-if-Custom/qaq-p/2166584?utm_campaign=mentions_reply&utm_content=post&utm_medium=email&utm_source=atlcomm#U2167567
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.