Using Jira 4.4 and Greenhopper 5.8.4
On the TaskBoard I'd like to show the total of story points for the column (state) rather than the total hours.
Any help would be appreciated.
Using Jira 4.4 and Greenhopper 5.8.4
On the TaskBoard I'd like to show the total of story points for the column (state) rather than the total hours.
Any help would be appreciated.
As a temporary measure, I've written a SQL query to get this data:
select v.vname as theVersion, s.pname as statusName, sum(cfv.numbervalue) as totalStoryPoints
from jiraissue i
join issuestatus s
on i.issuestatus = s.ID
join nodeassociation a
on a.source_node_id = i.id
join projectversion v
on a.sink_node_id = v.ID
join customfield cf
on cf.cfname = 'Story Points'
join customfieldvalue cfv
on cf.ID = cfv.customfield
and cfv.ISSUE = i.ID
group by v.vname, s.pname
I've created a Javascript solution to display storypoints on the Scrum/Kanban boards.
The script is attached to this jira issue.
Good question and obvious feature request indeed - I don't think that is currently possible and there is a related (though not identical) user story filed already:
It doesn't seem to have much attention yet, so to increase the chance of this being available you might add your vote/comment there to generalize this requirement and/or file a dedicated story addressing your use case specifically.
Please be aware though, that the Task Board has been scheduled to be superseded by the new and much more flexible Rapid Board, once the latter encompasses all features (well, guess most at least) currently available within the Task Board - see The Future of GreenHopper for details, it boils down to:
Fortunately the GreenHopper team is approaching this transition in a defensive and compatible manner, but obviously I wouldn't expect any new features to be added to the now considered 'Classic Mode' either: