显示在内部死亡日期之后关闭的所有JIRA问题?

时间:2016-03-02 20:48:43

标签: jira jql

我们在JIRA中有一个名为Internal Deadline的自定义字段,但如何查找已经Closed但已超过其截止日期的所有问题?

{
  id: "customfield_6524",
  name: "Internal Deadline",
  custom: true,
  orderable: true,
  navigable: true,
  searchable: true,
  clauseNames: [
    "cf[6524]",
    "Internal Deadline"
  ],
  schema: {
    type: "date",
    custom: "com.atlassian.jira.plugin.system.customfieldtypes:datepicker",
    customId: 6524
  }
}

我在检查错过截止日期now()的位置时没有问题,但我也想要历史数据,但我无法在JQL中选择Closed状态:

enter image description here

尝试将Resolved日期设置为此错误:

Date value 'Resolved' for field 'Internal Deadline' is invalid.
Valid formats include: 'YYYY/MM/DD', 'YYYY-MM-DD', or a period 
format e.g. '-5d', '4w 2d'.

也许JIRA只设计了范围内的现在和日期?我曾希望能监控“交付记录”。

1 个答案:

答案 0 :(得分:2)

你应该下载Script runner plugin(免费),它提供了一些已经实现的JQL查询功能。安装完成后,您就可以使用此查询:

issueFunction in dateCompare("","Internal Deadline < Resolved")

有关详细信息,请参阅dateCompare此处的文档,https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_datecompare