Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
2919 Vistas

How to retrieve check in time from database in hr_attendance in odoo.

Avatar
Descartar
Mejor respuesta

Hi,

Its rather simple question, you can fetch it directly from the database table,

attendance_rec = self.env['hr.attendance'].search([])
for rec in attendance_rec:
print rec.check_in

The search method will return all the records in the attendance table and iterating over the for loop and from the field named check_in you can get the check-in time. The value you will get will be in UTC, you can convert it to the users timezone.


Thanks

Avatar
Descartar

Hello, how can i save data to backend when check in through website? Please help me on this.

Publicaciones relacionadas Respuestas Vistas Actividad
2
jul 25
5922
2
oct 25
8511
2
nov 24
29363
2
may 24
8162
3
mar 24
7561