mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-27 01:52:08 +02:00
Initial commit: Hr packages
This commit is contained in:
commit
62531cd146
2820 changed files with 1432848 additions and 0 deletions
|
|
@ -0,0 +1,67 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
from datetime import date
|
||||
from dateutil.relativedelta import relativedelta
|
||||
|
||||
from odoo import Command
|
||||
from odoo.tests.common import tagged, TransactionCase
|
||||
from odoo.tools.misc import DEFAULT_SERVER_DATE_FORMAT
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestPartner(TransactionCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
# use a single value for today throughout the tests to avoid weird scenarios around midnight
|
||||
cls.today = date.today()
|
||||
baseUser = cls.env['res.users'].create({
|
||||
'email': 'e.e@example.com',
|
||||
'groups_id': [Command.link(cls.env.ref('base.group_user').id)],
|
||||
'login': 'emp',
|
||||
'name': 'Ernest Employee',
|
||||
'notification_type': 'inbox',
|
||||
'signature': '--\nErnest',
|
||||
})
|
||||
cls.partner = baseUser.partner_id
|
||||
cls.users = baseUser + cls.env['res.users'].create({
|
||||
'name': 'test1',
|
||||
'login': 'test1',
|
||||
'email': 'test1@example.com',
|
||||
'partner_id': cls.partner.id,
|
||||
})
|
||||
cls.employees = cls.env['hr.employee'].create([{
|
||||
'user_id': user.id,
|
||||
} for user in cls.users])
|
||||
cls.leave_type = cls.env['hr.leave.type'].create({
|
||||
'requires_allocation': 'no',
|
||||
'name': 'Legal Leaves',
|
||||
'time_type': 'leave',
|
||||
})
|
||||
cls.leaves = cls.env['hr.leave'].create([{
|
||||
'date_from': cls.today + relativedelta(days=-2),
|
||||
'date_to': cls.today + relativedelta(days=2),
|
||||
'employee_id': cls.employees[0].id,
|
||||
'holiday_status_id': cls.leave_type.id,
|
||||
}, {
|
||||
'date_from': cls.today + relativedelta(days=-2),
|
||||
'date_to': cls.today + relativedelta(days=3),
|
||||
'employee_id': cls.employees[1].id,
|
||||
'holiday_status_id': cls.leave_type.id,
|
||||
}])
|
||||
|
||||
def test_res_partner_mail_partner_format(self):
|
||||
self.leaves.write({'state': 'validate'})
|
||||
self.assertEqual(
|
||||
self.partner.mail_partner_format()[self.partner]['out_of_office_date_end'],
|
||||
(self.today + relativedelta(days=2)).strftime(DEFAULT_SERVER_DATE_FORMAT),
|
||||
'Return date is the first return date of all users associated with a partner',
|
||||
)
|
||||
self.leaves[1].action_refuse()
|
||||
self.assertEqual(
|
||||
self.partner.mail_partner_format()[self.partner]['out_of_office_date_end'],
|
||||
False,
|
||||
'Partner is not considered out of office if one of their users is not on holiday',
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue