Please some one can help to calculate "In Progress" issues count in jira using script runner's scripted field.
Hey Tukaram,
maybe the following helps you. But I'm not sure why you need this information for a set of issues. Maybe you want to tell us more about your use case?
import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.bc.JiraServiceContextImpl; import com.atlassian.jira.bc.filter.SearchRequestService; import com.atlassian.jira.bc.issue.search.SearchService; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.issue.search.SearchResults; import com.atlassian.jira.user.ApplicationUser; import com.atlassian.jira.web.bean.PagerFilter; import com.atlassian.query.Query; SearchResults getIssuesByJQL(String jql) throws Exception { SearchService serchService = ComponentAccessor.getComponentOfType(SearchService.class); SearchService.ParseResult parseResult = serchService.parseQuery(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(), jql); if (!parseResult.isValid()) { throw new Exception("jql is not valid. jql was "+jql); } Query query = parseResult.getQuery(); SearchResults sr = serchService.search(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(), query, PagerFilter.getUnlimitedFilter()); return sr; } return getIssuesByJQL("status = 'in progress'").getTotal()
Cheers,
Julian
Thanks Julian,
Actually i need to display monthly "In Progress" Status count divide by developer group count
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.