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,551,899
Community Members
 
Community Events
184
Community Groups

need a help to write a script condition validator

Hi COMMUNITY,

this is my validator script condition that doesn't work

-if ('Resolution' in cfValues ['done]*.value && cfValues['vdi']?.value == null) return false
-return true

 

can you please tell me why when choosing resolution= done and "VDI" field is empty i don't get an error message that tell me that i should choose a value for the field "vdi"

 

thanks for the help

hopefully there is a solution for such cases

best regards

Arige

1 answer

1 accepted

1 vote
Answer accepted
Ivan Tovbin
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.
Jul 09, 2018 • edited

Hi,

Assuming the ID of your 'vdi' field is 11111, the code for a scripted validator should be like this:

import com.atlassian.jira.component.ComponentAccessor
import com.opensymphony.workflow.InvalidInputException

def vdi = ComponentAccessor.getCustomFieldManager().getCustomFieldObject((Long) 11111)
if (issue.getResolution().getName().equals("Done") && !issue.getCustomFieldValue(vdi)){
throw new InvalidInputException("VDI is required!")
}
return true

 

Hi!!!

Thank you a lot!!!!

It worked!! :-)))))

you are a real champion!!!!

 

thanks again for your help!!!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events