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,559,205
Community Members
 
Community Events
184
Community Groups

Scriptrunner behaviour: Contains function

Hello,

I'm trying to filter the value of Field2 (Select List (multiple choice) depending on the value of Field1 (Select List (multiple choice).

 

However, it only reads the ((selectedOption.contains("Client"))) condition and I believed this is because they both contain a 'Client' keyword.

 

Is there a way to be more specific? I tried using (selectedOption == "Client Team") but its not working.

 

Here is my code below.

 

import com.atlassian.jira.component.ComponentAccessor

def tool = getFieldByName("Plan Type")

def customFieldManager = ComponentAccessor.getCustomFieldManager()
def optionsManager = ComponentAccessor.getOptionsManager()

def toolfield = getFieldById(getFieldChanged())
def selectedOption = toolfield.getValue() as String

def customField = customFieldManager.getCustomFieldObject(tool.getFieldId())
def config = customField.getRelevantConfig(getIssueContext())
def options = optionsManager.getOptions(config)

tool.setRequired(false)
tool.setHidden(true)
tool.setFormValue(null)

if ((selectedOption.contains("Client Team")))
{
def optionsMap2 = options.findAll {
it.value in ["CT: Medical", "CT: Vision", "CT: Dental", "CT: Pharma (Rx)"]
}.collectEntries {
[
(it.optionId.toString()): it.value
]
}

tool.setFieldOptions(optionsMap2)
tool.setRequired(true)
tool.setHidden(false)
}


if ((selectedOption.contains("Client")))
{
def optionsMap3 = options.findAll {
it.value in ["Client: Medical", "Client: Vision", "Client: Dental", "Client: Pharma (Rx)"]
}.collectEntries {
[
(it.optionId.toString()): it.value
]
}

tool.setFieldOptions(optionsMap3)
tool.setRequired(true)
tool.setHidden(false)
}

 

2 answers

Hi @Ysaac James Salao 

You retrieve the values of your fields as a String. And contains operator returns true if the string contains the specified sequence of char values

But multi chose select list return values as a List<String>. And contains operator returns true if the list contains the specified element.

0 votes
Ilya Turov
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.
Sep 03, 2019
if ((selectedOption.contains("Client Team"))) {
//logic for client team
} else if ((selectedOption.contains("Client"))) {
//logic for client
}

otherwise it enters both of your cycles if it contains "Client Team" and 2nd cycle being last overrides logic of first 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events