Hello,
Thanks in advance! I have an issue with the script i wrote, to implement business requirement, editor shows that al checks passed and to me script seems fine, however im not a developer.
Use case:
1. issue is created via API (text box that will determine the mapping is populated 100% of the times)
2. We need to set value in Single select list based on the input form the text field (example, if text says "Hello" set destination list value to "greeting"
Seemed pretty simple, but for some reason values are not set, even though logs show successful execution.
Any help will be greatly appreciated, we are trying to scale this solution.
PS. values in the destination field exist in Jira and field is placed on all appropriate screens
Please find script below:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def dataclassCF = customFieldManager.getCustomFieldObjects(event.issue).find {it.name == "Data Class"}
def tgtField = customFieldManager.getCustomFieldObjects(event.issue).find {it.name == "Data Class test"}
def issue = event.issue as Issue
def issueService = ComponentAccessor.getIssueService()
def issueManager = ComponentAccessor.getIssueManager()
MutableIssue issueToUpdate = (MutableIssue) issue;
log.error(event.issue.getCustomFieldValue(dataclassCF).toString().contains("New Data Class"))
if (event.issue.getCustomFieldValue(dataclassCF).toString().toLowerCase().contains("allergies and intolerances")) {
issueToUpdate.setCustomFieldValue(tgtField, "1")
} else if (event.issue.getCustomFieldValue(dataclassCF).toString().toLowerCase().contains("assessment and plan of treatment")) {
issueToUpdate.setCustomFieldValue(tgtField, "2")
}
Hello Alex,
I'm Olly from Adaptavist's ScriptRunner Support!
The reason this isn't working is because of the way Select Lists have to be set.
I would recommend checking out our Library Script: Update a Single-Select (Drop Down) Custom Field which should solve this issue!
Here's a brief explanation of what's going on in that script:
The method you're using would usually work for a typical field, such as Number or Text:
issue.setCustomFieldValue(exampleField, "<VALUE_TO_SET>")
However, for a Select List Field;
def availableOptions = ComponentAccessor.optionsManager.getOptions(customField.getRelevantConfig(issue))
def optionToSet = availableOptions.find { it.value == newValue }
assert optionToSet: "Could not find option with value $newValue. Available options are ${availableOptions*.value.join(",")}"
Afterwards, you can finally set the value with the customField.updateValue() method:
customField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(customField), optionToSet), new DefaultIssueChangeHolder())
Hope this answers your query!
Thanks,
Olly
Thanks Olly,
We will try this, do i need to define each option separately?
i have over 50 options to map, just want to make sure.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No problem Alex!
I think so, however you don't need to create a long list of 50 newValues, here's what I mean:
Using the Library Script, you have this:
final newValue = 'Option C'
Which essentially is the new option you're setting the Select List to.
However, in your Script you have conditional if statements.
This will allow you to define the Option separately for each if condition.
So, it could look something like:
...
def availableOptions = ComponentAccessor.optionsManager.getOptions(customField.getRelevantConfig(issue))
if (event.issue.getCustomFieldValue(dataclassCF).toString().toLowerCase().contains("allergies and intolerances")) {
def newValue = 'Option 1'
def optionToSet = availableOptions.find { it.value == newValue }
assert optionToSet: "Could not find option with value $newValue. Available options are ${availableOptions*.value.join(",")}"
customField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(customField), optionToSet), new DefaultIssueChangeHolder())
} else if (event.issue.getCustomFieldValue(dataclassCF).toString().toLowerCase().contains("assessment and plan of treatment")) {
def newValue = 'Option 2'
def optionToSet = availableOptions.find { it.value == newValue }
assert optionToSet: "Could not find option with value $newValue. Available options are ${availableOptions*.value.join(",")}"
customField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(customField), optionToSet), new DefaultIssueChangeHolder())
} else if ...
If you wanted to be super efficient with your code duplication, you could create a method which calls this customField.updateValue() method with all the necessary values.
However, it's not super necessary.
Thanks,
Olly
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Olly von Fay-Siebenburgen _ScriptRunner_
Hi ! Thank you for ansver ! It's worked
I changed the code a little for myself In case someone finds it useful too
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
def currentUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def issueManager = ComponentAccessor.getIssueManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def optionsManger =ComponentAccessor.getOptionsManager()
def customField = customFieldManager.getCustomFieldObjectsByName("cf name").first()
def availableOptions = ComponentAccessor.optionsManager.getOptions(customField.getRelevantConfig(issue))
def optionToSet = availableOptions.find { it.value == "option name" }
return optionToSet
def config = customField.getRelevantConfig(issue)
issue.setCustomFieldValue(customField, option)
issueManager.updateIssue(currentUser, issue, EventDispatchOption.ISSUE_UPDATED, false)
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.