Reminder, when Issue cannot be done in time

ek Admin December 13, 2016

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!

3 answers

0 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 13, 2016

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"
0 votes
ek Admin December 13, 2016

Hi, the costs for this plugin is ok for us, if it leads us to our goal smile

0 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 13, 2016

You need some code for this. Easiest option - script field, provided by ScriptRunner. Is it acceptable for you to use this plugin?

Suggest an answer

Log in or Sign up to answer