Is it possible to get a reminder, when "remaining estimate" >= "remaining due time"?
Like: Issue has a estimate work time left of 12h, but due time is in less than 1d.
So I can always see, which issues needs extra focus / developer.
Thanks!
Here is code for script field. It returns "Ok" if issue dueDate - curTime > estamate and "Trouble" in other case
return issue.getEstimate() - (issue.getDueDate().getTime() - System.currentTimeMillis()) > 0 ? "Ok" : "Trouble"
Hi, the costs for this plugin is ok for us, if it leads us to our goal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need some code for this. Easiest option - script field, provided by ScriptRunner. Is it acceptable for you to use this plugin?
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.