Sorting values of Scripted Field in Issue Search

Markus June 1, 2017

Hi,

I like to sort issues by key with subtasks directly under the parent.

So I tried the solution proposed here: Sort Issue Navigator by parent-children pairs

After creating the scripted field as suggested, the sorting ("ORDER BY 'Parent Issue Key' ASC, key ASC") only works, if the Parent Issue Key has no Search Template specified. However parent issue key "999" comes after "1000". Using "getNumber()" instead of "getKey" (scripted Field template Number) the same problem occurs. Sorting only works if no search template is specified and 999 comes after 1000.

Is there a good possibility to order subtasks directly under the parent, or is there a mistake in defining the scripted field?

Thanks in advance.

Best regards

1 answer

1 accepted

1 vote
Answer accepted
adammarkham
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.
June 6, 2017

You'll likely need to search by id instead of key. Otherwise it compares them as text as explained here.

You can change:

issue.getKey()
parentIssue.getKey()

to: 

issue.id
parentIssue.id

That should then sort them numerically using the query: 

ORDER BY "Parent Issue ID" ASC, id ASC

Your search template will need to be a number field now.

There are a few gotchas when it comes to running JQL searches in scripted fields which is all documented here if you run into inconsistency issues.

 

Suggest an answer

Log in or Sign up to answer