|
| 1 | +# Part of Odoo. See LICENSE file for full copyright and licensing details. |
| 2 | + |
| 3 | +from datetime import datetime, timedelta |
| 4 | + |
| 5 | +from odoo import models, fields |
| 6 | + |
| 7 | + |
| 8 | +class HolidaysRequest(models.Model): |
| 9 | + _inherit = "hr.leave" |
| 10 | + |
| 11 | + l10n_in_contains_sandwich_leaves = fields.Boolean() |
| 12 | + |
| 13 | + def _l10n_in_apply_sandwich_rule(self, public_holidays, employee_leaves): |
| 14 | + self.ensure_one() |
| 15 | + if not self.request_date_from or not self.request_date_to: |
| 16 | + return |
| 17 | + date_from = self.request_date_from |
| 18 | + date_to = self.request_date_to |
| 19 | + total_leaves = (self.request_date_to - self.request_date_from).days + 1 |
| 20 | + |
| 21 | + def is_non_working_day(calendar, date): |
| 22 | + return not calendar._works_on_date(date) or any( |
| 23 | + datetime.date(holiday['date_from']) <= date <= datetime.date(holiday['date_to']) for holiday in public_holidays |
| 24 | + ) |
| 25 | + |
| 26 | + def count_sandwich_days(calendar, date, direction): |
| 27 | + current_date = date + timedelta(days=direction) |
| 28 | + days_count = 0 |
| 29 | + while is_non_working_day(calendar, current_date): |
| 30 | + days_count += 1 |
| 31 | + current_date += timedelta(days=direction) |
| 32 | + for leave in employee_leaves: |
| 33 | + if leave['request_date_from'] <= current_date <= leave['request_date_to']: |
| 34 | + return days_count |
| 35 | + return 0 |
| 36 | + |
| 37 | + calendar = self.resource_calendar_id |
| 38 | + total_leaves += count_sandwich_days(calendar, date_from, -1) + count_sandwich_days(calendar, date_to, 1) |
| 39 | + if is_non_working_day(calendar, date_from): |
| 40 | + total_leaves -= 1 |
| 41 | + if is_non_working_day(calendar, date_from + timedelta(days=+1)): |
| 42 | + total_leaves -= 1 |
| 43 | + if is_non_working_day(calendar, date_to): |
| 44 | + total_leaves -= 1 |
| 45 | + if is_non_working_day(calendar, date_to + timedelta(days=-1)): |
| 46 | + total_leaves -= 1 |
| 47 | + return total_leaves |
| 48 | + |
| 49 | + def _get_durations(self, check_leave_type=True, resource_calendar=None): |
| 50 | + result = super()._get_durations(check_leave_type, resource_calendar) |
| 51 | + indian_leaves = self.filtered(lambda c: c.company_id.country_id.code == 'IN') |
| 52 | + if not indian_leaves: |
| 53 | + return result |
| 54 | + |
| 55 | + public_holidays = self.env['resource.calendar.leaves'].search([ |
| 56 | + ('resource_id', '=', False), |
| 57 | + ('company_id', 'in', indian_leaves.company_id.ids), |
| 58 | + ]) |
| 59 | + leaves_by_employee = dict(self._read_group( |
| 60 | + domain=[ |
| 61 | + ('id', 'not in', self.ids), |
| 62 | + ('employee_id', 'in', self.employee_id.ids), |
| 63 | + ('state', 'not in', ['cancel', 'refuse']), |
| 64 | + ('leave_type_request_unit', '=', 'day'), |
| 65 | + ], |
| 66 | + groupby=['employee_id'], |
| 67 | + aggregates=['id:recordset'], |
| 68 | + )) |
| 69 | + for leave in indian_leaves: |
| 70 | + if leave.holiday_status_id.l10n_in_is_sandwich_leave: |
| 71 | + days, hours = result[leave.id] |
| 72 | + updated_days = leave._l10n_in_apply_sandwich_rule(public_holidays, leaves_by_employee.get(leave.employee_id, [])) |
| 73 | + result[leave.id] = (updated_days, hours) |
| 74 | + if updated_days: |
| 75 | + leave.l10n_in_contains_sandwich_leaves = updated_days != days |
| 76 | + else: |
| 77 | + leave.l10n_in_contains_sandwich_leaves = False |
| 78 | + return result |
0 commit comments