Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How hide workflow transition base on component selection?

Shah Baloch November 20, 2020

I'm trying to hide workflow transitions base on component selection. I created Behaviour script and getting errors. How I can declare a workflow transition? How I can accomplish this?

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.workflow.TransitionOptions
import com.atlassian.jira.bc.project.component.ProjectComponent
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
@BaseScript FieldBehaviours fieldBehaviours

def action = workflowManager.getActionsByName("Done")
def approved = workflowManager.getActionsByName("In Progress")
def components = getFieldById(getFieldChanged()).value as List<ProjectComponent>
if(components.any{it.name == 'Sales'}){
action.setHidden(true)
}
if(components.any{it.name == 'Support'}){
approved.setHidden(true)
}


scriptrunner_112020-01.pngscriptrunner_112020-02.png

Thank you

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Daniel Ebers
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 21, 2020

Hi Shah,

while I cannot help with the code itself I'd like to confirm we did something like this in the past using a simple scripted validator:

https://scriptrunner.adaptavist.com/6.14.0/jira/recipes/workflow/validators/simple-scripted-validators.html

On the contrary to what you wrote we did not use a Behaviour, though.
We also not aimed towards hiding the transition (condition) but show a error message to the user (validator).

Probably this would be an alternative for you? If so, the above linked documentation should help you to get an idea.

Cheers,
Daniel

TAGS
AUG Leaders

Atlassian Community Events