The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Setting a version picker (multiple version) from Groovy script

David Reif
Contributor
July 6, 2015

Hi,

 

I want to set a version to an issue via groovy (later in a post-function), but am unsuccessful so far. Here is my code:

 

 

import com.atlassian.jira.ComponentManager;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.issue.IssueManager;
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.project.version.Version;
import com.atlassian.jira.event.type.EventDispatchOption

ComponentManager cm= ComponentManager.getInstance()
IssueManager im= cm.getIssueManager()
MutableIssue issue=im.getIssueObject("DEMO-25")
Version version = cm.getVersionManager().getVersion(issue.getProjectObject().getId(),"1.0")
CustomField customField = cm.getCustomFieldManager().getCustomFieldObject(65) //65 is the id of the field
issue.setCustomFieldValue(customField,version)
issue.setSummary("new Summary2")
im.updateIssue(cm.getJiraAuthenticationContext().getUser().getDirectoryUser(),issue,EventDispatchOption.ISSUE_UPDATED,false);

Where is the problem in this code? The summary is updated correctly and the version exists. I even tried inserting the version into a list since it is a multiple version picker. This also didn't lead to the desired result

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
David Reif
Contributor
July 7, 2015

Found the problem. Setting it to issue.setCustomFieldValue(customField,[version]) worked