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
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.
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.