Hi there,
I have a workflow where i set up on all the transitions a Scriptrunner simple script validator, to make sure users actually choose a value on a custom field.
The script looks like this:
if (cfValues['My field']?.value == "Not defined" ){
return false
}
else if (cfValues['Myfield']?.value == null){
return false
}
else{
return true
}
It is somehow possible if users have selected a value in our custom field, to NOT show the pop-up screen when transitioning to the next status?