The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
i want to copy some issues to some different projects, i want know some method about this
Hi @ZhangXiaoyu ,
welcome to the Atlassian community!
Please, could you specify your use case? Do you need to clone issues as part of transition in a workflow or based on an issue event?
Btw, here a useful starting point for your request https://scriptrunner.adaptavist.com/5.6.8/jira/recipes/workflow/servicedesk/clone-issue-sd.html
Hope this helps,
Fabio
clone issues as part of transition in a workflow,
I would like to clone an issue from one project into several different projects without changing the issueType
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
here an useful code :
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.event.type.EventDispatchOption;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueFactory;
import com.atlassian.jira.issue.IssueManager;
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.project.Project;
import com.atlassian.jira.project.ProjectManager;
import com.atlassian.jira.user.ApplicationUser;
IssueFactory issueFactory = ComponentAccessor.getIssueFactory();
IssueManager issueManager = ComponentAccessor.getIssueManager();
ProjectManager projectManager = ComponentAccessor.getProjectManager();
ApplicationUser currentUserObj = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser();
Project destinationProject = projectManager.getProjectByCurrentKey("YOUR DESTINATION PROJECT KEY HERE");
MutableIssue newissue = issueFactory.getIssue();
newissue.setSummary (issue.getSummary());
newissue.setProjectObject(destinationProject);
newissue.setIssueTypeId(issue.getIssueTypeId());
newissue.setDescription(issue.getDescription());
newissue.setReporter(issue.getReporter());
newissue.setAssignee(issue.getAssignee());
//OTHER FIELDS HERE
issueManager.updateIssue(currentUserObj, newissue, EventDispatchOption.DO_NOT_DISPATCH, false);
Please, try it!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.