You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi All,
I am trying implement the post function for automatic transition (using ScriptRunner) for certain Service Desk requests and was wondering how I can write a condition to do that?
I tried the following:
issue.get("Customer Request Type") == "IT Help"
issue.get("Customer Request Type").value == "IT Help"
issue.get("Customer Request Type").value.toString() == "IT Help"
Thanks!
Hi
So your condition should be
So the value that the Customer Request Type has is an enigma, because is not the one you see. For example for the IT Help is
isdt/getithelp
So your condition will be
import com.atlassian.jira.component.ComponentAccessor
def cf = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Customer Request Type")
def requestType = issue.getCustomFieldValue(cf)
passesCondition = requestType == "isdt/getithelp"
Now in order to find the value you have to use for the comparrison the trick I use is I go to the script console and run the following script
import com.atlassian.jira.component.ComponentAccessor
// get an issue that has the Request Type that you want to find the id for
def issue = ComponentAccessor.issueManager.getIssueByCurrentKey("ISDT-9")
def cf = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Customer Request Type")
issue.getCustomFieldValue(cf)
Hope that help,
regards, Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey All,
I am having the same problem, but this is not working for me. I was able to track down the request type value, it is super crazy, but it just throws a false every time. Any thoughts of what I may be doing wrong?
import com.atlassian.jira.component.ComponentAccessor
def cf = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Customer Request Type")
def requestType = issue.getCustomFieldValue(cf)
if(requestType == "itsd/1747d241-af6a-4a7a-8514-98e314e3b09c")
{return true}
I am not getting any errors. The execution is successful, so it is hard to understand why it resolving as false. The email just never goes out. This is a custom email post function, just FYI.
Any help would be awesome. This just seems like it should be working.
Thanks,
Jason
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jason,
I was attempting the same thing. I found out that requestType is not a string, and so the == comparison won't work. This is how I solved it.
if(requestType.toString() == "itsd/1747d241-af6a-4a7a-8514-98e314e3b09c")
{return true}
Best,
Dave
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Old thread, but wanted to thank you for providing the ScriptRunner console trick for getting a request type value. Saved my bacon. :-)
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.
Atlassian's marketplace partners have had a very productive start to 2021! Since our last roundup, our developer community has added over 160 new cloud apps to the Atlassian Marketplace to help you...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.