我希望根据 InProgressDate 到完成日期而不是接受日期来计算周期时间。我们的 Accepted 状态是由我们的 User Acceptance 过程驱动的,该过程有时需要比我们想要的更长的时间。我在 HierarchicalRequirement 上没有看到 CompletedDate,但也许我错过了它。
我错过了 CompletedDate 还是应该在 Lookback API 中寻找它?
我希望根据 InProgressDate 到完成日期而不是接受日期来计算周期时间。我们的 Accepted 状态是由我们的 User Acceptance 过程驱动的,该过程有时需要比我们想要的更长的时间。我在 HierarchicalRequirement 上没有看到 CompletedDate,但也许我错过了它。
我错过了 CompletedDate 还是应该在 Lookback API 中寻找它?
您是正确的,故事中没有 CompletedDate 这样的字段。这是一个 Lookback API 查询,用于查找在指定日期内从 In-Progress 到 Completed 的故事:
https://rally1.rallydev.com/analytics/v2.0/service/rally/workspace/1111/artifact/snapshot/query.js?find={"_TypeHierarchy":"HierarchicalRequirement","Children":null,"ScheduleState":"Completed","_PreviousValues.ScheduleState":"In-Progress",_ValidFrom: {$gte: "2013-06-01TZ",$lt: "2013-09-01TZ"}},sort:{_ValidFrom:-1}}&fields=["ScheduleState","_PreviousValues"]&hydrate=["_PreviousValues","ScheduleState"]&pagesize:20
以下是返回结果的片段:
TotalResultCount": 39,
"StartIndex": 0,
"PageSize": 100,
"ETLDate": "2013-09-17T03:35:02.819Z",
"Results": [
{
"ScheduleState": "Completed",
"_PreviousValues": {
"Owner": null,
"ScheduleState": "In-Progress"
}