mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-27 04:51:59 +02:00
19.0 vanilla
This commit is contained in:
parent
a1137a1456
commit
e1d89e11e3
2789 changed files with 1093187 additions and 605897 deletions
|
|
@ -0,0 +1,35 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import datetime
|
||||
from dateutil.relativedelta import relativedelta
|
||||
|
||||
from odoo.addons.hr_holidays.tests.common import TestHrHolidaysCommon
|
||||
|
||||
|
||||
class TestTimeoffEvent(TestHrHolidaysCommon):
|
||||
|
||||
def test_no_videocall_url_in_timeoff_event(self):
|
||||
""" Test that the timeoff event does not need a video call """
|
||||
|
||||
self.hr_leave_type = self.env['hr.leave.type'].with_user(self.user_hrmanager).create({
|
||||
'name': 'Time Off Type',
|
||||
'requires_allocation': False,
|
||||
})
|
||||
self.holiday = self.env['hr.leave'].with_context(mail_create_nolog=True, mail_notrack=True).with_user(self.user_employee).create({
|
||||
'name': 'Time Off 1 sura',
|
||||
'employee_id': self.employee_emp.id,
|
||||
'holiday_status_id': self.hr_leave_type.id,
|
||||
'request_date_from': datetime(2020, 1, 15),
|
||||
'request_date_to': datetime(2020, 1, 15) + relativedelta(days=1),
|
||||
})
|
||||
self.holiday.with_user(self.user_hrmanager).action_approve()
|
||||
|
||||
# Finding the event corresponding to the leave
|
||||
search_criteria = [
|
||||
('name', 'like', self.holiday.employee_id.name),
|
||||
('start_date', '>=', self.holiday.request_date_from),
|
||||
('stop_date', '<=', self.holiday.request_date_to),
|
||||
]
|
||||
timeoff_event = self.env['calendar.event'].search(search_criteria)
|
||||
self.assertTrue(timeoff_event, "The timeoff event should exist")
|
||||
self.assertFalse(timeoff_event._need_video_call(), "The timeoff event does not need a video call")
|
||||
Loading…
Add table
Add a link
Reference in a new issue