Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1408 Zobrazení

I was attempting to calculate a payslip and add a salary rule that multiplies overtime hours by 2.5 if an employee worked on a holiday. However, I couldn't determine whether a specific work date falls on a holiday. Is there a way to check if a given date is a holiday? Also, how can I work with datetime to handle this?

# gpt suggested this 
def is_holiday():
    today = payslip.date_from.date() 
    holidays = payslip.env['resource.calendar.leaves'].search([
        ('date_from', '<=', today),
        ('date_to', '>=', today)
    ])
    return bool(holidays)


Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
2
čvc 25
3537
1
čvc 25
2639
0
pro 23
1273
0
zář 20
1557
1
bře 20
3883