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.
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.