JIRA REST API Sprint问题路由 - timeSpent和timeSpentSeconds不匹配

时间:2016-08-18 16:23:01

标签: json rest jira jira-rest-api

我目前正在使用JIRA REST API使用以下路径检索项目中故障单上花费的时间:

/rest/agile/1.0/board/{boardId}/sprint/{sprintId}/issue

在其中一个issues中,我收到以下与时间有关的数据:

 "timetracking": {
      "remainingEstimate": "9w 1d",
      "timeSpent": "4d",
      "remainingEstimateSeconds": 1324800,
      "timeSpentSeconds": 115200
    },

将秒数转换为天数时,会产生1.33333333天,其中timeSpent指定4天。

为什么timeSpenttimeSpentSeconds没有加起来,有没有办法解决问题以确保它们匹配?

1 个答案:

答案 0 :(得分:1)

我想出来了。事实证明,它在24小时内不起作用,即1d不等于86400,而是在每天花在项目上的时间,在我的情况下,{{1 }}。因此,秒数为8h,等于4 * 8天。