Update drop-down custom field using script runner listener

fjodors
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 5, 2016

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

4 answers

1 accepted

0 votes
Answer accepted
Boris Georgiev _Appfire_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 19, 2016

You have to persist the update by calling for example com.atlassian.jira.bc.issue.IssueService.update(ApplicationUser, UpdateValidationResult) or issueManager.updateIssue method.

fjodors
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 24, 2016

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

0 votes
srinath_17 May 28, 2021

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/") }


}

0 votes
srinath_17 May 20, 2021
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/")    } 
}
0 votes
fjodors
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 10, 2016

Hello

is it possible to update custom field using listener? May be setCustomFieldValue is not suitable function for this action?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events