is there any way to set an original estimate on an issue without editing the issue.
Typically we will do a bug review each week. each issue can be edited inline with a fix version and an assignee this is great , however i cannot set an estimate inline.
i have to select edit to specify an estimate
One posibillity to to this is to exceute the following script in the Groovy ScriptRunner's console:
import com.atlassian.jira.issue.Issue; import com.atlassian.jira.issue.IssueManager; import com.atlassian.jira.issue.MutableIssue; import com.atlassian.jira.component.ComponentAccessor; void setEstimateToNull(String key) { IssueManager im = ComponentAccessor.getIssueManager(); MutableIssue issue = im.getIssueObject(key); issue.setOriginalEstimate(0L); issue.store(); } setEstimatetoNull("your Issue Key "); setEstimatetoNull("annother Issue Key ");
Hi Julian
I have never tried the groovy scripting. i might look into it next week
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.