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!
You need some code for this. Easiest option - script field, provided by ScriptRunner. Is it acceptable for you to use this plugin?
Hi, the costs for this plugin is ok for us, if it leads us to our goal
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"
It looks like you're new here. Sign in or register to get started.