Workflow transition script condition always true

Jakub Gawryjolek January 22, 2018

Hi there,

I'm using ScriptRunner 5.2.2 and Jira 7.6.0 (server) versions. I'm trying to write a workflow transition scripted condition, but it always evaluates to TRUE. I tried returning false, or setting passedCondition to false, as the only statement in the script, and it still evaluated to true. Is it possible that it's a compatibility issue.

For reference, the whole script:

import com.atlassian.jira.issue.customfields.option.Option

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.issuetype.IssueType
import org.apache.log4j.Level
import org.apache.log4j.Logger

def customFieldManager = ComponentAccessor.getCustomFieldManager()

List<Integer> cfArray = Arrays.asList(15052,15054,15055,15344,15056,15440,15062,15057,15060,15061);

passedCondition = false

for (Integer cfId in cfArray) {
def cf = customFieldManager.getCustomFieldObject(new Long(cfId))

if (cf != null) {
Object cfValue = issue.getCustomFieldValue(cf)

if (cfValue != null) {
passedCondition = true
}
}
}

1 answer

1 accepted

1 vote
Answer accepted
Alexey Matveev
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.
January 22, 2018

Hello, 

It must be 

passesCondition = false

In your code it is passeDCondition. Try to write just a single line in your codition

passesCondition = false

The button must be hidden in this case

Jakub Gawryjolek January 22, 2018

Ahh, right. Feeling stupid about the typo. Thank you very much Alexey. That was it.

Suggest an answer

Log in or Sign up to answer