It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
We intend on setting The Priority Based on the summary for one of our SD's. For Example exemplarie mail subject "[...](Priority:1)[...]", which creates an issue with the summary [Ticketnumber][...](Priority:1)[...].
What we want to do:
1. get the issue.summery content
2. Look up the number after "Priority:"
3. Priority accordingly
Currently used code:
import com.atlassian.jira.issue.MutableIssue;
MutableIssue mutableIssue = (MutableIssue) issue;
String subject=issue.summary; //gets the summary
int indexfind; //Help Index to Find "Priority:"
indexfind=subject.indexOf("Priority:"); //finds 'P' of "Priority:"
String Prio=subject.charAt(indexfind+9); // finds the number of summary
switch (Prio){
case "1": mutableIssue.setPriorityId("2"); //set prio Critical
break;
case "2": mutableIssue.setPriorityId("3"); //set prio high
break;
case "3": mutableIssue.setPriorityId("4"); //set Prio Moderate
break;
case "4": mutableIssue.setPriorityId("5"); //set Prio Low
break;
default: mutableIssue.setPriorityId("5"); //sets to default od Low
break;
}
The Script runner does not throw in exception but the intended use is not given. Couldt you please help me resolve this issue?
Answered on product support:
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
def issue = issue as MutableIssue
String subject = issue.summary //gets the summary
int indexfind //Help Index to Find "Priority:"
indexfind = subject.indexOf("Priority:") //finds 'P' of "Priority:"
String Prio = subject.charAt(indexfind+9) // finds the number of summary
switch (Prio)
{
case "1":
issue.setPriorityId("2") //set prio Critical
break
case "2":
issue.setPriorityId("3") //set prio high
break
case "3":
issue.setPriorityId("4") //set Prio Moderate
break
case "4":
issue.setPriorityId("5") //set Prio Low
break
default:
issue.setPriorityId("5") //sets to default od Low
break
}
ComponentAccessor.getIssueManager().updateIssue(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(), issue, EventDispatchOption.DO_NOT_DISPATCH, false);
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.