如何将原始估算字段设置为 TFS 2010 模板中剩余工作的值
我们从敏捷流程模板的任务工作项表单中删除了原始估算字段,因为我们发现它在更新“剩余工作”和“已完成工作”字段时“引导”得太多。剩余+已完成总是非常接近原始估计的值。
我想要的是,然后任务获得剩余的工作集,该值将在原始估计字段中设置相同的值。尽管该字段未在周四 UI 中显示,但它仍然可用,并且我可以轻松地将估计值与已完成的工作(例如 Excel)进行比较。
是否可以创建某种类型的操作,以便在保存任务时它会检查(以伪代码)
if (RemainingWork was 0 OR empty) AND RemainingWork>0 AND (OriginalEstimate is 0 OR empty) then
OriginalWork=RemainingWork
-Mathias
We removed the Original Estimate field from the Task work item form in the Agile process template because we found it "guided" to much when updating the Remaining Work and Completed Work fields. Remaining+Completed was always quite near the value of Original Estimate.
What I would want is that then the task gets a remaining work set the same value would be set in the original estimate field. The field is still available even though it's not shown in thu UI and I could easily compare estimate vs completed work in e.g. Excel.
Is it possible to create and action of some sort so that when saving a task it would check (in pseudocode)
if (RemainingWork was 0 OR empty) AND RemainingWork>0 AND (OriginalEstimate is 0 OR empty) then
OriginalWork=RemainingWork
-Mathias
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这个附加组件正是您正在寻找的。
http://tfsaggregator.codeplex.com/
它允许动态计算字段值。
I think this add-on is what you are looking for.
http://tfsaggregator.codeplex.com/
It allows dynamic calculation of field values.