页面树结构

版本比较

标识

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

 

Scenario

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

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

 

JQL query

Parallel Workflow Transition Approval Process (PWTPAP) provides JIRA JQL query to meet above requirements. 

  1. Approved issues

    代码块
    issue in wptApprovedBypapApprovedBy("arguments")

    Arguments

    arguments
    说明Description备注Comments
    *Search all the users and list the issues approved by them respectively 
    currentUserSearch issues approved by current user 
    uer1user1,user2Search issues approved by particular usersJIRA user key



  2. Rejected

    Declined issues

    代码块
    issue in wptRejectedBypapRejectedBy("arguments")

    Arguments

    arguments说明Description备注Comments
    *Search all the users and list the issues rejected declined by them respectively 
    currentUserSearch issues rejected declined by current user 
    用户1user1,用户2user2Search issues rejected declined by particular usersJIRA user key

...