Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom 'ORDER BY' status in JIRA

Tags:

jira

jql

Hi I have the following query for my filter:

project = BOARD AND status in (Backlog, New, Design, Dev, "Sign Off", Blocked) ORDER BY status ASC

I have my board and am stating what statuses it should display and I though it would display it that way when I order it. But instead it orders it by "Backlog, New, Blocked, Design, Sign Off, Dev). Which is wrong, it should be ordering by Backlog, New, Design, Dev, Sign Off, Blocked.

I've scoured their documentaiton and it says the the GUI option for this was added in 6.0, but I don't see it? The only other way i saw was to do it on the backend? Thoughts?

like image 905
lovestocodez Avatar asked Nov 20 '15 00:11

lovestocodez


1 Answers

Ordering by status should order the results in the order of status as defined in Administration > Issues > Statuses. You can re-order the statuses from that admin page.

The statuses admin page can be found at;

https://$JIRA_URL/secure/admin/ViewStatuses.jspa
like image 186
JamieB Avatar answered Oct 05 '22 19:10

JamieB