问题描述
TFS Web客户端在积压选项卡下提供一个面板"视图,该视图基于子任务的剩余工作量总和显示用户故事的剩余工作量总和.
TFS Web-client provides a "board" view under the backlog tab which shows the sum of Remaining work for a User Story based on the Sum of Remaining Work for it's child tasks.
我还尝试了导出到Excel并使用数据透视表,但是工作项之间没有明显的链接(据我所知).
I have also tried exporting to Excel and using a Pivot table, but there are no obvious links between the work items (as far as I can tell).
我看到了这个问题,但我无法确定那是相同的想法.
I saw this question but I can't tell if that is the same idea.
此外,此该项目可能相似,但尚未收到任何回复.
Also, this item might be similar, but no responses were received yet.
可以在Visual Studio TFS中直接使用吗?
Can it be done out-of-the-box in Visual Studio TFS?
是否需要编码?
有可用的插件吗?我已经在Github上查看了TFSAggregator,这也许可以工作,但是如果可能的话,我想避免使用服务器端插件.
Are there plugins available? I've looked at TFSAggregator on Github and that might work but I'd like to avoid server-side plugins if possible.
推荐答案
TFS聚合器的众多用途之一a> ...这甚至是他们的示例用例之一!
One of the many uses of TFS Aggregator... it is even one of their sample use cases!
- 当孩子被转移到进行中"时,将Bug,PBI(或任何父级)的状态更新为进行中"
- 当所有子级都移到完成"或已删除"时,将Bug,PBI(或任何父级)的状态更新为完成"
- 使用所有任务的剩余工作量"之和更新Bug,PBI等上的剩余工作量".
- 使用其子孙的所有剩余工作量"之和(即,PBI的任务和Sprint中的错误)更新Sprint上的剩余工作量".
- 汇总单个工作项(即
Dev Estimate + Test Estimate = Total Estimate
)上的总数
- Update the state of a Bug, PBI (or any parent) to "In Progress" when a child gets moved to "In Progress"
- Update the state of a Bug, PBI (or any parent) to "Done" when all children get moved to "Done" or "Removed"
- Update the "Work Remaining" on a Bug, PBI, etc with the sum of all the Task's "Work Remaining".
- Update the "Work Remaining" on a Sprint with the sum of all the "Work Remaining" of its grandchildren (i.e. tasks of the PBIs and Bugs in the Sprint).
- Sum up totals on a single work item (i.e.
Dev Estimate + Test Estimate = Total Estimate
)
这篇关于TFS-如何将孩子的工作时间总计给父母的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!