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: 

Set the previous value before the script listener trigger

Dan27
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.
July 24, 2018

Hello,

 

I would like to make a script listener with trigger- issue updated.

Inside the code I put a condition- if it's true I want that the update that made didn't save, and the previous value will keep.

 

example:

fixVersions = x

update issue - fixVersions = Y

if condition = true

fixVersions = x

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Tarun Sapra
Community Champion
July 24, 2018

Hello @Dan27

You can easily achieve this by using the "ChangeHistoryManager" to fetch the values for a specific field in the script listener, for example for Fix Versions something like this should do the trick

List<ChangeItemBean> changeList = changeHistoryManager.getChangeItemsForField(issue, "Fix Version")

 And then use the changeList to fetch the ChangeItemBean.

But as you said in your description

 if it's true I want that the update that made didn't save, and the previous value will keep.

This is not possible is Jira to "not" save the value because listener is fired after event has happened so the fixVersion will become value Y in DB but your listener script can change the value back to old value X thus to the end-user it will appear that the value has never changed but actually your listener overrides the new values with the last value.

Dan27
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.
July 24, 2018

Thank you @Tarun Sapra ,

Is there an import I need to add?

Tarun Sapra
Contributor
July 24, 2018

You need to add this

ChangeHistoryManager changeHistoryManager = ComponentAccessor.getChangeHistoryManager();

And these imports

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.changehistory.ChangeHistoryManager
import com.atlassian.jira.issue.history.ChangeItemBean 
Dan27
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.
July 24, 2018

@Tarun Sapra amazing thank you!!!!

But now I can't put this version in the 'FixVersions' custom Field of the issue

Capture1.PNG

Tarun Sapra
Community Champion
July 24, 2018

 

Hello @Dan27

Issue.setFixVersion expects an list but you are passing a single string which is not correct, thus you see the error, please go through the APIs here

https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/issue/MutableIssue.html#setFixVersions-java.util.Collection-

Dan27
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.
July 24, 2018

Hi @Tarun Sapra , 

this code: 

List<ChangeItemBean> changeList = changeHistoryManager.getChangeItemsForField(issue, "Fix Version")

Gives me a string... how can I edit the fix versions with this value?

Tarun Sapra
Contributor
July 25, 2018

Hello @Dan27

It returns lists of ChangeItemBean which you need to parse to get the string value which you want

https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/issue/history/ChangeItemBean.html

TAGS
AUG Leaders

Atlassian Community Events