create subtask on transition not using automatic assignee

Micah Figone March 5, 2014

With the following in the additional issue actions the subtask is just being assigned to me and not the default assignee for the component.

import com.atlassian.jira.ComponentManager

import com.atlassian.jira.issue.CustomFieldManager

import com.atlassian.jira.issue.Issue

import com.atlassian.jira.issue.MutableIssue

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

import com.atlassian.crowd.embedded.api.User

import com.atlassian.jira.project.Project

import com.atlassian.jira.bc.project.component.ProjectComponent

MutableIssue issue = issue

//parent = issue.getParentObject()

ComponentManager componentManager = ComponentManager.getInstance()

CustomFieldManager customFieldManager = componentManager.getCustomFieldManager()

//Get valuje of user picker custom field

CustomField customField = customFieldManager.getCustomFieldObjectByName("Name")

customFieldValue = issue.getCustomFieldValue(customField)

//set components

Project project = issue.getProjectObject()

ProjectComponent component = componentManager.getProjectComponentManager().findByComponentName(project.getId(), "Laptop Provisioning")

issue.setComponents([component.getGenericValue()])

String prefix = customFieldValue

println customFieldValue

println prefix

issue.summary = prefix + ' - Provision Laptop'

1 answer

1 accepted

0 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.
March 5, 2014

Is the parent assigned to you? It defaults to taking all values from the parent IIRC. If you want it to take the value of the first component lead you need to do that yourself.

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.
March 5, 2014

Not tested but something like:

def components = issue.componentObjects
if (components) {
    issue.assigneeId = components.first().lead
}

Micah Figone March 5, 2014

Yes it is assigned to me. Would you be able to give me the code that I can use to set the assignee to the component lead?

Micah Figone March 5, 2014

That worked! Thanks Jamie!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events