Hi folks,
maybe a stupid question, but i don´t find what i´m doing wrong here:
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.MutableIssue; issue.reporterId = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
This is a groovy scripted post function to change a cloned issues´ reporter to the current user (instead of the reporter of the to be cloned issue), after changing from componentManager to ComponentAccessor this is in general working.
But, while testing it it looks a bit weird:
image2017-1-4 18:22:58.png
You see, the assignee was cloned and the correct name was set, but the reporter was somehow changed to the username instead. Tried to find a solution by myself but without success...
Many thanks!
Your assigning an com.atlassian.jira.user.ApplicationUser object in JIRA 7 or a com.atlassian.crowd.embedded.api.User object in JIRA 6 to the reported id.
The reported id should be the username. So you need:
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.MutableIssue; issue.reporterId = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser().name
Hi Adam,
thanks, is working as expected! Seems that i "only" missed the ...getLoggedInUser().name
Just for other users, this was tested with JIRA 7.1.7 and ScriptRunner 4.3.13...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Adam,
Is this approach still valid?
I have an if condition to set the issue reporter which throws null as soon as I try your method.
...
def currentAppUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser().name
def customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("ASD: On behalf of")
def newReporter = issue.getCustomFieldValue(customField) as ApplicationUser
if (customField != null){
issue.setReporter(newReporter)
} else {
issue.ReporterId = currentAppUser
}
...
The if tree is fine but I never reach the else tree. Even if the customField is not even set.
Any idea?
Best,
Kristian
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.