It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I'm trying to create a scripted field which displays the user name of the author who moved the issue to Resolved state. This is the code i'm trying to use.
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.ComponentManager;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.history.ChangeItemBean;
def historyManager = ComponentAccessor.getChangeHistoryManager()
def uselist = historyManager.getChangeHistories(issue);
if (uselist)
uselist.authorUser
def result = historyManager.getChangeItemsForField ( issue, "status")
if (result)
{
result.toString
}
Above snippet displays the below output.
[In Progress, Resolved, In Progress, Resolved, QA Validation, QA Validation, Reopened, In Progress, Resolved, QA Validation, QA Validation, QA Validation, Closed, Reopened, In Progress, Resolved, In Progress, Resolved, In Progress, Resolved, Reopened, In Progress, Resolved, QA Validation, QA Validation, Reopened, Closed, Closed, Reopened, Resolved
It doesnot provide any output when i enter if(result == Resolved) and at the same time doesnot throw any erorr as well. I'm a newbie in Groovy. Please let me know what needs to be modified here.
Regards,
Bhargavi.
Hi @Bhargavi Nannapaneni,
This solution should solve your problem, assuming you are using a User Picker template:
import com.atlassian.jira.component.ComponentAccessor; def historyManager = ComponentAccessor.getChangeHistoryManager() def userUtil = ComponentAccessor.getUserUtil() def changeItems = historyManager.getAllChangeItems(issue).findAll { changeItem -> changeItem.field == "status" && changeItem.toValues.find{ it.value == "In Progress"} } changeItems.collect { userUtil.getUserByKey(it.userKey) }
Hope it helps
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreAtlas Camp is our developer event which will take place in Barcelona, Spain from the 6th -7th of September . This is a great opportunity to meet other developers and get n...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.