I have a custom field to calculate the age of an issue using a SIL script. The script is
if (isNotNull(resolutionDate)) { return resolutionDate - created; } else { return currentDate() - created; }
The calculation works fine, but when i try to order by age in filters, the ordering does not seem to work. I am using the interval range searcher, but have tried the exact interval searcher as well (with a reindex) but it still won;t order properly.
Any ideas as to how to make the ordering work?
thanks in advance,
issue gets a new Age value on update. Suppose you've created issue A a day before yesterday. its Age was calculated a day before yesterday, i.e. Age =0 days.
Yesterday you've created another issue B. And you've updated it today. Its Age was calculated today and Age =1 day for the issue B.
if you'll update all issues in one go, then you'll get more or less reliable Age values.
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.