Hi
I've tried several different date-formats in the following filter with no luck.
Any advise?
issueFunction in expression("resolution = Unresolved", "today+remainingestimate > 2017-05-01")
Adding a custom date field is very impractical, I would have to update all potential issues with the specific date. (but it returns the expected resultset).
issueFunction in expression("resolution = Unresolved", "today+remainingestimate > myCFdate")
br
/David Jansson
One workaround might be to have one of your JIRA admins add a scripted field that calculates the current date plus the remaining estimate and returns a date. Then you could use dateCompare.
The scripted field would have code along the lines of
import groovy.time.TimeCategory def today = new Date() def remainingEstimate = issue.getEstimate() def calculatedDate use (TimeCategory) { calculatedDate = today + remainingEstimate.milliseconds } return calculatedDate
Then the JQL would be
issueFunction in dateCompare("resolution = Unresolved", "'Current date plus resolution scripted field' > 2017-05-01")
Just replace 'Current date plus resolution scripted field' with the actual name of your scripted field.
Make sure to use a datetime searcher and template when setting up your script field.
Hi David,
Unfortunately what you are trying to do is not really possible at the moment.
Please refer to your Adaptavist support ticket for more information.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.