JIRA: find all my logged work for last week

拜拜、爱过 提交于 2019-12-09 07:41:17

问题


How would I create a JIRA filter that lists all of the issues on which I've logged time? I can then apply this to the activity stream.


回答1:


If you have Script Runner installed, you can use the following query. It will show you the issues only where you have logged work in JIRA.

issueFunction in workLogged("after 2014/09/01 before 2015/01/30 by <USER_NAME>")

Where the dates can be set to the range of the week you want to query, and the USER_NAME can be your username.

Script Runner Documentation




回答2:


Use advance searching via JQL:

worklogAuthor = currentUser() 
                AND worklogDate >= "2016/12/01" 
                AND worklogDate <= "2016/12/31"



回答3:


Using JQL you can do something like this and you won't need to update the filter every week.

    worklogAuthor = currentUser() 
AND worklogDate >= startOfWeek(-1w) 
AND worklogDate < startOfWeek()

Source for startOfWeek()




回答4:


Plugins are your answer. Search the marketplace for "Timesheets" if you are using the built in JIRA work logging. Personally, I have had a lot of success with JIRA Timesheet Reports and Gadgets.

If you are still wanting a JQL plugin to give you back your results OR you are using JIRA cloud, have a look at JQL Pro, it appears to do what you need.




回答5:


What worklogs are you using? Sadly, it is not possible with the JQL. You might get lucky if you are using some plugins such as Tempo as they might have some internal reports.



来源:https://stackoverflow.com/questions/23159353/jira-find-all-my-logged-work-for-last-week

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!