Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Schedule different spings

Tommaso Scorteccia
March 6, 2021

Hi community,

I would like to schedule the task/sprints for my team.

I would like to have a simple way to schedule our springs. For example: Sprint 1 from 2 to 16 february, sprint 2 from 5 to 19 february and so on...

I tryied to use the parallels sprint but the problem was that I saw all the task in the same column, It seems that all task start at the same time, and the assignee has to do the task doesn't understand when the task has to be done.

 

Can somebody can explain to me?

 

 

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Jiri
Contributor
March 2, 2020

Anyway this script is working.

// restrict components fields based on another single select field
import com.atlassian.jira.bc.project.component.ProjectComponentManager
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript

import static com.atlassian.jira.issue.IssueFieldConstants.COMPONENTS

@BaseScript FieldBehaviours fieldBehaviours

def projectComponentManager = ComponentAccessor.getProjectComponentManager()

def components = projectComponentManager.findAllForProject(issueContext.projectObject.id)
def availableComponents = []

def issueTypeField = getFieldById(COMPONENTS)

def productField = getFieldByName("Product")
def productOption = productField.getValue() as String

if ( productOption == "Infinity Fabric") {
availableComponents.addAll(components.findAll { it.name in ["Application"] })
}
issueTypeField.setFieldOptions(availableComponents)
Steven Huxstep
August 22, 2023
availableComponents.addAll(components.findAll { it.name in ["Application"] })

Is 'Application' the name of a component? 

TAGS
AUG Leaders

Atlassian Community Events