JSD ScriptRunner PostFunction Script - Add Request Participants based on multi-user picker field

Carol Jones October 18, 2017

I've played with this for too long now, but can't seem to figure it out.  It's working fine in the console, but when I add it as a post function to the create transition, it shows success, but doesn't seem to store to the database.  Thanks in advanced for any help you're able to provide!  I've been looking through other posts and trying different tweaks, but nothing seems to be doing the trick.

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.issue.MutableIssue

CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager()
def requestParticipantsField = customFieldManager.getCustomFieldObject("customfield_10001")
def poc = customFieldManager.getCustomFieldObject("customfield_10506")
List<ApplicationUser> pocvalues = issue.getCustomFieldValue(poc) as List

ArrayList<ApplicationUser> userList = new ArrayList<ApplicationUser>()
pocvalues.each {
if(it)
{ userList.add(it) }
}
return userList

MutableIssue myIssue = issue
myIssue.setCustomFieldValue(requestParticipantsField, pocvalues);

Below are the steps I have the post functions running:

  1. Creates the issue originally.
  2. ScriptRunner workflow function - Custom script post-function (inline script).
  3. Set issue status to the linked status of the destination workflow step.
  4. Stores updates to an issue (no change history is created).
  5. Re-index an issue to keep indexes in sync with the database.
  6. Fire a Issue Created event that can be processed by the listeners.

 

 

1 answer

1 accepted

1 vote
Answer accepted
Joshua Yamdogo @ 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.
November 14, 2017

Hi Carol,

Do you still need help with this? I would perhaps try using updateValue(), as it will persist the change to the database.

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder

CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager()
def requestParticipantsField = customFieldManager.getCustomFieldObject("customfield_10001")
def poc = customFieldManager.getCustomFieldObject("customfield_10506")
List<ApplicationUser> pocvalues = issue.getCustomFieldValue(poc) as List

ArrayList<ApplicationUser> userList = new ArrayList<ApplicationUser>()
pocvalues.each {
if(it)
{ userList.add(it) }
}
//return userList
//MutableIssue myIssue = issue
//myIssue.setCustomFieldValue(requestParticipantsField, pocvalues)

requestParticipantsField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(requestParticipantsField), userList),new DefaultIssueChangeHolder())

Suggest an answer

Log in or Sign up to answer