It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I had added a post function to clear resolved date(resolved) but i am getting the below error in the log file. There is one more funtion also existing on the workflow for clearing the Resolution field but we want to explicitly clear the Resolved date as we had seen for some reopened issues showing resolved date. we are using JIRA 6.1.6
2014-04-04 13:51:43,381 /secure/CommentAssignIssue.jspa [googlecode.jsu.util.WorkflowUtils] Issue field "resolutiondate" is not supported for setting.
Hi Srinivas,
please, add the following scripted post-function in order to purge Resolution Date :
import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.issue.Issue; import com.atlassian.jira.issue.link.IssueLink; import com.atlassian.jira.issue.IssueManager; import com.atlassian.jira.issue.MutableIssue; import com.atlassian.jira.event.type.EventDispatchOption; MutableIssue issue = issue; IssueManager issueManager = ComponentAccessor.getIssueManager(); issue.setResolutionDate(null); issueManager.updateIssue(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(), issue, EventDispatchOption.DO_NOT_DISPATCH, false);
Hope this helps.
Regards,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Fabio Racobaldo [Herzum], it works very fine also in JIRA 7.1.10
Regards,
Antonio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It started as any story starts, on a normal, rainy day. Admin meets App, and her name was Klok2, and like any first relationship we were both trying to make it work but neither one knew what...
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.