Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

When transitioning an issue, how can you get the target status

francis
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
January 11, 2013

I need this information to write a workflow postfunction.
The issue status itself has not been updated yet.
(a workaround is to move the postfunction after the
'Set issue status to the linked status of the destination workflow step.')

Is there some property somewhere - associated to an action - which details out what the target status is - or target step ?

3 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

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.
January 12, 2013

In the transientVars is the action ID.

From the workflowDescriptor you get an Action object using the action ID, then you have the destination step:

def stepId = action.getUnconditionalResult()?.step
getWorkflowDescriptor().getStep(stepId)

francis
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
January 16, 2013

Works perfectly - as always.


Thanks Jamie.

Steven Kling September 25, 2016

action.getUnconditionalResult() doesn't always return the destination step/status info.  I've seen it where the transition is to say "Review" and it returns status name of "Done"

0 votes
francis
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
January 11, 2013

After some digging ...

List<ChangeItemBean> cibs = (List<ChangeItemBean>) transitionVars.get("changeItems");

String targetStatusName = null;
    	
    	// find the destiny transitionname
    	for (ChangeItemBean cib:cibs) {
    		if (cib.getField().equals("status") && cib.getFieldType().equals("jira")) {
    			targetStatusName = cib.getToString();
    		}
    	}
    	
    	if (targetStatusName == null) {
    		log.error("Transition without know target status");
    		return null;
    	}

0 votes
Renjith Pillai
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 11, 2013

Mostly you need to use WorkflowService, do a getWorkflow evaluate the steps - http://docs.atlassian.com/software/jira/docs/api/latest/com/atlassian/jira/bc/workflow/WorkflowService.html#getWorkflow(com.atlassian.jira.bc.JiraServiceContext, java.lang.String)

Looks complicated. But can you explain what are you trying to achieve by getting the status name?

francis
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
January 11, 2013

We are working on a new plugin, where the actions on the future status are required.
I did some digging and found some solution.

TAGS
AUG Leaders

Atlassian Community Events