How to validate multiple choice field value was selected and user picker field is null?

Teja February 28, 2017

Hi,

Need to validate for the below scenarios

 

 

image2017-3-1 12:21:7.png

When I select "Feature Note" value from Documentation (multiple choice field) and Feature Note Developer (user picker field) is null, then I need to show Feature Note Developer is required validation message.

When I select other than Feature Note value Feature Note Developer is not required. I mean it should proceed transtion.

I tried some possible ways but it didnt work.

Any help would be apprecited.

Thanks

1 answer

1 vote
Vasiliy Zverev
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 28, 2017

It should be like this:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.customfields.option.Option
import com.atlassian.jira.issue.fields.CustomField

Issue issue
CustomField documentation = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Documentation")

for(Option option: ((List<Option>) issue?.getCustomFieldValue(documentation))){
    if(option.getValue().equals("Feature Note")){
        CustomField developer = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Feature Note Developer")
        return issue.getCustomFieldValue(developer) != null
    }
} 

return true

Suggest an answer

Log in or Sign up to answer