Forums

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

Unable to find the issues removed from the sprint

Manikandan K
December 5, 2017

I see there few issues removed from the sprint and i m unable to find when i use previousprint() function using the scriptrunner

 

I have to generate the report for multiple teams.Let me know is there a way to identify what is committed during the sprint start ?

2 answers

Suggest an answer

Log in or Sign up to answer
0 votes
kumar hai
February 26, 2019

@Thanos Batagiannis _Adaptavist_ thank you for your response, if the Group picker1 or Group picker2  doest have a value anyone from following assignee, reporter,caseworker,supervisor can close the ticket. otherwise only Group1(single user picker) or Group 2(single user picker) can close the ticket. 

0 votes
Thanos Batagiannis _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 Champions.
February 22, 2019

Hi Kumar, 

I am not sure I understand what should happen in the case that the Group Picker doesn't have any value, but I think the following snippet will help you

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.user.ApplicationUser

def currentUser = currentUser as ApplicationUser
def issue = issue as MutableIssue

def customFieldManager = ComponentAccessor.customFieldManager
def customField = customFieldManager.getCustomFieldObjects(issue).find {it.name == "GroupPicker"}
def customFieldValue = issue.getCustomFieldValue(customField) as String

if (!customFieldValue) {
//the custom field doesn't have any value do something
}
else {
def groupManager = ComponentAccessor.groupManager
def group = groupManager.getGroup(customFieldValue)
return groupManager.isUserInGroup(currentUser, group)
}

regards, 

Thanos

TAGS
AUG Leaders

Atlassian Community Events