Hi,
When creating new Epic I want to create issues in epic per checkbox values.
I also want to copy the checkbox value to the new created issues in the epic.
All working well with my script below except the copy of the checkbox.
For example:
If my checkbox field called 'domain' and I checked in the epic A, B and C values -> I want the script to create 3 new issues -> one with domain value A, second with domain value B and third with domain value C.
Thanks for your help!
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.bc.issue.IssueService
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.IssueInputParameters
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.customfields.manager.OptionsManager
import com.atlassian.jira.issue.customfields.Option
import com.atlassian.jira.issue.customfields.option.Options
import com.atlassian.fugue.Option
import org.apache.log4j.Logger
import org.apache.log4j.Level
def log = Logger.getLogger("com.acme.CreateSubtask")
log.setLevel(Level.DEBUG)
IssueService issueService = ComponentAccessor.getIssueService();
ApplicationUser user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
MutableIssue issue = issue
OptionsManager optionsManager = ComponentAccessor.getOptionsManager();
def domainField = ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_16850");
def epicLinkField = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Epic Link");
def selectedValues = issue.getCustomFieldValue(domainField) as List
if (selectedValues != null){
for(int i=0; i<selectedValues.size(); i++){
Options options = optionsManager.getOptions(domainField.getConfigurationSchemes().first().getOneAndOnlyConfig());
def selectedOption = options.findAll {it.value == selectedValues[i].toString()}.collect {it.optionId.toString()}
IssueInputParameters issueInputParameters = issueService.newIssueInputParameters();
issueInputParameters
.setProjectId(15530L)
.setIssueTypeId("6")
.setSummary("Content Task For Domain: " + selectedValues[i].toString())
.setReporterId(issue.reporterId)
.setAssigneeId("DavidAntebi")
.setDescription(issue.description)
.addCustomFieldValue(epicLinkField.getId(), issue.key)
.addCustomFieldValue(domainField.getId(), selectedOption[0].toString())
IssueService.CreateValidationResult createValidationResult = issueService.validateCreate(user, issueInputParameters)
if(createValidationResult.isValid()){
log.error("entrou no createValidationResult")
IssueService.IssueResult createResult = issueService.create(user, createValidationResult)
if (!createResult.isValid()){
log.error("Error while creating the issue.")
}
}
}
}
Can you write out to the logs the value of the selectedOption? It might be returning null which is why it isn't being set.
Also you're calling it.value == selectedValues[i].toString(), you could try it.value.equals(selectedValues[i].toString()).
You could also try putting the strings down to lowercase just in case the strings aren't matching exactly.
Hi @Tom _Automation Consultants_ ,
I printed the value to the logs and received the option id as string.
I think that something is wrong with the method to insert the value to checkbox field.
Thanks,
David
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.
Hi @Tom _Automation Consultants_
The issueInputParameters.addCustomFieldValue() expect String value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would in this case create a new Mutable Issue instead, set all the values you're current setting using the issue input parameters. Set the custom field value but pass it the option instead of the string (issue.setCustomFieldValue(field, option)). Then use the Issue Manager class to call the create issue function with your new Mutable Issue. I know it doesn't directly answer your problem with the IssueInputParameters, but it's an alternative workaround.
Add a reply if you need any help with the script doing it this way!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tom _Automation Consultants_
Could you please help me with sample script? How to create issue in this way?
Thank you very much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.IssueFactory
import com.atlassian.jira.exception.CreateException
def newIssue = ComponentAccessor.getIssueFactory().getIssue()
newIssue.setProjectId(15530L)
newIssue.setIssueTypeId("6")
newIssue.setSummary("Content Task For Domain: " + selectedValues[i].toString())
newIssue.setReporterId(issue.reporterId)
newIssue.setAssigneeId("DavidAntebi")
newIssue.setDescription(issue.description)
newIssue.setCustomFieldValue(epicLinkField, issue.key)
newIssue.setCustomFieldValue(domainField, selectedOption[0])
def issueManager = ComponentAccessor.getIssueManager()
try {
newIssue = issueManager.createIssueObject(user, newIssue)
} catch (CreateException e) {
log.error(e)
}
Here's how you would do it!
Hope this helps, let me know if it works
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.
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.