Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Transition condition from Backlog to Selected for Development doesn't work?

David
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 27, 2018

Hi all,

I've been trying add a transition condition that prevents an issue from being moved from Backlog to Selected for Development if the field "Story point estimate" has no value but it doesn't seem to work.

 

Here's the transition setup:

Screen Shot 2018-10-27 at 1.29.30 PM.png

Thanks,
David

2 answers

1 vote
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.
October 28, 2018

Hello,

If you are on Cloud, then there is the Field Required validator.

If you are on Server, you would need an add-on.

For example you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could add a validator with the following script:

if (!hasInput("customfield_10200")) {
   return false, "customfield_10200", "Enter Story Points";

return true;

10200 is the id of the Story Points field.

You can find more info about validators here:

https://confluence.cprime.io/display/JJUPIN/Customizing+workflows

0 votes
David October 27, 2018

Hello David.

Can you set other type of comparison? Maybe a number comparison does not match with the "not null" check you are using.

Nice regards.

David
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 27, 2018

Hi David, I like your name!

 

I've tried that but it doesn't work unfortunately.

 

I've tried the following:

!= NULL (type number)

!= NULL (type string)

>0 (type number)

 

Thanks,

David

Suggest an answer

Log in or Sign up to answer