You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I'm looking to update the a current issues custom field of assigned team based on the contents of the summary. We have a lot of customers and we are wanting this to automatically assign the customer. I'm imagining this as an else if list of the text provided in the summary and the customer name. We use a customer number that is associated with customer number, most of our alerts contain a customer name but all contain the customer number. I then want to update the customer name based off of the number. Is this close to what I should be using as a list?
if (currentIssue.getCustomFieldValue(summary).toString().contains("0001234")
{
currentIssue.setCustomFieldValue(customer).toString("Jira")
}
else if (currentIssue.getCustomFieldValue(summary).toString().contains("0001235")
{
currentIssue.setCustomFieldValue(customer).toString("Atlassian")
}
else
return false
You can start with the below code
def issueManager = ComponentAccessor.getIssueManager()
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
String summary = currentIssue.getSummary()
String customerValue = ""
if (summary.contains("0001234")) customerValue = "Jira"
else if (summary.contains("0001235")) customerValue = "Atlassian"
else return
currentIssue.setCustomFieldValue(customer, customerValue)
issueManager.updateIssue(user, currentIssue, EventDispatchOption.DO_NOT_DISPATCH, false)
I hope it helps
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.