Hi,
is there a way to avoid that a user resolves an issue if there is still a time estimation left on it? I assume that the Groovy Script Runner can do it, but maybe somebody has already figured out the correct script?
regards,
Wim
Community moderators have prevented the ability to post new answers.
Since I already have the Groovy Runner Script plugin installed. I did it with that. This is the script you need:
issue.estimate == null || issue.estimate == 0
regards,
Wim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wim,
can you help me to find the list of all issue parameters useful in Groovy Runner Script, like issue.originalEstimate, issue.estimate, issue.resolution etc...? Thank you in advance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can put custom Condition in the workflow to stop transitions to resolve or closed.
Not sure if this is natively supported now in JIRA 4.3.x or not but I wrote a small plugin to do it ages ago
https://github.com/gommo/Tributech-JIRA-workflows
I think there is another more complete plugin that has these types of conditions. I'll post back if I remember
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can add a Post Function for the workflow (Close Issue and Resolve Issue in the default workflow). Update Issue Field -> Remaining Estimate = 0.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.