Hello!
I've been trying to get the team name from the Tempo Team field in a Script Runner Scripted Field, but all I've been able to get is the ID using the following code :
import com.atlassian.jira.component.ComponentAccessor;
def customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_12200");
def value = (String)issue.getCustomFieldValue(customField);
return value;
Does anyone know if there is a way to get the name from the ID or even get the name directly?
Thanks,
JT
I know it's been a while since the question was asked, but since there's no answer until now I'll share what I've been doing to get the Tempo team from an ID (if you have the team you also have the name).
Just paste below code into script console to test it.
import com.onresolve.scriptrunner.parameters.annotation.ShortTextInput
import com.onresolve.scriptrunner.runner.customisers.PluginModule
import com.onresolve.scriptrunner.runner.customisers.WithPlugin
import com.tempoplugin.team.api.TeamManager
@ShortTextInput(label="Team ID", description="Please enter an integer (if no team exists for this ID the script will output null)")
String teamId
@WithPlugin("com.tempoplugin.tempo-teams")
@PluginModule
TeamManager teamManager
// get the according Tempo team...
def team = teamManager.getTeam(teamId as Integer)
// ...and its name
def teamName = team?.name
However, it seems that at least for Jira 8.13.0, Scriptrunner 6.13.1 and Tempo 7.20.1 your code actually returns the team's name (according to the preview function of a scripted field).
That worked like a charm
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.