Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,744
Community Members
 
Community Events
184
Community Groups

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.
Feb 05, 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.
Feb 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.
Feb 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

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


}

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