In create issue Screen, i have a Number field, which has below options
Options: 1,2,3,4,5,6,7,8,9,10 ...
User can be able to choose/tick as many options he wanted,
like if user enter: 4 - then i need to create 4 sub tasks.
if user enter: 6 - then i need to create 6 sub tasks.
if user enter: 10 - then i need to create 10 sub tasks.
Please help me on same
any one help me on above Requirement.
please help me on above code. where I have to put code like Transition on button,create a subtask.....
Hi Andrey
below is my coding
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.util.ImportUtils
import com.atlassian.jira.workflow.WorkflowTransitionUtil;
import com.atlassian.jira.workflow.WorkflowTransitionUtilImpl;
import com.atlassian.jira.util.JiraUtils;
import java.lang.Boolean;
cfLic = customFieldManager.getCustomFieldObjectByName("Number of Licenses")
Collection<User> users= (Collection) issue.getCustomFieldValue(cfLic);
if(users != null) { for(i in 0..users.size()-1) {
Object AssigneeValue = users.get(i).getName();
issueObject = issueFactory.getIssue()
issueObject.setProject(issue.getProject())
issueObject.setIssueTypeId("10417")
issueObject.setParentId(issue.getId())
issueObject.setSummary(issue.getSummary()) issueObject.setAssigneeId(AssigneeValue)
subTask = issueManager.createIssue(authenticationContext.getUser(), issueObject) subTaskManager.createSubTaskIssueLink(issue.getGenericValue(), subTask, authenticationContext.getUser()) i++
}
}
not creating subtasks above code
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need to create right after issue is create I suggest using Script Runner Plugin and add post-function groovy-script.
Another way is to create web-item plugin with action that creates subtasks, but this one has to be triggered manually.
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.