Hello -
I have a question about modifying an existing Validator that I have configured via Adaptavist Scriptrunner.
The current script I have as a Validator ensures that all check boxes in the Edit screen are checked before the user can make the transition. This script works well.
(cfValues['HR Checklist']*.value as List).containsAll(["a", "b", "c", "d", "e", "f", "g"])
I want to build on this script. I have added a tab to the Edit screen with a different selection of check boxes. What I want to do is change the script, in that the values of the check boxes are required based on a custom field value (that has already been selected).
For example - if custom field value is X, then the user must select all of the check boxes in tab HR Checklist. Those values being "a", "b", "c", "d", "e", "f", "g"
Like my initial script.
If custom field value is apple, then the user must select the apple tab (on Edit screen), and check all boxes "apple", "orange", "pear"
The already populated custom field value determines which tab the user must check all boxes for in the Edit screen, in order to transition the Issue.
I apologize if I am not being clear enough. Any insight/help would be much appreciated. Thanks in advance.
Hi Michael,
If I understand the requirements correctly then a Custom script validator with a script similar to
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.customfields.option.LazyLoadedOption
import com.opensymphony.workflow.InvalidInputException
def issue = issue as MutableIssue
def flag = false
def customfieldManager = ComponentAccessor.customFieldManager
def selectListCF = customfieldManager.getCustomFieldObjects(issue).find {it.name == "SelectListA"}
def checkboxCF = customfieldManager.getCustomFieldObjects(issue).find {it.name == "Checkboxes"}
def selectListValue = issue.getCustomFieldValue(selectListCF) as LazyLoadedOption
def checkboxValue = issue.getCustomFieldValue(checkboxCF) as List<LazyLoadedOption>
if (selectListValue.value == "AAA") {
flag = checkboxValue.collect {it.value}.containsAll(["Yes"]) && checkboxValue.size() == 1
}
else if (selectListValue.value == "BBB") {
flag = checkboxValue.collect {it.value}.containsAll(["Yes", "No"]) && checkboxValue.size() == 2
}
else {
// other conditions/combinations
}
if (!flag)
throw new InvalidInputException("Some combination of multiple fields are in error")
will do the trick.
Please let me know if that helped
Regards, Thanos
Thanos -
THANK YOU. This is great. I really appreciate it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.