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: 

Writing a Groovy Expression for my Post Function with a custom field number

Carmen Nadeau
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.
February 13, 2017

First I am NOT a developer and I always write my groovy expression with what I find here in Atlassian answers. But not this time wink

I am trying to set a number custom field with a negative value. It is only done if another custom field has the "Non" value. Plus I will have to make sure that the custom field number is not already negative.

I tried different combinaison and I am not able to change the value of the field named Montant.

issue.getCustomFieldValue("customField_19313")
or
issue.get("customField_19313") * -1

 I really don't know what to try next. Any help will be appreciate.

image2017-2-13 15:3:14.png

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Vasiliy Zverev
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.
February 13, 2017

Try this one

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.fields.CustomField

CustomField montant = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Montant")

double curValue = issue.getCustomFieldValue(montant)

if(curValue > 0) {
    issue.setCustomFieldValue(
            montant
            , curValue * (-1)
    )
}
Carmen Nadeau
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.
February 21, 2017

Hi,

I will keep your answer but the client has decided to not do this. 

Thanks for your time, much appreciated.

TAGS
AUG Leaders

Atlassian Community Events