The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

jmwe conditional transition for compare two value

Muhammet Ayal
December 11, 2017

Hi all, 

I would like to make a oto transition as two number custom field. And I am using jmwe plugin "Transition Issue" post function. My fields are "Cost" and "Value".  If  Value <10 and Cost>12 , make a status transition. 

How can I write a script for this. 

 

Thanks for now. 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Ivan Tovbin
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 Champions.
December 11, 2017

Hi Muhammet,

 

First off you need to know the IDs of your "Cost" and "Value" fields. To do that go Administration -> Issues -> Custom fields. Select your custom field and click 'Edit'. After that check the URL bar in your browser, it will have something like '/secure/admin/EditCustomField!default.jspa?id=13300'. These last five digits is the ID of this field.

For the purposes of this answer let's assume that your "Cost" field has ID 12500 and "Value" has ID 12700

Then the script in your post function should look like:

if(issue.get("customfield_12500") > 12 && issue.get("customfield_12700") < 10){
return true
}
return false

 

 

Muhammet Ayal
December 11, 2017

Hi, really thanks Ivan - very easy. 

TAGS
AUG Leaders

Atlassian Community Events