We need some clock to track the whole days working time for our employees. But this time should not be tracked as working time, that has spend, but only as available time for this day.
lets say an employee is assumed to work for 8/5 (5hrs logged definitely), we have to figure out, how long the employee has wroked for the whole day.
As we have no fixed working times, one must be enabled to log theses states:
"working"
"pause"
"not working"
"working at home"
is there any easy solution so do this with Jira or confluenc?
the best would be if there is a awy to provide a list of employees that are stioll working, so we know who is still in office (for security reasons)..
Hi,
Well it fulfill your requirement at the movement.
you have to make sure the user is part of group from there you can get the user daily task report.
Addition to that you just follow the document for tempo plugin so your idea will be more clear.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A simpler solution is to have common tasks created in Jira (which never gets closed) and users log all their other non-working hours there.
A similar discussion here https://answers.atlassian.com/questions/36594/tracking-vacations-sick-leaves-training-and-etc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
May be you have to status of issues e.g working ,pause,not working,working at home.
e.g you can find the number of issues the user is working or assigned him on the specific day.
using JQL or QueryBuilder we can get the issues associated to particular user for specific day.
Arraylist<>AllIssuesSpecificUser-- this is the Result from JQL
Iterator it=AllIssuesSpecificUser.iterator() --- iterating issues.
now when calculating the time for the user keep status in mind if(status==working)||pause|| not working || work at home.
you can calculate the time spend by statuses.
Issue.getEstimate() -- or Set<Long> issue_total= Issue.
getTimeSpent()
-- we can calculate the total time spent for each issue by user for day.
we have to do the total for the day for 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 day with given status. 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.
Well, I am quite new to Jira, where excatly would you script these calculations?
JQL is no problem to figure out what is the right issues for the day
Issues should be in a seperat project with security set on..
What about tempo? does this plugin solve that problem?
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.