Hello
I am trying to create custom listener using script runner.
My target is update custom field when issue created
Custom field is drop-down list with values: Yes and No
I have to set this field to "Yes"
Here is my code, it was passed, "no errors found". Also I see that code was executed successfully, however trying to create new issue, custom field was not updated.
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.fields.CustomField; import com.atlassian.jira.issue.MutableIssue; import com.atlassian.jira.issue.ModifiedValue import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.customfields.manager.OptionsManager def initialIssue=event.issue MutableIssue issueToUpdate = (MutableIssue) initialIssue; def customFieldManager = ComponentAccessor.getCustomFieldManager() def myfield = customFieldManager.getCustomFieldObjectByName("Field Name") def fieldConfig = myfield.getRelevantConfig(initialIssue) def optionsManager = ComponentManager.getComponentInstanceOfType(OptionsManager.class) def optionYes = optionsManager.getOptions(fieldConfig).find {it.value == "Yes"} issueToUpdate.setCustomFieldValue(myfield, optionYes); log.info(initialIssue); log.info(issueToUpdate); log.info(myfield); log.info(optionYes);
I tried to write logs but I don't see any log entries.
Could you help me to understand, what is wrong?
Thank you in advance
Fyodor
You have to persist the update by calling for example com.atlassian.jira.bc.issue.IssueService.update(ApplicationUser, UpdateValidationResult) or issueManager.updateIssue method.
Hello Boris
Thanks for advice.
I found solution here: https://answers.atlassian.com/questions/37031086
Custom field could be updated using issueToUpdate.setCustomFieldValue
and
issueManager.updateIssue
commands.
Fyodor
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
def checkBoxField = getFieldByName("SR1")
def urlField = getFieldByName("url")
def value = checkBoxField.getValue()
if (value.getClass().getName().toString() != "java.lang.String") {
// multiple values
def values = value as ArrayList
if(values.size() > 0){
// Do what ever you want here
// you can iterate all the values here
values.each
{ log.error it }
}
} else {
// single value
if(value in ["gitlab", "developer"])
{ urlField.setFormValue("https://www.google.com/") }
if(value in ["jira"])
{ urlField.setFormValue("https://www.yahoo.com/") }
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
def checkBoxField = getFieldByName("Checkboxes 1") def urlField = getFieldByName("URL Field") def value = checkBoxField.getValue() if (value.getClass().getName().toString() != "java.lang.String") { // multiple values def values = value as ArrayList if(values.size() > 0){ // Do what ever you want here // you can iterate all the values here values.each { log.error it } } } else { // single value if(value in ["A", "B"]) { urlField.setFormValue("https://www.google.com/") } if(value in ["C"]) { urlField.setFormValue("https://www.yahoo.com/") } }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello
is it possible to update custom field using listener? May be setCustomFieldValue
is not suitable function for this action?
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.