Transition to all sub-tasks

Gerald_Weber January 29, 2015

Hello guys,

can you tell me if there is an possibility to make a workflow transition that will change the status of all sub-tasks from this issue?

So ...when i click on the transition "reopen" every sub-task of this issue should take the status "new" from it's own workflow.

Is this possible?

Thank you so much!

Mike

1 answer

2 votes
Alejo Villarrubia [Adaptavist]
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.
January 29, 2015

Hi Gerald,

It is possible to achieve that if you create a post-function in the "reopen" transition that executes something like this:

import com.atlassian.crowd.embedded.api.User
import com.atlassian.jira.bc.issue.IssueService
import com.atlassian.jira.bc.issue.IssueService.TransitionValidationResult
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue

def Issue issue = issue

def workflowActionId = 21
def User adminUser = ComponentAccessor.userUtil.getUser("admin")
def IssueService issueService = ComponentAccessor.issueService

issue.subTaskObjects.each {
    def TransitionValidationResult validationResult = issueService.validateTransition(adminUser, it.id, workflowActionId, issueService.newIssueInputParameters())
    if (validationResult.valid) {
        issueService.transition(adminUser, validationResult)
    }
}

If those sub-tasks can have different statuses, you will need to find the appropriate actionId for each status and then execute the transition.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events