You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
import com.atlassian.jira.issue.Issue import com.atlassian.jira.issue.ModifiedValue import com.atlassian.jira.issue.util.DefaultIssueChangeHolder import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.customfields.manager.OptionsManager import com.atlassian.jira.issue.customfields.option.Option def issue = event.issue as Issue def customFieldManager = ComponentAccessor.getCustomFieldManager() def escalatedField = customFieldManager.getCustomFieldObjects(event.issue).find {it.name == "Escalated"} def urgencyField = customFieldManager.getCustomFieldObjects(event.issue).find {it.name == "Urgency"} def changeHolder = new DefaultIssueChangeHolder() def urgencyValue = issue.getCustomFieldValue(urgencyField) if (urgencyValue in ["Medium"]) { OptionsManager optionsManager = ComponentAccessor.getOptionsManager() def cfValue = optionsManager.getOptions(escalatedField.getRelevantConfig(issue)).getOptionForValue("Yes",null) escalatedField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(escalatedField), cfValue ),changeHolder) }
Code is above. The checkbox field (escalatedField) is set when I do not add the if statement: if (urgencyValue in ["Medium"])
Any assistance would be appreciated!
It works when I do
String urgencyValue = issue.getCustomFieldValue(urgencyField)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.