Skip to Content
Menu
This question has been flagged
1 Atsakyti
2899 Rodiniai

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

Portretas
Atmesti
Best Answer

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

Portretas
Atmesti

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

Related Posts Replies Rodiniai Veikla
2
liep. 25
5858
2
spal. 25
8484
2
lapkr. 24
29328
2
geg. 24
8125
3
kov. 24
7541