Whilst this is not possible without the use of Add-ons it is relatively staightforward with Add-ons. You need to capture the username of the first assignee (possibly in a hidden field) and then on the transition for re-open set the assignee field to match the hidden field content.
Depending on which Add-ons you already have installed it may even be the case that you have the functionality already in place.
Consider the following options (and there are more) to see which is the best fit for you.
https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner/server/overview
Thanks Phill, I have added following code under "Post function" but still not working. Please let me know if something is missing in code.
----------------------------------
import com.atlassian.jira.issue.*
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.core.util.DateUtils
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.history.ChangeItemBean
def componentManager = ComponentManager.getInstance();
def changeHistoryManager = componentManager.getChangeHistoryManager();
def changeItems = changeHistoryManager.getChangeItemsForField(issue, "assignee");
def firstAssigned;
def assigneeName;
if(changeItems !=null && !changeItems.isEmpty()){
ChangeItemBean ci = (ChangeItemBean) changeItems.get(0);
assigneeName = ci.getFrom(); // name
String assigneeFullName = ci.getFromString();// full name
def assignedTime = ci.getCreated().getTime();
firstAssigned = assignedTime; issue.setAssigneeId(assigneeName.toString())
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to set the assignee as User object, not a display name or login id.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Nic. I removed toString function from last line and it work according to my requirement.
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.