Hi There,
The following groovy code works fine on a post function but doesn't on custom listener of "Assign" or "Update" event.
import com.atlassian.jira.component.ComponentAccessor
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def groupManager = ComponentAccessor.getGroupManager()
def multiGroupCf = customFieldManager.getCustomFieldObjectByName("Stage Approver") //multigroup picker custom field
def TeamDatagroup = groupManager.getGroup("TeamData Approvers") //jira group
def BOgroup = groupManager.getGroup("Business Owners") //jira group
def groupList = [TeamDatagroup, BOgroup]
issue.setCustomFieldValue(multiGroupCf, groupList)
Can someone please advise on why that could be and how to fix this.
It would be something like this
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def groupManager = ComponentAccessor.getGroupManager()
def multiGroupCf = customFieldManager.getCustomFieldObjectByName("Stage Approver") //multigroup picker custom field
def TeamDatagroup = groupManager.getGroup("TeamData Approvers") //jira group
def BOgroup = groupManager.getGroup("Business Owners") //jira group
def groupList = [TeamDatagroup, BOgroup]
def curUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
event.issue.setCustomFieldValue(multiGroupCf, groupList)
ComponentAccessor.getIssueManager().updateIssue(curUser, issue, EventDispatchOption.DO_NOT_DISPATCH, false)
Awesome, works like a charm @Alexey Matveev . Appreciate your help.
One more quick followup question if you can, when I update this multipicker group field it's over writing all the existing content. Is it possible to append the group to the existing values in this field?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would be something like this
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def groupManager = ComponentAccessor.getGroupManager()
def multiGroupCf = customFieldManager.getCustomFieldObjectByName("Stage Approver") //multigroup picker custom field
def TeamDatagroup = groupManager.getGroup("TeamData Approvers") //jira group
def BOgroup = groupManager.getGroup("Business Owners") //jira group
def groupList = [TeamDatagroup, BOgroup]
def curUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def groupListCur = event.issue.getCustomFieldValue(multiGroupCf)
groupList = groupList.addAll(groupListCur)
event.issue.setCustomFieldValue(multiGroupCf, groupList)
ComponentAccessor.getIssueManager().updateIssue(curUser, issue, EventDispatchOption.DO_NOT_DISPATCH, false)
I did not check the code, but the idea is to retrieve the current value of the custom field which would be also an array and then add your array to it. and then save the combined array to the custom field
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Alexey Matveev that's helpful. I tried something similar to what you advised(except to my rookie knowledge on groovy, so please excuse that) it's complaining about the following
2017-12-13 09:40:58,701 ERROR [runner.AbstractScriptListener]: ************************************************************************************* 2017-12-13 09:40:58,701 ERROR [runner.AbstractScriptListener]: Script function failed on event: com.atlassian.jira.event.issue.IssueEvent, file: <inline script> java.lang.ClassCastException: java.lang.Boolean cannot be cast to java.util.Collection at com.atlassian.jira.issue.customfields.impl.AbstractMultiCFType.updateValue(AbstractMultiCFType.java:39) at com.atlassian.jira.issue.fields.ImmutableCustomField.updateValue(ImmutableCustomField.java:425) at com.atlassian.jira.issue.fields.ImmutableCustomField.updateValue(ImmutableCustomField.java:395) at com.atlassian.jira.issue.managers.DefaultIssueManager.updateFieldValues(DefaultIssueManager.java:704) at com.atlassian.jira.issue.managers.DefaultIssueManager.updateIssue(DefaultIssueManager.java:669) at com.atlassian.jira.issue.managers.DefaultIssueManager.updateIssue(DefaultIssueManager.java:655) at com.atlassian.jira.issue.managers.RequestCachingIssueManager.updateIssue(RequestCachingIssueManager.java:214) at com.atlassian.jira.issue.IssueManager$updateIssue$3.call(Unknown Source) at Script217.run(Script217.groovy:18)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try like this
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def groupManager = ComponentAccessor.getGroupManager()
def multiGroupCf = customFieldManager.getCustomFieldObjectByName("Stage Approver") //multigroup picker custom field
def TeamDatagroup = groupManager.getGroup("TeamData Approvers") //jira group
def BOgroup = groupManager.getGroup("Business Owners") //jira group
def groupList = [TeamDatagroup, BOgroup]
def curUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def groupListCur = event.issue.getCustomFieldValue(multiGroupCf)
groupList.addAll(groupListCur)
event.issue.setCustomFieldValue(multiGroupCf, groupList)
ComponentAccessor.getIssueManager().updateIssue(curUser, issue, EventDispatchOption.DO_NOT_DISPATCH, false)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alex for your continued support. That worked like a charm, you are a star. Appreciate all your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi All,
Could you please advise how can I remove one group from multiGroupCf, for example if I want to remove only 'Business Owners' group from the field, and want to leave others still in the field?
My code does not work:
accessGroups.remove(group);
multiGroupCf.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(multiGroupCf), [accessGroups]),changeHolder)
I get following error:
2021-08-03 23:07:16,769 ERROR [runner.AbstractScriptListener]: Script function failed on event: com.atlassian.jira.event.issue.IssueEvent, file: null java.lang.ClassCastException: java.util.ArrayList cannot be cast to com.atlassian.crowd.embedded.api.Group at com.atlassian.jira.issue.customfields.impl.MultiGroupCFType.convertTypeToDbValue(MultiGroupCFType.java:86) at com.atlassian.jira.issue.customfields.impl.AbstractMultiCFType.convertTypesToDbObjects(AbstractMultiCFType.java:196) at com.atlassian.jira.issue.customfields.impl.AbstractMultiCFType.updateValue(AbstractMultiCFType.java:142) at com.atlassian.jira.issue.customfields.impl.AbstractMultiCFType.updateValue(AbstractMultiCFType.java:39) at com.atlassian.jira.issue.fields.ImmutableCustomField.updateValue(ImmutableCustomField.java:426) at com.atlassian.jira.issue.fields.ImmutableCustomField.updateValue(ImmutableCustomField.java:396) at com.atlassian.jira.issue.fields.OrderableField$updateValue$3.call(Unknown Source) at Script386.run(Script386.groovy:50)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.