页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

 

场景

在某些特定场景下,用户可能会希望了解我曾经批准过或曾经拒绝过的所有审批事项。

...

Scenario

  • In certain scenarios, user may want to find a list of all the requests he or she has either approved or rejected. 

  • JIRA administrator may need to track all the requests approved or rejected by a particular user. 

 

JQL query

并行审批插件提供了 JIRA 的 JQL搜索函数,以帮助用户获取上述场景的数据。

Parallel Workflow Transition (PWT) provides JIRA JQL query to meet above requirements. 

  1. Approved issues

    曾经批准过的问题

    代码块
    issue in wptApprovedBy("arguments")

    可用参数:Arguments

    arguments
    说明备注
    *搜索所有用户批准过的问题Search all the users and list the issues approved by them respectively 
    currentUser搜索当前用户批准过的问题Search issues approved by current user 
    uer1,user2搜索指定的部分用户批准过的问题Search issues approved by particular usersJIRA user key



  2. 曾经拒绝过的问题

    Rejected issues

    代码块
    issue in wptRejectedBy("arguments")

    可用参数:Arguments

    arguments说明备注
    *搜索所有用户拒绝过的问题Search all the users and list the issues rejected by them respectively 
    currentUser搜索当前用户拒绝过的问题Search issues rejected by current user 
    用户1,用户2搜索指定的部分用户拒绝过的问题Search issues rejected by particular usersJIRA user key