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

Scriptrunner behaviour - set field mandatory if specifics values selected in another field

Edited

Hi all,

the title speaks by itself.

I tried using examples like https://community.atlassian.com/t5/Adaptavist-questions/Show-Hide-custom-field-based-another-another-field-value/qaq-p/963847 or https://community.atlassian.com/t5/Jira-Service-Desk-questions/Scriptrunner-Behaviour-to-require-and-unhide-a-field-based-on/qaq-p/1103758 but I dont understand why mine is not working.

My project is a Service Desk, I want to make the end date field mandatory if the contract is one of these 3 values and here is the script :

 

import com.atlassian.jira.issue.fields.CustomField

def contract = getFieldById("customfield_10400")
def enddate = getFieldById("customfield_10402")
def contractlist = contract.getValue()

//if (contract.getValue() == "Secondment" || "Contract Employee" || "Intern") {
if (contractlist == "Secondment") {
enddate.setRequired(true)
//enddate.setHidden(false)

}
else {
enddate.setRequired(false)
//enddate.setHidden(true)

}

 

I put this script in the behaviour/contract field, and it does not work (with required tick off or on it is the same).

I dont get it.

 

I could use some help :)

Thanks.

Sylvain

1 answer

My co-worker helped me with this, I dont know if it is the easiest possible but it works now :-)

 

import com.atlassian.jira.issue.fields.CustomField
import com.onresolve.jira.groovy.user.FormField
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.component.ComponentAccessor

def contract = getFieldById("customfield_10400")
FormField enddate = getFieldById("customfield_10402")
String contractlist = (String) contract.getValue()

if (contractlist.equals("Secondment") || contractlist.equals("Contract Employee") || contractlist.equals("Intern")) {
enddate.setRequired(true)
}
else {
enddate.setRequired(false)
}

 

If it can help other beginners !

Thanks! Im totally beginner)
And it works fine.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events