On transition to InProgress, subtasks of this issue should be assigned to 'xyz' user. How to do that?

Shagufta Gurmukhdas November 24, 2016

Through groovy script  on an issue, how to write code to set assignees for the subtasks of the issue? I tried getting the subtask objects and iterating through each one of them and setting the assignee id, but i get the error that '"cannot set read-only property: AssigneeId". How should I go about this?

1 answer

1 accepted

0 votes
Answer accepted
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 Leaders.
November 24, 2016

Issue class is just represents issue. All methods to modify it are into MutableIssue. Issue.getSubTaskObjects() return collection of Issue objects. Since it is requered to transform it into MutableIssue ones. I usually do it like this:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.issue.MutableIssue

MutableIssue mutableIssue;
IssueManager issueManager = ComponentAccessor.getIssueManager();

for(Issue subtask: issue.getSubTaskObjects()){
    mutableIssue = issueManager.getIssueObject(subtask.getId())
    mutableIssue.setAssigneeId("")
    //
}
Shagufta Gurmukhdas November 24, 2016

@Vasiliy Zverev but this doesnt change the assignee id of the subtask issue. It just sets it for the mutable issue object we created. right?

Shagufta Gurmukhdas November 24, 2016

Okay I just ran an updateissue() and it worked! Thanks a lot!!!!  laugh

Suggest an answer

Log in or Sign up to answer