Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
2 Besvarelser
4521 Visninger

I want to get current day of the week and compare it with selection field value.Any idea?

Avatar
Kassér
Bedste svar

To get current day :
current_day = datetime.today().strftime('%A') # 'Wednesday'
and for comparing the selection field see my below code.

for cal in attendance.employee_id.resource_calendar_id.attendance_ids.filtered(lambda line: dict(line._fields['dayofweek'].selection).get(line.dayofweek) == current_day and line.day_period == 'morning'):

Here,
'line' is the object like self
'dayofweek' is the selection field.
like this you can compare your selection field key with other variable.

Avatar
Kassér
Bedste svar

You can use weekday() of datetime.date class function.

The weekday() of datetime.date class function is used to return the integer value corresponding to the specified day of the week.

0Monday
1Tuesday
2Wednesday
3Thursday
4Friday
5Saturday
6Sunday



Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
1
jul. 25
2456
2
jul. 25
7912
2
jul. 25
4327
2
jul. 25
4067
2
jun. 25
2664