Hello there,
I have a problem finding a report that would let me prepare payments calculations. I'd like to have a report of logged time per user for a gived peroid of time (ended after ... before ...) for tasks that are closed and fixed.
Any idea how to do it efficiently?
You can try eazyBI reporting application for JIRA. You can create reports on logged time by users as well as you can use powerful calculation formulas to calculate additional data from standard JIRA issue fields.
Hi,
May be you have to set the input parameter for your Report
e.g Project-- and User as input field.
when user select project and input.
using JQL or QueryBuilder we can get the issues associated to particular project for specific user.
Arraylist<>AllIssuesSpecificUser_Project-- this is the Result from JQL
Iterator it=AllIssuesSpecificUser_Project.iterator() --- iterating issues.
Issue.getEstimate() -- or Set<Long> issue_total= Issue.
getTimeSpent()
-- we can calculate the total time spent for each issue by user.
we have to do the total Number of issue_total=
e.g Iterator it=issue_total.iterator();
long l1=0;
while(it.hasNext())
{
long l=it.next();
l1=l1+l;
total time spend by each user for each project would be l1
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One way to do it is:
(1) Select a version (time range)
(2) Set a filter on a specific contributor
(3) View the "time spent" aggregate tally in the Version summary
You could also create a filter that selected a project, assignee, and version, run the filter, and export to Excel to tally the aggregate. You can add the Time-keeping columns to the Issue Navigator via Tools> Configure Columns. You would, though, have to do this per person.
The canned reports accessible via Projects>Your Project>Project Summary>Reports are mostly centered upon workload and not time-spent.
Otherwise, I think you would have to rely on one of the time-keeping plug-ins.
Consider detailing your need in this possibly related issue to track a feature request:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.