Hi!
I am trying to transition a ticket through a listener, but it does not execute the transition since it executes the condition in said transition, even when we have the option activated to skip conditions.
here is my code:
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.workflow.WorkflowTransitionUtil
import com.atlassian.jira.workflow.WorkflowTransitionUtilImpl
import com.atlassian.jira.util.JiraUtils
import com.opensymphony.workflow.WorkflowContext
import com.atlassian.jira.component.ComponentAccessor
WorkflowTransitionUtil workflowTransitionUtil = ( WorkflowTransitionUtil ) JiraUtils.loadComponent( WorkflowTransitionUtilImpl.class );
String currentUser = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()
workflowTransitionUtil.setUserkey(currentUser)
def event = event.issue
def summary =event.summary
def user = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()
log.warn(user)
summary.contains("Nueva Modificación")
Here is the error:
2021-04-30 10:26:34,437 ERROR [utils.WorkflowUtils]: In-depth checking of each condition follows to determine why the action was not allowed. 2021-04-30 10:26:34,437 ERROR [utils.WorkflowUtils]: Parece que has intentado una operación del flujo de trabajo (Despliegue) que no es válida para el estado actual de la incidencia (DPG-100). Seguramente haya sido porque alguien ha cambiado la incidencia recientemente, por favor revisa el histórico de la incidencia para ver los detalles. 2021-04-30 10:26:34,438 ERROR [utils.WorkflowUtils]: OR (PASS) PASS: Sólo los usuarios del grupo GRUPO_IMPLANTACION pueden ejecutar esta transición. PASS: Sólo los usuarios del grupo GRUPO_ADM_IMPLANTACION pueden ejecutar esta transición. PASS: Sólo los usuarios del grupo GRUPO_DESPLIEGUE pueden ejecutar esta transición. PASS: Sólo los usuarios del grupo jira-administrators pueden ejecutar esta transición. 2021-04-30 10:26:34,438 ERROR [utils.WorkflowUtils]: Not attempting transition because of above errors.
Solved!
I miss put the transition directly to the state I want.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.