Why can I not set assignee by ID? (Script Runner)

Kyle Moseley _blueridge_cx_ October 15, 2014

I guess I'm misunderstanding something fundamental here. I'm running this script in the Script Console (Script Runner) and it will not assign the reporter to the issue. I don't want a work around, I'm just trying to understand how the different user objects work. 

I also tried using Script Runner's built in "setAssigneeId" in fast tracks and it did not work, coming from a fast track on the Create transition.

So, what am I missing here?

import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.IssueManager
//import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue

ComponentManager componentManager = ComponentManager.getInstance();
IssueManager issueManager = componentManager.getIssueManager()
MutableIssue issue = (MutableIssue) issueManager.getIssueObject("TFCT-9")

x = issue.getReporterId()
issue.setAssigneeId(x)

return x

2 answers

1 accepted

4 votes
Answer accepted
JamieA
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.
October 15, 2014

Your basic issue is you are not saving the issue back to the db, so you could just add issue.store()

But that won't reindex the issue so you won't be able to find it in searches until someone else edits it.

The correct and best way to do it is use IssueService:

def issueService = ComponentAccessor.getIssueService()
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def validateAssignResult = issueService.validateAssign(user, issue.id, issue.reporterId)
issueService.assign(user, validateAssignResult)

This will handle validation, saving, indexing, firing events if necessary, all of which you'd have to do manually with your method.

Not to say it's always wrong to handle this stuff yourself, but you need to be aware of what happens under the covers.

There is more to it than the above, context is all important. The above code is for a completely standalone transaction, outside of a workflow event. If you are running code in a transaction, and it runs before the build-in functions "Store an issue" and "Reindex the issue", the below code will work fine (and is correct):

issue.assigneeId = issue.reporterId

If you do it as above, the change history will show this change in the same change group as any other fields changed.

Would that also solve the issue of the Fast Track's additional code not assigning?

Sorry, I've lost track of all the fast-track problems.

Most of the built-in scripts that do things to issues take additional code. They do things using the IssueService, which takes an IssueInputParameters. This is in the binding, so in fast-track you'd use:

issueInputParameters.setAssigneeId(issue.reporterId)
Kyle Moseley _blueridge_cx_ October 15, 2014

As always, wonderful help. Added that and it works in Script Console. Would that also solve the issue of the Fast Track's additional code not assigning?

JamieA
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.
October 15, 2014

No problem. I expanded the answer a bit. Keep experimenting though!

JamieA
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.
October 15, 2014

I was thinking of trying to standardise the different ways of updating issues in the Additional code section, not come up with anything concrete yet though.

Kyle Moseley _blueridge_cx_ October 15, 2014

Thanks for expanding, very informative.

0 votes
Kyle Moseley _blueridge_cx_ October 15, 2014

Also, x returns a string of the user ID, so we know that getReporterId() is working.

Suggest an answer

Log in or Sign up to answer