For effort monitoring, we need Orginal Estimate and Time spent(Logged hours) to be updated before closing the issue.
How to do that ?
Could you help me here ?
Hello,
You could also do it with the Power Scripts add-on:
You can write a validator with a code like this:
if (!(hasInput("worklog") and hasInput("originalEstimate"))) {
return false, "<error message>";
}
You can read more about the SIL validator here:
Hello @Arindam Bhattacharjee
You would need to use a plugin like Jira Suite utilties or other related paid plugin to add a field validator on the transition. In the field validator transition you can choose the field "timespent" and make it mandaotry for the transition. But also, make sure you have added the time tracking (Log work) fields on the transition screen on that transition.
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.
@Arindam Bhattacharjee when you say 'updated' does that include changing the time spent if it already has a value? If so, making the field required on transition won't help. You'll need a plugin that can check the value and force a new value to be added that is greater then the current value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Joe Pitt , what I meant by updated is time spent /logged hours cannot be blank.
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.