Questions tagged [time-and-attendance]

Time and Attendance systems are those that keep track of people's comings and goings. Typically this refers to employees working in a business. However it can also be used in other contexts, such as students attending a class.

Time and attendance systems are those that keep track of people's comings and goings. Typically this refers to employees working in a business. However it can also be used in other contexts, such as students attending a class.

There are a whole range of technical problems involved with this category of business systems, such as:

  • Date/Time Set and Interval mathematics
  • Nuances of date and time in the real world
  • Pattern recognition in event streams
  • Business rules engines
  • And much more.

Time and Attendance systems also tend to overlap (Venn diagram style) with the following:

  • Payroll Systems
  • Scheduling Systems
  • Access Control Systems
  • Employee Benefits Systems

The broader category of these systems is known as Workforce Management.

StackOverflow is not the place to discuss commercial Time and Attendance products. However, there are many programming problems associated with building these products, or integrating with them, that may be appropriate if phrased properly.

Also appropriate are generalized questions that would be useful if building an in-house Time and Attendance system.

165 questions
0
votes
0 answers

How to Clear Attendance Log in ZKT Attendance Machine For Specific Date or till specific date

How to Clear Attendance Log in ZKT Attendance Machine For Specific Date or till specific date using ZKt library in .Net C# How we can clear attendance log to specific range instead of ClearLog() function, its clear all logs. but i want to clear to…
0
votes
1 answer

SetInterval doesn't take the exact time which was specified

I have been trying to create an attendance system that prompts a user for check-in and check out. Based on the input given, I have assigned a value time which increments by 1 after 1000 milliseconds(You can check in the code). But it is not working…
Tiger God
  • 6
  • 2
0
votes
0 answers

need to create attendance sheet with present and absent for the below model

var attendanceManagementSchema = mongoose.Schema({ user: { type: mongoose.Schema.Types.ObjectId, ref: 'user' }, loginDateTime: Date, loggedoutDatetime: Date, loginLocation: { type: String }, logoutLocation: { type: String }, …
0
votes
0 answers

how i link multiple Unie qr code with same google sheet?

Thank you in Advance, I need help with my Digital Attendance System Project in which students can scan the QR code and their attendance is marked in google Sheets. Teachers can generate QR codes in every lecture mean's every lecture has a UNIQ QR…
Dhruv Mavani
  • 47
  • 10
0
votes
0 answers

Algorithm to calculate attendance date based on user's night shift

I am developing an attendance tracking system where user can check-in and check-out and system will capture the attendance date. Let me give you inputs theoretically here: Name: User A Assigned Shift: 19:00 -- 03:00 (night shift) Multiple…
Dinesh Suthar
  • 853
  • 1
  • 17
  • 41
0
votes
2 answers

How do I solve "-307" error on ZKTeco SDK?

Hello everyone and thanks for reading this problem. I have a solution in C# using the zkemkeeper dll to get the records from some access control devices. When I "ping" them, there isn't any problem, but when I try to connect to them (Using my…
0
votes
0 answers

Time Attendance Calculation of the Employee Check-in Today and Check-out Next Day

Hope everyone does well. I'm Trying to Implement an Attendance Integration With A Biometric Device in Odoo15, Enterprise. So I'm a little confused on How to deal with Attendance if your check_in and check out are on different dates? Please Note the…
Raihan
  • 193
  • 2
  • 21
0
votes
0 answers

Calculate total working hours for employee in odoo

class AttendanceEmp(models.Model): _name = 'shift.log' _description = 'Attendance' sh_id = fields.Many2one(comodel_name='hr.employee',string='emp id') checkin_or_checkout = fields.Datetime(string="start or end time", required=True) …
Ali daudi
  • 19
  • 2
0
votes
1 answer

Creating Time In and Out in Flutterflow

Is there a way how can I create a time in / out in flutterflow? What actions do I need to add? Thank you here's a screenshot of my app created in flutterflow.
0
votes
0 answers

Attendance Sheet in Google Sheets Using forms

This is a pseudo code for my excel work IF sheet1(column(range)).value IS Exit in sheet2(column(range)).value on specific(date) in sheet2(column(range)).value(date) Then print "P" Else print "A" Hello guys i create a google form for employee…
0
votes
1 answer

SQL Query Daily Attendance Record

Can you help me transform this data using query? id datetime status 1 2022-04-01 07:38:31 Time In 1 2022-04-01 12:07:17 Break In 1 2022-04-01 12:07:39 Break Out 1 2022-04-01 16:43:17 Time Out 1 2022-04-02 07:38:31 Time…
warlock
  • 3
  • 3
0
votes
1 answer

Excel Auto Attendance sheet

im trying to make an automatic attendance sheet here are the details: -Data will be imported in the excel sheet (left side) -I want to automatically mark "p" or "a" a specific cell based on the data imported
0
votes
1 answer

showing info while mapping inside of array for date inside an object without repeating names

so i want to show a table that displays the status of attendance in a day for a specific player (present, absent, sick , injured, late). in each object we have the player and the status of that day. This is the structure i choose because it looks…
0
votes
0 answers

Google sheet multi list attendance - optimal solution?

I am trying to make one sheet with multiple lists for attendance tracking. Each list has a specific task/group like so: Master list: all members with their contact info and attendance scores for each month and each class in which they participate…
0
votes
1 answer

How to create a separate CSV file for each day in face based attendance rather than overwriting the the existing one

In this code attendance get marked in "attendance.csv" file. What I want is to create separate "attendance.csv" day wise, rather than overwriting the existing file, so that I can trace back past attendance if any conflicts from employee arise in…