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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,808
Community Members
 
Community Events
184
Community Groups

(Behaviour script) Make Assignee field mandatory if issue is part of (active) sprint

Edited
Deleted user Jun 11, 2018

Hi,

 

I'm trying to achieve the above via Script Runner plugin (Behaviour). (I ignored whether the sprint is the active sprint or future sprint until I will solve this issue)

First, I tried this: (Added "Sprint" field to fields section in Behaviour & this is the server-side script)

def sprintCfVal = getFieldByName("Sprint").getValue()
def assignee = getFieldById("assignee")
if (sprintCfVal)
{
assignee.setRequired(true)
} else {
assignee.setRequired(false)
}

 But since Assignee default value is "Unassigned", assignee.setRequired(true) is meaningless here.

So I tried a different approach, trying to return an error whenever the issue has sprint value & Assignee is "Unassigned": (Added "Sprint" field to fields section in Behaviour & this is the server-side script)

import com.opensymphony.workflow.InvalidInputException
def sprintCfVal = getFieldByName("Sprint").getValue()
def assignee = getFieldById("assignee")
def assigneeVal = assignee.getValue()
if (sprintCfVal && assigneeVal == "")
{
def fldAssignee = getFieldById("assignee")
fldAssignee.setError("==" + assigneeVal + "==")
}

 If I edit an issue & add it to a sprint when it's unassigned I do get the error.

However, if I try to correct this & assign the issue to a user in the same edit screen, I still get the same error message ("====") which means he still thinks the issue is unassigned.

 I tried adding "Assignee" field to Behaviour field section and moved the previous code to be server-side script for that field but that didn't help. 

Any advice/idea about what I'm doing wrong here? 

1 answer

0 votes
Alejandro Suárez
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.
Jun 14, 2018

Hi @[deleted],

 

Remember you only can do mandatory fields with behaviours on transition screens or edit screens, and only if that screens have the field "Assignee" (in this case).

With that in mind, you can check if the current issue is in active sprint with JQL query:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.search.SearchProvider
import com.atlassian.jira.jql.parser.JqlQueryParser
import com.atlassian.jira.user.UserUtils
import com.atlassian.jira.web.bean.PagerFilter

def jqlQueryParser = ComponentAccessor.getComponent(JqlQueryParser)
def searchProvider = ComponentAccessor.getComponent(SearchProvider)

def assignee = getFieldById("assignee")
def admin = UserUtils.getUser("adminjira") // Your admin user
def filter = "issuekey = ${underlyingIssue.getKey()} AND sprint in openSprints()"
def query = jqlQueryParser.parseQuery(filter)
def results = searchProvider.search(query, admin, PagerFilter.getUnlimitedFilter())
if (results.issues.size() > 0){
assignee.setRequired(true)
} else {
assignee.setRequired(false)
}

I tried to find how to get the sprint properties with java api, but I didnt have any luck, so this may work.

Hello @Alejandro Suárez ,

Do the behavior server side script applied on field 'Assignee' or Initialiser script work on 'Assign' Issue screen?

Best Regards,

Swapnil Srivastav

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events