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,558,907
Community Members
 
Community Events
184
Community Groups

when use done transition in bug then automatically display link issue field and mandatory

when use done transition in bug then automatically display link issue field and mandatory only for select duplicate value in resolution drop down list.

 

1 answer

0 votes
Leo
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Mar 13, 2020 • edited

Hi @koteswararao puralasetty,

You'll have to place transition screen in Done transition of Bug's workflow with linked issue and Resolution field

And to make Linked issue field as mandatory when resolution is Duplicate, I would go with scriptrunner's validator with script below 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.IssueFieldConstants
import com.atlassian.jira.issue.fields.IssueLinksSystemField
import com.opensymphony.workflow.InvalidInputException
import webwork.action.ActionContext
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.issue.link.IssueLink

def fieldManager = ComponentAccessor.getFieldManager()
def linksSystemField = fieldManager.getField("issuelinks") as IssueLinksSystemField
def customFieldManager = ComponentAccessor.getCustomFieldManager()

def request = ActionContext.getRequest()
if(issue.resolution.name =="Duplicate") {
if (request) {
def params = request.getParameterMap()
def issueLinkingValue = linksSystemField.getRelevantParams(params) as IssueLinksSystemField.IssueLinkingValue


if (! (issueLinkingValue.linkDescription == "duplicates" && issueLinkingValue.linkedIssues.size())) {
throw new InvalidInputException(IssueFieldConstants.ISSUE_LINKS,
"Note: You must use link type 'duplicates'.")
}

Note: it won't place * symbol but it won't allow you to proceed further when resolution is Done and linked issue field is empty and even the link type is different. you can modify the condition according to your requirement

Hope this helps

 

BR,

Leo

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events