Our team is transitioning from rally as agile development tool to jira. And we are having problem to view user stories data as we used to in rally. For instance this is picture that represents two user stories with corresponding child tasks.
On this picture we can see user stories points, tasks hours and state of every task and story. And when every task is moved to completed state whole user story is marked as completed.
How can we achieve something like this in jira?
For automatically transitioning a parent (or linked) issue, one of the better plugins to use is the JMWE add-on.
Admin > Issues > Workflow
and edit the workflow in questionPost Function
Transition parent issue (JMWE add-on)
Conditional Execution
and type this into the condition:{% set stories = issue | epic | stories %} {% set trigger = true %} {% for story in stories %} {% if story.fields.status.name != "Resolved" %} {% set trigger = false %} {% endif %} {% endfor %} {{ trigger }}
For other / similar examples of conditionals, see the JMWE conditional execution page and the JMWE nunjucks issue properties page