Forums

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

Set checkbox field when using issue service to create new issue

David Antebi July 22, 2019

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.")
}
}
}
}

 

1 answer

1 accepted

0 votes
Answer accepted
Tom _Automation Consultants_
Atlassian Partner
July 22, 2019

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.

David Antebi July 23, 2019

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

Tom _Automation Consultants_
Atlassian Partner
July 24, 2019

Hi @David Antebi ,

Maybe try passing the Option itself not the .toString() of the Option?

David Antebi July 28, 2019

Hi @Tom _Automation Consultants_

 

The issueInputParameters.addCustomFieldValue() expect String value.

Tom _Automation Consultants_
Atlassian Partner
July 28, 2019

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!

David Antebi July 29, 2019

Hi @Tom _Automation Consultants_

Could you please help me with sample script? How to create issue in this way?

Thank you very much!

Tom _Automation Consultants_
Atlassian Partner
July 29, 2019
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

David Antebi July 29, 2019

It works!!! Thank you @Tom _Automation Consultants_ 

Suggest an answer

Log in or Sign up to answer