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

Copy option values from one custom field to another

Hi,

I have 2 custom fields - one select choice and one multiple choice.

I would like to do this flow:

1. Insert a new option in the first custom field (select choice).

2. The second custom field (multiple choice) will insert automatically the same option.

 

I try to do it with script listener, but without success.

 

I try this code:

import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.ComponentManager;
import com.atlassian.jira.util.ImportUtils;
import com.atlassian.jira.user.util.UserManager;
import com.atlassian.crowd.embedded.api.User;
import com.atlassian.jira.issue.ModifiedValue;
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder;
import com.atlassian.jira.issue.util.IssueChangeHolder;
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.security.groups.GroupManager;
import com.atlassian.jira.issue.IssueImpl;
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder
import com.atlassian.jira.issue.util.IssueChangeHolder
import com.atlassian.jira.issue.IssueInputParameters
import com.atlassian.jira.issue.customfields.manager.OptionsManager
import com.atlassian.jira.issue.customfields.option.Option
import com.atlassian.jira.issue.IssueManager

Issue issue = event.getIssue();
CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager();
def optionsManager = ComponentAccessor.getComponentOfType(OptionsManager.class);

//Get Options values of "WBL Agile Team"
def wblTeam = customFieldManager.getCustomFieldObjectByName("WBL Agile Team");
def fieldConfig1 = wblTeam.getRelevantConfig(issue);


def options1 = optionsManager.getOptions(fieldConfig1);
def results1=[];
def i=0;
for (Option option1 : options1) {
results1[i]=option1.value;
i++;
}

//Get Options values of "WBL Agile Team/s"
def wblTeams = customFieldManager.getCustomFieldObjectByName("WBL Agile Team/s");
def fieldConfig2 = wblTeams.getRelevantConfig(issue);
def options2 = optionsManager.getOptions(fieldConfig2);
i=0;
for (Option option2 : options2) {
option2.Value=results1[i];
i++;
}

 

Thanks,

Daniel

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Thanos Batagiannis [Adaptavist]
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.
May 23, 2018

Hey Daniel, 

The following script will append to the multi select list the value of the single select list. 

This should be a custom listener, listening for an issue updated event. 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.customfields.option.LazyLoadedOption
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder

def issue = issue as MutableIssue
def change = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find {it.field == "SelectListA"}

// if is not the SelectListA that got updated, do nothing
if (!change) { return }

def customFieldManager = ComponentAccessor.customFieldManager
def selectList = customFieldManager.getCustomFieldObjects(issue).find {it.name == "SelectListA"}

def selectLitValue = issue.getCustomFieldValue(selectList) as LazyLoadedOption

if (!selectLitValue) {
return
}

def multiList = customFieldManager.getCustomFieldObjects(issue).find {it.name == "MultiSelectA"}
def oldValues = (issue.getCustomFieldValue(multiList) as List<LazyLoadedOption>) ?: []

def changeHolder = new DefaultIssueChangeHolder()
multiList.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(multiList), oldValues << selectLitValue), changeHolder)

Please let me know if this does the trick for you.

Regards, Thanos

Hi,

Thank you,

It isn't help.. the options didn't change

TAGS
AUG Leaders

Atlassian Community Events