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

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

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 Leaders.
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. 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events