コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
2346 ビュー

Hello everyone , I am using odoo 13.

In the HR  attendance module ,  employees in the system can check in and check out multiple times per day. I want to get the first check-in to the system for a specific employee per day. I have added new fields to hr.attendance so far, but I don't know what to do next.


class HrAttendance(models.Model):
_inherit = 'hr.attendance'

    first_sign_in = fields.Datetime(string="First Check In", readonly="1")



アバター
破棄
最善の回答

Hi,

If you need to mark it in the attendance model itself, then add a computed boolean in hr.attendance model, define compute function , sort and get the lowest time of the day and set it a first attendance.


Thanks

アバター
破棄
関連投稿 返信 ビュー 活動
1
4月 21
3789
0
4月 21
2292
1
6月 23
3116
1
1月 23
2906
0
9月 22
2611