How to retrieve check in time from database in hr_attendance in odoo.
Odoo is the world's easiest all-in-one management software.
 It includes hundreds of business apps:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- プロジェクト
- MRP
この質問にフラグが付けられました
            
                1
                
                    返信
                
            
        
        
            
                2948
                
                    ビュー
                
            
        
    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
Hello, how can i save data to backend when check in through website? Please help me on this.
| 関連投稿 | 返信 | ビュー | 活動 | |
|---|---|---|---|---|
|  | 2 7月 25  | 6068 | ||
|  | 2 10月 25  | 8605 | ||
|  | 2 11月 24  | 29462 | ||
|  | 2 5月 24  | 8246 | ||
|  | 3 3月 24  | 7635 | 
